
/* ============================================================
   PAGE HEADER — Hero with Geometric Diamond Pattern
   fullbleed layout; pattern overlays the header background.
   ============================================================ */
 
/* Diamond/mesh geometric overlay on the hero section */
.page-header.fullbleed,
.page-header.jumbo.fullbleed {
	background-color: #235332; /* uvu-green-d1 */
	background-image:
		linear-gradient(45deg,  rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(-45deg, rgba(255,255,255,0.06) 1px, transparent 1px),
		linear-gradient(45deg,  transparent calc(50% - 1px), rgba(255,255,255,0.06) calc(50% - 1px), rgba(255,255,255,0.06) calc(50% + 1px), transparent calc(50% + 1px)),
		linear-gradient(-45deg, transparent calc(50% - 1px), rgba(255,255,255,0.06) calc(50% - 1px), rgba(255,255,255,0.06) calc(50% + 1px), transparent calc(50% + 1px));
	background-size: 36px 36px;
}
 
/* Eyebrow — "Woodbury School of Business" */
.warm-intl-eyebrow {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
	letter-spacing: 0.01em;
	/* text-white via UVU class */
}
 
/* Two-line title box (UVU green bg) */
.warm-intl-title-box {
	display: inline-block;
	padding: 0.6rem 1.1rem 0.8rem;
	margin-bottom: 1.5rem;
	/* bg-uvu-green via UVU class */
}
 
/* Smaller subtitle inside the box: "Wasatch Resort Management Program" */
.warm-intl-subtitle {
	font-size: 0.85rem;
	font-weight: 400;
	margin: 0 0 0.2rem 0;
	letter-spacing: 0.02em;
	/* text-white via UVU class */
}
 
/* h1 inside the box: "International Program" */
.warm-intl-title-box h1 {
	font-size: 1.75rem;
	line-height: 1.15;
	margin: 0;
	/* text-white + font-weight-700 via UVU classes */
}
 
/* "Learn more ↓" link */
.warm-learn-more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	text-decoration: none;
	/* text-lime via UVU class */
}
 
.warm-learn-more:hover {
	text-decoration: underline;
}
 
 
/* ============================================================
   SECTION 1 — INTRO
   two-big-left: wider text column (left) + image (right)
   ============================================================ */
 
/* Lime badge label — "WARM International Students" */
.warm-intl-badge {
	display: inline-block;
	background-color: #c5e86c; /* bg-lime */
	color: #275d38;             /* text-uvu-green */
	font-weight: 700;
	font-size: 0.95rem;
	padding: 0.35rem 0.85rem;
	border-radius: 2px;
	margin-bottom: 1rem;
	letter-spacing: 0.01em;
}
 
/* Full-width image within its column */
.warm-full-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 2px;
	object-fit: cover;
}
 
 
/* ============================================================
   SECTION 2 — WHY CHOOSE WARM? Feature Cards
   One-col section header + 2-column grid of dark green cards
   ============================================================ */
 
/* Section heading — "Why Should International Students Choose WARM?" */
/* The <strong> inside h2 is bold; rest is normal weight */
/* text-uvu-green applied via UVU class on the h2 element */
 
/* 2-column card grid */
.warm-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-top: 1.5rem;
}
 
/* Individual feature card */
.warm-feature-card {
	padding: 1.1rem 1.25rem;
	border-radius: 3px;
	/* bg-uvu-green applied via UVU class */
}
 
/* Bold label line — lime color, bold */
.warm-feature-label {
	font-size: 0.9rem;
	line-height: 1.3;
	margin: 0 0 0.5rem 0;
	/* text-lime + font-weight-700 via UVU classes */
}
 
/* Body text — white, normal weight */
.warm-feature-body {
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
	/* text-white via UVU class */
}
 
 
/* ============================================================
   SECTION 3 — STILL HAVE QUESTIONS?
   One-col, centered content with 4 buttons in a row
   ============================================================ */
 
.warm-questions {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}
 
.warm-questions h2 {
	margin-bottom: 0.5rem;
}
 
.warm-questions p {
	margin-bottom: 1.5rem;
	color: #555;
}
 
/* Horizontal row of buttons — wraps gracefully */
.warm-btn-group {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
}
 
 
/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
 
.warm-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.2rem;
	background-color: #275d38;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #275d38;
	border-radius: 2px;
	white-space: nowrap;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
 
.warm-btn-primary:hover {
	background-color: #1e482c;
	border-color: #1e482c;
	color: #fff;
}
 
.warm-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.2rem;
	background-color: transparent;
	color: #275d38;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #275d38;
	border-radius: 2px;
	white-space: nowrap;
	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-intl-eyebrow {
		font-size: 1.1rem;
	}
 
	.warm-intl-title-box h1 {
		font-size: 1.35rem;
	}
 
	/* Feature cards go to single column on mobile */
	.warm-feature-grid {
		grid-template-columns: 1fr;
	}
 
	/* All buttons stack vertically and go full width */
	.warm-btn-group {
		flex-direction: column;
		align-items: stretch;
	}
 
	.warm-btn-primary,
	.warm-btn-outline {
		width: 100%;
		justify-content: center;
		white-space: normal;
	}
}