/*
Theme Name: BMGCC Foundation
Theme URI: https://bmgccfoundation.org
Author: Michael & Nicholas Votto
Author URI: https://bmgccfoundation.org
Description: A custom theme for the Blue Mound Golf & Country Club Foundation scholarship website. Clean, elegant design celebrating 100 years of service.
Version: 2.5.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bmgcc-foundation
Tags: one-column, custom-menu, custom-logo, featured-images, full-width-template, theme-options
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Color Palette - Classic Country Club */
    --navy: #1a2e4a;
    --navy-light: #2a4166;
    --gold: #c9a961;
    --gold-light: #d4bc7d;
    --cream: #f8f6f1;
    --cream-dark: #ebe7dd;
    --forest: #2d4a3e;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --white: #ffffff;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --content-width: 1200px;
    --content-narrow: 800px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 46, 74, 0.97);
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0;
}

.site-title a {
    color: var(--white);
    text-decoration: none;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.main-navigation a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-cta a {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
    opacity: 1 !important;
}

.nav-cta a:hover {
    background: var(--gold-light);
    color: var(--navy) !important;
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        165deg, 
        rgba(26, 46, 74, 0.85) 0%, 
        rgba(42, 65, 102, 0.75) 40%, 
        rgba(45, 74, 62, 0.7) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem;
}

.hero-emblem {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.hero-emblem svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.hero-section h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-section h1 span {
    display: block;
    font-size: 0.35em;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--cream);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cream), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Mobile hero padding fix */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 5rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

.btn-disabled {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--cream-dark);
    color: var(--text-light);
    cursor: not-allowed;
    border: none;
}

.application-closed-message {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--cream-dark);
    border-left: 3px solid var(--gold);
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: italic;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Sections
   ========================================================================== */
section,
.content-section {
    padding: var(--section-padding) 2rem;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.container-narrow {
    max-width: var(--content-narrow);
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */
.story-section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.75rem;
    color: var(--navy);
}

.story-highlight {
    background: var(--cream);
    padding: 2.5rem;
    border-left: 3px solid var(--gold);
}

.story-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.story-highlight p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Story Image */
.story-image {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border: 1px dashed var(--gold);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem;
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.6;
}

/* ==========================================================================
   Eligibility Section
   ========================================================================== */
.eligibility-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.eligibility-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.eligibility-section .section-header h2 {
    color: var(--white);
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.eligibility-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.eligibility-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 97, 0.3);
}

