/**
 * Two Comparison Cards — LOCKED layout.
 * Background + vertical padding come from the widget's controls.
 */

.bsd-twocards__inner {
	max-width: 1360px;
	margin-inline: auto;
	padding: 0 16px;
}
/* Narrow variant: align the cards to the 1000px text column for a cohesive block. */
.bsd-twocards--narrow .bsd-twocards__inner { max-width: 1000px; }

/* ---- Header ---- */
.bsd-twocards__head {
	text-align: center;
	margin-bottom: 40px;
}
.bsd-twocards__title {
	margin: 0 0 12px;
	font-family: var(--bsd-font-heading);
	font-weight: 600;
	font-size: 28px;
	line-height: 1.3;
}
.bsd-twocards__intro {
	margin: 0 auto;
	max-width: 820px;
	font-family: var(--bsd-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
}

/* ---- Cards ---- */
.bsd-twocards__cards {
	display: flex;
	flex-direction: row;
	gap: 24px;
}
.bsd-twocards__card {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding: 48px 40px;
	border-radius: 4px;
	border-bottom: 4px solid #0C3463;
	box-shadow: 0 0 10px rgba( 0, 0, 0, 0.01 );
}
.bsd-twocards__card-title {
	margin: 0;
	font-family: var(--bsd-font-heading);
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
}
.bsd-twocards__card-label {
	margin: 0;
	font-family: var(--bsd-font-heading);
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;
}

/* Checklist with dash markers (space_between 10px in the source). */
.bsd-twocards__list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.bsd-twocards__list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	font-family: var(--bsd-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
}
.bsd-twocards__list li:last-child { margin-bottom: 0; }
.bsd-twocards__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 12px;
	height: 2px;
	background: #0C3463;
}

.bsd-twocards__text {
	margin: 0;
	font-family: var(--bsd-font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
}

/* Callout card style: white cards with a thick bronze top border + shadow,
   so statute/spec cards stand out (echoes the short-answer box). */
.bsd-twocards--callout .bsd-twocards__card {
	border-bottom: none;
	border-top: 4px solid #B08545;
	box-shadow: 0 6px 22px rgba( 12, 52, 99, 0.10 );
	padding: 26px 32px;
}
.bsd-twocards--callout .bsd-twocards__card-title { color: #0C3463; }

/* Stacked layout: cards run full width, one above the other. */
.bsd-twocards--stacked .bsd-twocards__cards { flex-direction: column; gap: 16px; }

/* Heading brand-color roles. */
.bsd-twocards__title--primary   { color: #0C3463; }
.bsd-twocards__title--secondary { color: #102E4A; }
.bsd-twocards__title--text      { color: #575D6E; }
.bsd-twocards__title--accent    { color: #0C3463; }

/* ---- Tablet ---- */
@media ( max-width: 1024px ) {
	.bsd-twocards__title      { font-size: 26px; }
	.bsd-twocards__intro      { font-size: 16px; }
	.bsd-twocards__card       { padding: 40px 28px; }
	.bsd-twocards__card-title { font-size: 20px; }
	.bsd-twocards__text       { font-size: 16px; }
}

/* ---- Mobile: stack ---- */
@media ( max-width: 767px ) {
	.bsd-twocards__cards      { flex-direction: column; }
	.bsd-twocards__title      { font-size: 24px; }
	.bsd-twocards__card-title { font-size: 20px; }
}
