/* Life Room Openings — Concept F styling (self-contained, scoped to .lro-openings) */

.lro-openings {
	--lro-navy: #0d47a1;
	--lro-teal: #06a5c2;
	--lro-pink: #f4388b;
	--lro-pink-hover: #e0206f;
	--lro-ink: #2a3542;
	--lro-muted: #5b6470;
	--lro-cream: #fbf9f5;
	--lro-line: #e3eef1;
	margin: 0 auto;
	max-width: 1120px;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--lro-ink);
}

.lro-openings * {
	box-sizing: border-box;
}

.lro-head {
	text-align: center;
	margin-bottom: 26px;
}

.lro-title {
	font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
	color: var(--lro-navy);
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 8px;
}

.lro-sub {
	color: var(--lro-muted);
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}

/* Leaders 1/3, Partners 2/3 */
.lro-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 22px;
	align-items: stretch;
}

@media (max-width: 860px) {
	.lro-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

.lro-col {
	background: #ffffff;
	border: 1px solid var(--lro-line);
	border-radius: 12px;
	padding: 24px 24px 26px;
	box-shadow: 0 6px 22px rgba(6, 60, 80, 0.05);
	min-width: 0;
}

.lro-col-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--lro-line);
}

.lro-role-title {
	font-family: 'Fraunces', Georgia, serif;
	color: var(--lro-teal);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0;
}

.lro-badge {
	flex: none;
	background: var(--lro-navy);
	color: #ffffff;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.lro-role-desc {
	margin: -6px 0 16px;
	color: var(--lro-muted);
	font-size: 14px;
	line-height: 1.45;
}

.lro-days {
	/* Keeps the section a sane height on unusually full weeks; a normal
	   (mostly-covered) week is well under this and never scrolls. */
	max-height: 540px;
	overflow-y: auto;
}

.lro-days::-webkit-scrollbar {
	width: 8px;
}

.lro-days::-webkit-scrollbar-thumb {
	background: var(--lro-line);
	border-radius: 8px;
}

.lro-day {
	padding: 12px 0;
	border-bottom: 1px dashed var(--lro-line);
}

.lro-day:first-child {
	padding-top: 2px;
}

.lro-day:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.lro-day-name {
	font-weight: 700;
	color: var(--lro-navy);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 9px;
}

.lro-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.lro-chip {
	display: inline-flex;
	align-items: baseline;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 5px 11px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.lro-mer {
	font-size: 10px;
	font-weight: 600;
	margin-left: 2px;
	opacity: 0.75;
}

/* Coverage states — shared by chips and the legend swatches. */
.lro-chip-empty {
	background: #fdeaea;
	color: #a82626;
	border-color: #f2c9c9;
}

.lro-chip-onemore {
	background: #fdf2df;
	color: #8a5a0c;
	border-color: #f2ddb2;
}

.lro-chip-leader {
	background: #e9eff9;
	color: #22508f;
	border-color: #cfe0f5;
}

.lro-none {
	color: var(--lro-muted);
	font-style: italic;
	margin: 6px 0 0;
}

.lro-legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 22px;
	background: #ffffff;
	border: 1px solid var(--lro-line);
	border-radius: 10px;
	padding: 14px 22px;
	box-shadow: 0 4px 16px rgba(6, 60, 80, 0.05);
}

.lro-legend-top {
	margin-top: 0;
	margin-bottom: 22px;
}

.lro-head-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 7px;
	flex: none;
}

.lro-volbtn {
	display: inline-block;
	background: var(--lro-pink);
	color: #ffffff !important;
	text-decoration: none;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
	transition: background 0.2s ease;
}

.lro-volbtn:hover,
.lro-volbtn:focus {
	background: var(--lro-pink-hover);
	color: #ffffff !important;
}

.lro-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--lro-ink);
}

.lro-swatch {
	width: 16px;
	height: 16px;
	border-radius: 5px;
	border: 1px solid transparent;
	flex: none;
}

/* Full-width CTA band below the columns */
.lro-cta-band {
	margin-top: 22px;
	background: linear-gradient(140deg, #15677d 0%, #0d47a1 100%);
	border-radius: 12px;
	padding: 24px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	flex-wrap: wrap;
}

.lro-cta-text {
	min-width: 0;
}

.lro-cta-title {
	font-family: 'Fraunces', Georgia, serif;
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 5px;
}

.lro-cta-sub {
	color: #dce9f2;
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
}

.lro-btn {
	flex: none;
	display: inline-block;
	background: var(--lro-pink);
	color: #ffffff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 14px 28px;
	border-radius: 4px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lro-btn:hover,
.lro-btn:focus {
	background: var(--lro-pink-hover);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.lro-error {
	text-align: center;
	color: var(--lro-muted);
	background: var(--lro-cream);
	border: 1px solid var(--lro-line);
	border-radius: 8px;
	padding: 14px 18px;
	margin: 0 0 20px;
}

.lro-stale {
	text-align: center;
	color: var(--lro-muted);
	font-size: 13px;
	margin: 16px 0 0;
}

/* Responsive: stack to one column; Leaders then Partners then CTA */

@media (max-width: 600px) {
	.lro-cta-band {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 26px 22px;
	}
	.lro-btn {
		text-align: center;
	}
}