.eligibility-card h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.eligibility-card h3::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.eligibility-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.eligibility-card ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.eligibility-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.eligibility-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.policy-link {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.policy-link a {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.policy-link a:hover {
    border-bottom-color: var(--gold);
}

/* ==========================================================================
   Apply Section
   ========================================================================== */
.apply-section {
    background: var(--cream);
    text-align: center;
}

.apply-content {
    max-width: 600px;
    margin: 0 auto;
}

.apply-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ==========================================================================
   Donate Section
   ========================================================================== */
.donate-section {
    background: var(--white);
    text-align: center;
}

.donate-content {
    max-width: 700px;
    margin: 0 auto;
}

.donate-amount-selector {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.amount-btn {
    padding: 0.75rem 1.5rem;
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 90px;
}

.amount-btn:hover {
    border-color: var(--gold);
    color: var(--navy);
}

.amount-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.custom-amount-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.custom-amount-wrapper::before {
    content: '$';
    position: absolute;
    left: 12px;
    color: var(--text-medium);
    font-weight: 500;
    pointer-events: none;
    z-index: 1;
}

.custom-amount-input {
    width: 120px;
    padding: 0.75rem 1rem 0.75rem 1.75rem;
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.custom-amount-input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.custom-amount-input.active {
    background: var(--white);
    border-color: var(--navy);
}

.custom-amount-input::placeholder {
    color: var(--text-light);
}

.tax-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 2rem;
}

/* ==========================================================================
   Donation Modal
   ========================================================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 74, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 2rem;
    position: relative;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
}

.modal-header p {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    line-height: 1;
    padding: 0.25rem;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

/* Donor Type Selection */
.donor-type-prompt {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.donor-type-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.donor-type-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.donor-type-btn.btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
}

.donor-type-btn.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

/* Donor Type Indicator */
.donor-type-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--cream-dark);
}

.donor-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.member-badge {
    background: var(--navy);
    color: var(--white);
}

.nonmember-badge {
    background: var(--forest);
    color: var(--white);
}

.change-donor-type {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.change-donor-type:hover {
    color: var(--gold-light);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--cream-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group input:read-only {
    background: var(--cream-dark);
    color: var(--text-medium);
}

.donation-amount-display {
    background: var(--cream);
    border: 2px solid var(--gold);
    padding: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.donation-amount-display span {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--navy);
}

.recaptcha-placeholder {
    background: var(--cream);
    border: 1px dashed var(--cream-dark);
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.recaptcha-wrapper {
    margin-bottom: 1.5rem;
}

.recaptcha-wrapper .g-recaptcha {
    display: flex;
    justify-content: center;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    accent-color: var(--navy);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-medium);
    line-height: 1.5;
    cursor: pointer;
}

.modal-footer {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: center;
}

.modal-footer .btn {
    width: 100%;
    max-width: 320px;
    padding: 1.125rem 2rem;
    text-align: center;
}

.modal-footer .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-error {
    color: #c53030;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--forest);
    margin-bottom: 1rem;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-medium);
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .donate-amount-selector {
        gap: 0.5rem;
    }
    
    .amount-btn {
        padding: 0.6rem 1rem;
        min-width: 70px;
        font-size: 0.9rem;
    }
    
    .custom-amount-input {
        width: 100px;
    }
    
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

/* ==========================================================================
   Impact Section
   ========================================================================== */
.impact-section {
    background: linear-gradient(135deg, var(--forest) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
}

.impact-section .section-header h2 {
    color: var(--white);
}

.impact-placeholder {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    border: 1px dashed rgba(201, 169, 97, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.impact-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.8;
}

.site-footer h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.footer-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    text-align: right;
}

.footer-credit {
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 968px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--navy);
        padding: 1.5rem 2rem;
        gap: 0;
    }
    
    .main-navigation ul.active {
        display: flex;
    }
    
    .main-navigation li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Donors Section
   ========================================================================== */
.donors-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.donors-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.donors-section .section-header h2 {
    color: var(--white);
}

.donors-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.donors-intro p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tier Grid - Flexible Layout */
.donors-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Individual Tier Card */
.donor-tier {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1 1 calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    min-width: 280px;
}

.donor-tier:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 97, 0.3);
}

/* Tier Header */
.tier-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gold);
}

/* Donor Names List */
.donor-names {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.donor-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.4rem 0;
}

/* Responsive Donors */
@media (max-width: 992px) {
    .donor-tier {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .donor-tier {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* In-Kind Donors */
.in-kind-donors {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.in-kind-donors-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gold);
    text-align: center;
    margin: 0 0 2rem;
}

.in-kind-donors-list {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 2;
    column-gap: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.in-kind-donor {
    padding: 0.4rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
}

.in-kind-donor-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.in-kind-donor-description {
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
}

@media (max-width: 640px) {
    .in-kind-donors-list {
        column-count: 1;
    }
}

/* ==========================================================================
   Form Enhancements
   ========================================================================== */
.field-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.4rem;
    margin-bottom: 0;
    font-style: italic;
}

.chosen-name-group {
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.chosen-name-group.hidden {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Scholarship Application Page
   ========================================================================== */

.scholarship-application-page {
    background: var(--cream);
    min-height: 100vh;
}

.scholarship-header {
    background: var(--navy);
    padding: 4rem 0 3rem;
    text-align: center;
}

.scholarship-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.scholarship-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Progress Bar */
.form-progress {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1rem;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--cream-dark);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream-dark);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    transition: color 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--navy);
    color: var(--white);
}

.progress-step.active .step-label {
    color: var(--navy);
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: var(--gold);
    color: var(--navy);
}

.progress-step.completed .step-label {
    color: var(--text-medium);
}

.progress-bar {
    height: 4px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy), var(--gold));
    transition: width 0.4s ease;
}

/* Eligibility Notice */
.eligibility-notice {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(26, 46, 74, 0.05);
    border: 1px solid rgba(26, 46, 74, 0.15);
    border-radius: 8px;
}

