 
 
/* ============================================================
   PAGE HEADER — Dark Green FAQ Banner
   Reuses the same pattern as warm-curriculum.css
   ============================================================ */
 
.warm-curr-header {
	position: relative;
	padding: 1.25rem 2rem;
	overflow: hidden;
	/* bg-uvu-green-d1 applied via UVU class on <section> */
}
 
.warm-curr-header h1 {
	font-size: 1.4rem;
	margin: 0;
	position: relative;
	z-index: 1;
	/* text-white applied via UVU class */
}
 
/* Lime "+" cross grid — top-right decorative element */
.warm-curr-cross-grid {
	position: absolute;
	top: 0;
	right: 2rem;
	bottom: 0;
	width: 220px;
	background-image:
		radial-gradient(circle at center, #c5e86c 1.5px, transparent 1.5px),
		radial-gradient(circle at center, #c5e86c 1.5px, transparent 1.5px);
	background-size: 18px 18px;
	background-position: 0 0, 9px 9px;
	opacity: 0.5;
	pointer-events: none;
}
 
/* Lime accent stripe at very bottom of header bar */
.warm-curr-header::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #c5e86c;
}
 
 
/* ============================================================
   SECTION 1 — JUMP NAVIGATION
   Grey pill-shaped container with anchor links to FAQ sections
   ============================================================ */
 
.warm-faq-jumpnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0;
	align-items: flex-start;
	background-color: #f3f3f3; /* bg-grey-xlight equivalent */
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	padding: 0.85rem 1.25rem;
}
 
/* Each jump link */
.warm-faq-jumplink {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.82rem;
	color: #6b6b6b;            /* muted grey — matches the mockup */
	text-decoration: none;
	padding: 0.25rem 0.75rem 0.25rem 0;
	white-space: nowrap;
	transition: color 0.15s ease;
}
 
/* Separator pipe between links — using ::after on all but last */
.warm-faq-jumplink:not(:last-child) {
	margin-right: 0.5rem;
}
 
.warm-faq-jumplink:hover {
	color: #275d38; /* uvu-green on hover */
	text-decoration: underline;
}
 
/* The ↓ arrow span */
.warm-faq-jumplink span {
	font-size: 0.75rem;
	opacity: 0.75;
}
 
/* === QUESTIONS? WE'RE HERE TO HELP === */

.warm-questions {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.warm-questions h2 {
    margin-bottom: 0.5rem;
}

.warm-questions p {
    margin-bottom: 1.5rem;
    color: #555;
}

.warm-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.warm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    background-color: transparent;
    color: #275d38;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #275d38;
    border-radius: 2px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.warm-btn-outline:hover {
    background-color: #275d38;
    color: #fff;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
 
@media (max-width: 768px) {
 
	.warm-curr-header {
		padding: 1rem;
	}
 
	.warm-curr-header h1 {
		font-size: 1rem;
	}
 
	.warm-curr-cross-grid {
		display: none;
	}
 
	.warm-faq-jumpnav {
		gap: 0.1rem 0;
		padding: 0.75rem 1rem;
	}
 
	.warm-faq-jumplink {
		font-size: 0.8rem;
	}
}