/* ============================================================
   Shrewsbury Little League — Public Site CSS
   Colors: Navy #1a2d5a, Gold #c9a84c, White #ffffff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #1a2d5a;
    --navy-dark:   #111e3d;
    --navy-light:  #243870;
    --gold:        #c9a84c;
    --gold-light:  #e2c47a;
    --gold-dark:   #a8882e;
    --white:       #ffffff;
    --off-white:   #f4f5f7;
    --text:        #1a1a2e;
    --text-light:  #5a6070;
    --border:      #dde1ea;
    --shadow-sm:   0 1px 3px rgba(26,45,90,.1);
    --shadow-md:   0 4px 16px rgba(26,45,90,.15);
    --shadow-lg:   0 8px 32px rgba(26,45,90,.2);
    --radius:      6px;
    --radius-lg:   12px;
    --max-w:       1100px;
    --font-display: 'Oswald', sans-serif;
    --font-body:    'Source Serif 4', serif;
    --font-ui:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

.section-header {
    margin-bottom: 2.5rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    position: relative;
    display: inline-block;
    padding-bottom: .5rem;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 3rem; height: 3px;
    background: var(--gold);
}
.section-header .see-all {
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    float: right;
    margin-top: .75rem;
}
.section-header .see-all:hover { color: var(--navy); }

/* ============================================================
   HEADER & NAV
   ============================================================ */

.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 68px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    margin-right: 2rem;
    flex-shrink: 0;
}
.site-logo img {
    height: 48px;
    width: auto;
}
.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.site-logo-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
}
.site-logo-sub {
    font-family: var(--font-ui);
    font-size: .7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }

.main-nav a,
.nav-dropdown > button {
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .5rem .75rem;
    border-radius: var(--radius);
    border: none;
    background: none;
    cursor: pointer;
    transition: color .15s, background .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.main-nav a:hover,
.nav-dropdown > button:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(255,255,255,.08);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > button::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255,255,255,.7);
    border-bottom: 2px solid rgba(255,255,255,.7);
    transform: rotate(45deg) translateY(-2px);
    margin-left: .4rem;
    flex-shrink: 0;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    padding: .4rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 300;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: .5rem 1.1rem;
    font-family: var(--font-ui);
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    transition: background .15s, color .15s;
}
.dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--navy);
}
.dropdown-menu .divider {
    height: 1px;
    background: var(--border);
    margin: .3rem 0;
}

/* Register CTA in nav */
.nav-register {
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 700;
    color: var(--navy) !important;
    background: var(--gold) !important;
    padding: .45rem .9rem !important;
    border-radius: var(--radius) !important;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: background .15s !important;
    margin-left: 1.25rem;
}
.nav-register:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

/* ============================================================
   FIELD STATUS BAR
   ============================================================ */

