.wp-block-svp-tabs.svp-tabs {
	display: grid;
	gap: 1rem;
}

.svp-tabs__heading {
	margin: 0;
	font-size: clamp(1.6rem, 2.2vw, 2.4rem);
	line-height: 1.15;
}

.svp-tabs__layout {
	display: grid;
	gap: 1rem;
}

.svp-tabs__tablist {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.svp-tabs__tab {
	display: block;
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #005ea8;
	background: #ffffff;
	color: #0f172a;
	text-align: left;
	font-weight: 700;
	cursor: pointer;
}

.svp-tabs__tab[aria-selected="true"] {
	background: #005ea8;
	color: #ffffff;
}

.svp-tabs__tab:hover,
.svp-tabs__tab:focus,
.svp-tabs__tab:focus-visible {
	outline: 3px solid #1d4ed8;
	outline-offset: 2px;
}

.svp-tabs__panels {
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	padding: 1rem;
	background: #ffffff;
}

.svp-tabs__panel[hidden] {
	display: none !important;
}

.svp-tabs__panel-content > :first-child {
	margin-top: 0;
}

.svp-tabs__panel-content > :last-child {
	margin-bottom: 0;
}

@media (min-width: 900px) {
	.svp-tabs__layout {
		grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
		align-items: start;
	}
}
