/* assets/css/yhello-tabs.css */

.yhello-tabs-block {
	/* border: 1px solid var(--wp--preset--color--contrast-3, #e5e5e5); */
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.yhello-tabs__headers {
	display: flex;
	gap: 2px;
	align-items: stretch;
	overflow-x: auto;
	background: #ddd;
}

.yhello-tabs__header {
	appearance: none;
	border: 0;
	background: #ddd;
	padding: 10px 14px;
	cursor: pointer;
	white-space: nowrap;
	font-weight: 600;
	color: #000;
}

.yhello-tabs__header.is-active {
	background: #fff;	
}

.yhello-tabs__panels { padding: 16px; }

.yhello-tabs__panel { display: none; }
.yhello-tabs__panel.is-active { display: block; }
.yhello-tabs__panel[hidden] { display: none !important; }

.yhello-tabs__panel-content p { margin: 0 0 0.8em; }