.field-status-bar {
    background: var(--navy-dark);
    border-bottom: 2px solid var(--gold);
    padding: .5rem 0;
}
.field-status-bar .container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.field-status-label {
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}
.field-pill {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-ui);
    font-size: .78rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
}
.field-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.field-dot.open   { background: #4caf50; box-shadow: 0 0 6px #4caf50; }
.field-dot.closed { background: #e53935; box-shadow: 0 0 6px #e53935; }
.field-pill .field-note-inline {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
}
.field-updated-time {
    font-size: .68rem;
    color: rgba(255,255,255,.35);
    font-style: italic;
    margin-left: .25rem;
}
@media (max-width: 768px) {
    .field-updated-time { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,168,76,.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
    pointer-events: none;
}
/* Diagonal gold accent */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: var(--off-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-inner {
    position: relative;
    z-index: 1;
}
.hero-badge {
    width: 140px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.1;
    margin-bottom: .5rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
    font-family: var(--font-ui);
    font-size: 1rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,168,76,.4);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
    transform: translateY(-1px);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* ============================================================
   DIVISION CARDS (home page)
   ============================================================ */

.division-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.division-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: var(--text);
    display: block;
}
.division-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
.division-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.division-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .5rem;
}
.division-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.news-card-type {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    background: var(--navy);
}
.news-card-type span {
    font-family: var(--font-ui);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
}
.news-card-division {
    font-family: var(--font-ui);
    font-size: .7rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.news-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-card-date {
    font-family: var(--font-ui);
    font-size: .78rem;
    color: var(--text-light);
    margin-bottom: .5rem;
}
.news-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.news-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.55;
    flex: 1;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 1rem;
}
.news-card-link:hover { color: var(--navy); }

/* Event card variant */
.news-card.is-event .news-card-type { background: var(--gold); }
.news-card.is-event .news-card-type span { color: var(--navy); }
.news-card.is-event .news-card-division { color: rgba(26,45,90,.5); }

/* ============================================================
   EVENTS STRIP
   ============================================================ */

.events-strip {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 2rem;
}
.event-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
}
.event-row:last-child { border-bottom: none; }
.event-row:hover { background: var(--off-white); }
.event-date-block {
    text-align: center;
    min-width: 52px;
    background: var(--navy);
    border-radius: var(--radius);
    padding: .4rem .5rem;
    flex-shrink: 0;
}
.event-date-month {
    font-family: var(--font-ui);
    font-size: .65rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.event-date-day {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.event-info h4 {
    font-family: var(--font-ui);
    font-size: .95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .15rem;
}
.event-info p {
    font-size: .82rem;
    color: var(--text-light);
    font-family: var(--font-ui);
}
.event-division-badge {
    margin-left: auto;
    font-family: var(--font-ui);
    font-size: .7rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(201,168,76,.12);
    padding: .2rem .6rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

/* ============================================================
   SPONSORS STRIP
   ============================================================ */

.sponsors-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 3rem 0;
}
.sponsors-tier { margin-bottom: 2rem; }
.sponsors-tier:last-child { margin-bottom: 0; }
.sponsors-tier-label {
    font-family: var(--font-ui);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.25rem;
}
.sponsors-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.sponsor-logo {
    opacity: .75;
    transition: opacity .2s, transform .2s;
    filter: grayscale(20%);
}
.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: none;
}
.sponsor-logo img { max-height: 60px; width: auto; }
.sponsors-tier.tier-gold .sponsor-logo img   { max-height: 70px; }
.sponsors-tier.tier-silver .sponsor-logo img { max-height: 55px; }
.sponsors-tier.tier-bronze .sponsor-logo img { max-height: 45px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.65);
    padding: 3rem 0 1.5rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-brand img { height: 50px; margin-bottom: .75rem; }
.footer-brand p {
    font-size: .85rem;
    line-height: 1.6;
    max-width: 260px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
    font-family: var(--font-ui);
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    transition: color .15s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p {
    font-family: var(--font-ui);
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.footer-bottom a {
    color: rgba(255,255,255,.4);
    font-family: var(--font-ui);
    font-size: .78rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   OPEN/CLOSED STATUS BADGES (public pages)
   ============================================================ */

.status-open   { color: #2e7d32; font-weight: 600; }
.status-closed { color: #c62828; font-weight: 600; }
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.status-badge.open   { background: #e8f5e9; color: #2e7d32; }
.status-badge.closed { background: #ffebee; color: #c62828; }

/* ============================================================
   DIVISION HUB PAGE
   ============================================================ */

.division-hero {
    background: var(--navy);
    padding: 3rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.division-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.1) 0%, transparent 60%);
}
.division-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 40px;
    background: var(--off-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.division-hero-inner {
    position: relative;
    z-index: 1;
}
.division-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .4rem;
}
.division-hero h1 span { color: var(--gold); }
.division-subnav {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.division-subnav a {
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .4rem .9rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 99px;
    transition: all .15s;
    background: transparent;
}
.division-subnav a:hover,
.division-subnav a.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ============================================================
   SINGLE NEWS POST
   ============================================================ */

.post-header {
    background: var(--navy);
    padding: 3rem 0 2.5rem;
}
.post-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.2;
}
.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: .75rem;
}
.post-meta span {
    font-family: var(--font-ui);
    font-size: .8rem;
    color: rgba(255,255,255,.55);
}
.post-meta span strong { color: var(--gold); }
.post-body {
    max-width: 740px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}
.post-body p   { margin-bottom: 1.25rem; }
.post-body h2  { font-family: var(--font-display); color: var(--navy);
                 text-transform: uppercase; margin: 2rem 0 .75rem; }
.post-body h3  { font-family: var(--font-display); color: var(--navy);
                 text-transform: uppercase; letter-spacing: .03em;
                 margin: 2rem 0 .65rem;
                 border-left: 3px solid var(--gold);
                 padding-left: 1.25rem; }
.post-body h4  { font-family: var(--font-display); color: var(--navy);
                 text-transform: uppercase; font-size: .9rem;
                 letter-spacing: .04em; margin: 1.25rem 0 .5rem; }
.post-body ul,
.post-body ol  { margin: 0 0 1.25rem 1.5rem; }
.post-body li  { margin-bottom: .4rem; }
.post-body a   { color: var(--gold-dark); text-decoration: underline; }
.post-body img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ============================================================
   ALUMNI GRID
   ============================================================ */

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}
.alumni-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    text-align: center;
}
.alumni-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.alumni-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.alumni-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,.2);
}
.alumni-card-body { padding: 1.1rem; }
.alumni-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .25rem;
}
.alumni-college {
    font-family: var(--font-ui);
    font-size: .82rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: .2rem;
}
.alumni-year {
    font-family: var(--font-ui);
    font-size: .75rem;
    color: var(--text-light);
    margin-bottom: .6rem;
}
.alumni-quote {
    font-size: .82rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    border-top: 1px solid var(--border);
    padding-top: .6rem;
    margin-top: .6rem;
}

/* ============================================================
   SPONSORS PAGE
   ============================================================ */

.sponsor-faq-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;
    border-bottom: 3px solid var(--gold);
}