.eligibility-notice h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.eligibility-notice p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.eligibility-notice ul {
    margin: 0;
    padding-left: 1.5rem;
}

.eligibility-notice li {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.25rem;
}

/* Form Steps */
.scholarship-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.form-step {
    display: none;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream-dark);
}

.subsection-title {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 2rem 0 0.5rem;
    font-weight: 600;
}

.subsection-title:first-of-type {
    margin-top: 0;
}

.subsection-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Form Rows & Groups */
.form-row {
    margin-bottom: 1.5rem;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-row.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: #c53030;
}

/* Form Inputs */
.scholarship-form input[type="text"],
.scholarship-form input[type="email"],
.scholarship-form input[type="tel"],
.scholarship-form input[type="date"],
.scholarship-form input[type="number"],
.scholarship-form select,
.scholarship-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.scholarship-form input:focus,
.scholarship-form select:focus,
.scholarship-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.scholarship-form input.error,
.scholarship-form select.error,
.scholarship-form textarea.error {
    border-color: #c53030;
}

.scholarship-form textarea {
    resize: vertical;
    min-height: 100px;
}

.scholarship-form .form-error {
    font-size: 0.8rem;
    color: #c53030;
    margin-top: 0.4rem;
    display: none;
}

.scholarship-form .field-hint {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Radio Groups */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    accent-color: var(--navy);
}

.radio-label span {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Checkbox Groups */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--navy);
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

/* Schools List */
.schools-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-add-school {
    background: none;
    border: 1px dashed var(--cream-dark);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.btn-add-school:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Conditional Sections */
.conditional-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.info-note {
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(201, 169, 97, 0.1);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border-left: 3px solid var(--gold);
}

/* Unsure Warning */
.unsure-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.unsure-warning .warning-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #856404;
}

.unsure-warning .warning-icon svg {
    width: 100%;
    height: 100%;
}

.unsure-warning h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.unsure-warning p {
    color: #856404;
    font-size: 0.95rem;
    margin: 0;
}

/* Word Count */
.word-count {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 0.5rem;
}

.word-count.over-limit {
    color: #c53030;
    font-weight: 600;
}

/* Review Section */
.review-intro {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.review-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.review-section {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-section:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-section h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edit-link {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: underline;
}

.review-content {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.review-content p {
    margin-bottom: 0.25rem;
}

.review-content strong {
    color: var(--text-dark);
}

/* Signature Section */
.signature-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--cream-dark);
}

.signature-section h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.certification-text {
    background: var(--cream);
    padding: 1.25rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.certification-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.signature-input {
    font-family: 'Brush Script MT', cursive, var(--font-display);
    font-size: 1.5rem !important;
    font-style: italic;
}

.signature-date {
    background: var(--cream) !important;
    color: var(--text-medium) !important;
}

.recaptcha-wrapper {
    margin-top: 1.5rem;
}

.recaptcha-wrapper .form-error {
    margin-top: 0.5rem;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.form-navigation .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-navigation .btn-primary {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.form-navigation .btn-primary:hover:not(:disabled) {
    background: var(--navy-light);
    border-color: var(--navy-light);
}

.form-navigation .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-navigation .btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}

.form-navigation .btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.form-navigation .btn-outline {
    background: transparent;
    color: var(--text-medium);
    border: 1px solid var(--cream-dark);
}

.form-navigation .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 640px) {
    .form-navigation {
        flex-wrap: wrap;
    }
    
    .form-navigation .btn {
        flex: 1 1 auto;
        justify-content: center;
    }
    
    .form-navigation .btn-outline {
        order: 3;
        flex: 1 1 100%;
        margin-top: 0.5rem;
    }
}

/* Success State */
.application-success {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.application-success .success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #38a169;
}

.application-success .success-icon svg {
    width: 100%;
    height: 100%;
}

.application-success h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.application-success p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.application-success .btn {
    margin-top: 1rem;
}

/* Closed State */
.application-closed-notice {
    max-width: 600px;
    margin: 3rem auto;
    padding: 3rem;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.application-closed-notice .notice-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.application-closed-notice .notice-icon svg {
    width: 100%;
    height: 100%;
}

.application-closed-notice h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.application-closed-notice p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Scholarship Modal - scoped to avoid conflict with donation modal */
.scholarship-application-page .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.scholarship-application-page .modal-overlay[style*="display: flex"],
.scholarship-application-page .modal-overlay.active {
    display: flex !important;
}

.scholarship-application-page .modal-content {
    background: var(--white);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.scholarship-application-page .modal-content.modal-small {
    max-width: 400px;
}

.scholarship-application-page .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
}

.scholarship-application-page .modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--navy);
    margin: 0;
}

.scholarship-application-page .modal-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.scholarship-application-page .modal-close:hover {
    color: var(--text-dark);
}

.scholarship-application-page .modal-body {
    padding: 1.5rem;
}

.scholarship-application-page .modal-body p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.save-email-display {
    font-weight: 600;
    color: var(--navy);
}

.scholarship-application-page .modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    text-align: center;
}