.sponsors-hero-blurb {
    font-family: var(--font-ui);
    font-size: .95rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    max-width: 640px;
    margin-top: 1rem;
}
.sponsors-hero-blurb strong { color: var(--gold); font-weight: 700; }

.sponsors-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.sponsor-faq-item h4 {
    font-family: var(--font-ui);
    font-size: .875rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
}
.sponsor-faq-item p,
.sponsor-faq-item ul {
    font-family: var(--font-ui);
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}
.sponsor-faq-item ul {
    padding-left: 1.1rem;
}
.sponsor-faq-item ul li {
    margin-bottom: .2rem;
}



/* ============================================================
   SOCIAL ICONS
   ============================================================ */

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    transition: background .15s, color .15s;
}
.social-icon:hover {
    background: var(--gold);
    color: var(--navy);
}
.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   FACEBOOK EMBED
   ============================================================ */

.fb-embed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.fb-embed-col {
    min-width: 0; /* prevent grid blowout */
}
.fb-embed-label {
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-light);
    margin-bottom: .75rem;
}
.fb-page-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
    .fb-embed-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FIELDS PAGE
   ============================================================ */

.fields-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.field-card-pub {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.field-card-pub-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.field-card-pub-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.field-card-pub-body { padding: 1.25rem; }
.field-address-pub {
    font-family: var(--font-ui);
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: .75rem;
    display: flex;
    align-items: flex-start;
    gap: .4rem;
}
.field-notes-pub {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: .75rem;
    padding: .6rem .8rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}
.field-status-note-pub {
    font-family: var(--font-ui);
    font-size: .82rem;
    color: #c62828;
    background: #ffebee;
    padding: .5rem .8rem;
    border-radius: var(--radius);
    margin-top: .5rem;
}
.field-directions {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-ui);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-top: .5rem;
}
.field-directions:hover { color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .division-cards { grid-template-columns: 1fr; }
    .footer-inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0;
                flex-direction: column; background: var(--navy-dark);
                padding: 1rem; gap: .25rem; box-shadow: var(--shadow-lg);
                max-height: calc(100vh - 68px); overflow-y: auto; }
    .main-nav.open { display: flex; }
    .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible;
                                   transform: none; box-shadow: none;
                                   background: rgba(255,255,255,.05); margin-top: .25rem; }
    .dropdown-menu a { color: rgba(255,255,255,.8); }
    .dropdown-menu a:hover { background: rgba(255,255,255,.1); color: var(--white); }
    .nav-toggle { display: flex; }
    .site-header { position: sticky; }
    .footer-inner { grid-template-columns: 1fr; }
    .news-grid    { grid-template-columns: 1fr; }
    .alumni-grid  { grid-template-columns: repeat(2, 1fr); }
    .division-cards { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .alumni-grid { grid-template-columns: 1fr; }
    .hero { padding: 3rem 0 3.5rem; }
    .hero-badge { width: 100px; }
}

/* Force white text in navy CTA section regardless of TinyMCE inline styles */
.cta-text, .cta-text * {
    color: rgba(255,255,255,.7) !important;
}

/* CTA section — override body text color for all descendants */
.cta-text p,
.cta-text p *,
.cta-text span,
.cta-text a {
    color: rgba(255,255,255,.7) !important;
}

/* Navy section — force all text white regardless of TinyMCE output */
section[style*="background:var(--navy)"] *,
section[style*="background: var(--navy)"] * {
    color: rgba(255,255,255,.7) !important;
}
section[style*="background:var(--navy)"] h1,
section[style*="background:var(--navy)"] h2 {
    color: var(--white) !important;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list { display: flex; flex-direction: column; gap: 2.5rem; }

.faq-item {
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .65rem;
    line-height: 1.3;
}

.faq-answer {
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    line-height: 1.75;
    white-space: pre-line;
}

/* ============================================================
   LEADERSHIP / COMMISSIONER CARDS
   ============================================================ */

.commissioner-group {
    margin-bottom: 1.75rem;
}
.commissioner-group-label {
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .6rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.commissioner-pair {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: .75rem;
}
.commissioner-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
}
.commissioner-card h4 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: .2rem;
}
.commissioner-card .comm-title {
    font-family: var(--font-ui);
    font-size: .75rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem;
}
.commissioner-card a {
    font-family: var(--font-ui);
    font-size: .8rem;
    color: var(--text-light);
}
.commissioner-card a:hover { color: var(--navy); }

/* Content images uploaded via TinyMCE */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.25rem 0;
    display: block;
}
/* Full-width image post */
.post-body img:only-child {
    width: 100%;
}