.scholarship-application-page .modal-footer .btn {
    padding: 0.75rem 2rem;
}

/* ==========================================================================
   Scholarship Policy Page
   Formal legal document layout in a Century Schoolbook serif stack.
   ========================================================================== */
.scholarship-policy-page {
    background: var(--cream, #f8f6f1);
    padding: 4rem 0 5rem;
    min-height: 60vh;
}

.scholarship-policy-page .container {
    max-width: 820px;
}

.policy-document {
    background: #ffffff;
    padding: 4rem 4.5rem;
    box-shadow: 0 2px 20px rgba(26, 46, 74, 0.08);
    font-family: 'Century Schoolbook', 'Century Schoolbook L', 'New Century Schoolbook', 'Century', Georgia, serif;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.65;
}

.policy-document p,
.policy-document li {
    font-family: inherit;
    color: inherit;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1rem;
}

/* Force the dark scrolled header background on light-background pages so
 * the white nav text stays readable. */
.bmgcc-light-page .site-header {
    background: rgba(26, 46, 74, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Title block */
.policy-title {
    text-align: center;
    margin: 0 0 1.25rem;
    padding: 0 0 0.5rem;
}

.policy-title h1 {
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.policy-title-of {
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
    text-transform: lowercase;
}

.policy-title-org {
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 0 0 1.2rem;
}

.policy-adopted {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 400;
}

.policy-adopted-blank {
    display: inline-block;
    min-width: 180px;
    border-bottom: 1px solid #1a1a1a;
    margin: 0 2px;
}

/* Article sections */
.policy-article {
    margin: 0 0 1.5rem;
    padding: 0;
}

.policy-article + .policy-article {
    margin-top: 0;
}

.policy-article-heading {
    text-align: center;
    margin: 1.25rem 0 0.75rem;
}

.policy-article:first-of-type .policy-article-heading {
    margin-top: 0.5rem;
}

.policy-article-label,
.policy-article-title {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #1a1a1a;
}

.policy-article-label {
    margin-bottom: 2px;
}

.policy-article p {
    text-align: left;
}

.policy-article strong {
    font-weight: 700;
}

/* Numbered lists — decimal for top level, lower-alpha for nested */
.policy-list,
.policy-sublist {
    font-family: inherit;
    margin: 0.5rem 0 1.25rem;
    padding-left: 2.75rem;
}

.policy-list {
    list-style: decimal;
}

.policy-sublist {
    list-style: lower-alpha;
    margin: 0.5rem 0 0.5rem;
    padding-left: 2.25rem;
}

.policy-list > li,
.policy-sublist > li {
    padding-left: 0.5rem;
    margin-bottom: 0.4rem;
}

.policy-list > li:last-child,
.policy-sublist > li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .scholarship-policy-page {
        padding: 2rem 0 3rem;
    }
    .policy-document {
        padding: 2rem 1.5rem;
    }
    .policy-title h1 {
        font-size: 1.2rem;
    }
    .policy-title-org {
        font-size: 1.05rem;
    }
    .policy-list,
    .policy-sublist {
        padding-left: 1.75rem;
    }
    .policy-sublist {
        padding-left: 1.5rem;
    }
    .policy-adopted-blank {
        min-width: 120px;
    }
}

/* Print-friendly */
@media print {
    .site-header,
    .site-footer {
        display: none !important;
    }
    .scholarship-policy-page {
        background: #ffffff;
        padding: 0;
    }
    .policy-document {
        box-shadow: none;
        padding: 0;
    }
}
