:root{
  --bg:#20242a;
  --bg-deep:#16191d;
  --nav:#2a3138;
  --nav-deep:#1d2328;
  --nav-text:#f5f7f8;
  --nav-muted:#d2d8dd;
  --silver-1:#e9edf0;
  --silver-2:#c8ced3;
  --silver-3:#aeb6bd;
  --panel:#b8bfc5;
  --panel-deep:#a4acb3;
  --panel-light:#eef2f5;
  --text:#101215;
  --text-soft:#2a3036;
  --navy:#071d34;
  --navy-2:#17365f;
  --border:#d9dee2;
  --frame:#2a3138;
  --shadow:0 16px 34px rgba(0,0,0,.30);
  --radius:20px;
  --shell:1480px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:
    radial-gradient(circle at top,rgba(255,255,255,.045),transparent 30%),
    linear-gradient(180deg,var(--bg),var(--bg-deep));
  color:var(--text);
  line-height:1.55;
}
a{color:#17365f}
a:hover{text-decoration:none}
img{max-width:100%;height:auto;display:block}
button,input,select,textarea{font:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:linear-gradient(180deg,var(--nav),var(--nav-deep));
  border-bottom:1px solid rgba(255,255,255,.12);
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}
.site-header__inner{
  width:min(var(--shell),calc(100% - 24px));
  margin:0 auto;
  min-height:72px;
  display:flex;
  align-items:center;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:max-content;
  color:var(--nav-text);
  text-decoration:none;
  font-weight:800;
}
.brand__mark{width:50px;height:50px;object-fit:contain}
.brand__text{white-space:nowrap}

.primary-nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:5px;
}
.nav-group{position:relative}
.nav-link{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  border:1px solid transparent;
  border-radius:999px;
  padding:0 12px;
  color:var(--nav-muted);
  background:transparent;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}
.nav-link:hover,.nav-link:focus-visible,.nav-link.is-active,.nav-trigger[aria-expanded="true"]{
  color:#101215;
  background:linear-gradient(180deg,var(--silver-1),var(--silver-3));
  border-color:rgba(255,255,255,.18);
  outline:none;
}
.chevron{font-size:.8em;transition:transform .16s ease}
.nav-trigger[aria-expanded="true"] .chevron{transform:rotate(180deg)}
.submenu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  width:245px;
  display:none;
  padding:8px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:linear-gradient(180deg,#303841,#20262c);
  box-shadow:0 16px 30px rgba(0,0,0,.32);
}
.submenu--wide{width:275px}
.submenu--right{left:auto;right:0}
.submenu.is-open{display:block}
.submenu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#eef2f5;
  text-decoration:none;
  font-weight:700;
}
.submenu a:hover,.submenu a:focus-visible{background:rgba(255,255,255,.09);outline:none}
.menu-toggle{
  display:none;
  min-height:42px;
  margin-left:auto;
  padding:0 15px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--nav-text);
  font-weight:700;
  cursor:pointer;
}

.ticker{
  background:linear-gradient(180deg,#bfc6cc,#aeb6bd);
  border-bottom:2px solid #d9dee2;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.ticker__viewport{
  width:min(var(--shell),calc(100% - 24px));
  margin:0 auto;
  height:52px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:center;
}
.ticker__track{
  display:flex;
  align-items:center;
  width:max-content;
  white-space:nowrap;
  animation:ticker-scroll 34s linear infinite;
  will-change:transform;
}
.ticker__group{
  display:flex;
  align-items:center;
  gap:18px;
  flex:0 0 auto;
  padding-right:18px;
}
.ticker:hover .ticker__track,.ticker:focus-within .ticker__track{animation-play-state:paused}
.ticker__item{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:4px 13px;
  border-radius:999px;
  background:linear-gradient(180deg,#163252,#071d34);
  border:1px solid #5e7288;
  color:#fff;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
}
.ticker__item:hover,.ticker__item:focus-visible{
  background:linear-gradient(180deg,#244c78,#0b2949);
  outline:2px solid rgba(255,255,255,.55);
  outline-offset:2px;
}
.ticker__separator{color:#263746;font-weight:900}
@keyframes ticker-scroll{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
@media (prefers-reduced-motion:reduce){
  .ticker__viewport{height:auto;overflow-x:auto;overflow-y:hidden;padding:9px 0}
  .ticker__track{animation:none;transform:none}
  .ticker__group--clone{display:none}
}

.page-shell{width:min(var(--shell),calc(100% - 28px));margin:24px auto 0;padding-bottom:30px}
.welcome-panel{
  background:linear-gradient(180deg,#bcc3c9,#a6aeb5);
  border:2px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:25px;
  overflow:hidden;
}
.welcome-panel h1{
  margin:0 0 20px;
  text-align:center;
  line-height:1.08;
  color:#0d1115;
}
.welcome-kicker{
  display:block;
  font-size:clamp(1.35rem,2.4vw,2rem);
  font-weight:800;
  letter-spacing:.01em;
}
.welcome-name{
  display:block;
  margin-top:5px;
  font-size:clamp(2.15rem,4vw,3.45rem);
  font-weight:900;
}
.welcome-copy{display:block}
.welcome-panel--home-centered h1{margin-bottom:18px}
.welcome-panel--home-centered .welcome-copy{display:flex;flex-direction:column;align-items:center}
.welcome-panel--home-centered .league-logo-frame{float:none;width:min(58%,520px);margin:0 auto 22px}
.welcome-panel--home-centered .league-logo-frame--anniversary{
  width:min(52%,500px);
  border-color:#88939d;
  background:#eef1f3;
}
.welcome-panel--home-centered .objectives{width:min(100%,900px);margin:0 auto}
.welcome-panel--home-centered .objectives h2{text-align:center}
.welcome-panel--home-centered .objective-list{max-width:860px;margin:0 auto;text-align:left}
.league-logo-frame{
  float:left;
  width:min(42%,440px);
  margin:0 24px 14px 0;
  padding:0;
  border:10px solid var(--frame);
  border-radius:18px;
  overflow:hidden;
  background:#d7dce0;
  box-shadow:0 14px 28px rgba(0,0,0,.28);
  line-height:0;
}
.league-logo-frame img{width:100%;height:auto}
.objectives h2{
  margin:0 0 8px;
  font-size:clamp(1.35rem,2.4vw,1.9rem);
  color:#101215;
}
.objective-list{margin:0;padding-left:1.6rem}
.objective-list li{margin:.42rem 0;color:#15191d}
.division-block{
  clear:both;
  margin-top:20px;
  padding:16px;
  border:3px solid #6e7780;
  border-radius:16px;
  background:linear-gradient(180deg,#d6dce1,#c3c9ce);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.45);
}
.division-block h2{margin:0 0 12px;text-align:center;font-size:1.35rem}
.division-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px}
.division{
  min-height:86px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border:2px solid rgba(20,24,29,.27);
  border-radius:12px;
  padding:9px;
  text-align:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}
.division span{text-transform:uppercase;letter-spacing:.05em;font-weight:900}
.division strong{font-size:1.03rem}
.division--red{background:linear-gradient(180deg,#e0b3b3,#c98282)}
.division--white{background:linear-gradient(180deg,#f1f4f6,#d8dee3)}
.division--gold{background:linear-gradient(180deg,#e7d38d,#c9a844)}
.division--gray{background:linear-gradient(180deg,#d2d7dc,#afb7bf)}
.division--blue{background:linear-gradient(180deg,#a9c3df,#7094bf)}

.section-break{display:flex;align-items:center;gap:12px;margin:26px 0 20px}
.section-break::before,.section-break::after{content:"";height:2px;background:linear-gradient(90deg,transparent,#98a1a9);flex:1}
.section-break::after{background:linear-gradient(90deg,#98a1a9,transparent)}
.section-break span{width:11px;height:11px;transform:rotate(45deg);background:#d5dbe0;border:2px solid #68717a}

.updates-layout{display:grid;grid-template-columns:minmax(0,2.15fr) minmax(370px,.85fr);gap:20px;align-items:start}
.news-column,.notes-column{min-width:0}
.section-heading-row{display:flex;align-items:end;justify-content:space-between;gap:12px;margin-bottom:12px}
.section-heading-row h2{margin:0;color:#eef2f5;font-size:1.85rem}
.prototype-label{color:#cbd2d8;font-size:.84rem;font-weight:700}
.news-card,.note-card{
  background:linear-gradient(180deg,#bcc3c9,#a6aeb5);
  border:2px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 26px rgba(0,0,0,.24);
}
.news-card{padding:20px}
.news-card header h3{margin:.1rem 0 .55rem;font-size:1.45rem;line-height:1.2}
.news-card p{margin:.45rem 0;color:#1a1f24}
.news-card__meta{font-size:.82rem!important;text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:#2f3942!important}
.news-separator{height:14px;margin:5px 0;position:relative}
.news-separator::after{content:"";position:absolute;left:5%;right:5%;top:50%;height:1px;background:rgba(214,221,226,.48)}
.news-card--with-image{display:grid;grid-template-columns:minmax(0,1fr) 180px;gap:18px;align-items:stretch}
.sample-image{min-height:150px;border:3px solid #37414a;border-radius:14px;background:linear-gradient(135deg,#dfe4e8,#9ba5ad);display:grid;place-items:center;color:#3a444d;font-weight:900;text-align:center;padding:12px}
.text-link{display:inline-block;margin-top:8px;font-weight:800}
.news-card--media{
  display:grid;
  grid-template-columns:minmax(0,1fr) clamp(190px,24%,260px);
  gap:20px;
  align-items:center;
}
.news-card__body{min-width:0}
.news-card__media{
  margin:0;
  overflow:hidden;
  border:3px solid #37414a;
  border-radius:14px;
  background:linear-gradient(135deg,#dfe4e8,#9ba5ad);
}
.news-card__media img{width:100%;height:auto}
.news-facts{
  display:grid;
  grid-template-columns:max-content minmax(0,1fr);
  column-gap:.48rem;
  row-gap:.36rem;
  margin:14px 0 0;
  padding:12px 14px;
  border:1px solid rgba(47,57,66,.28);
  border-radius:12px;
  background:rgba(255,255,255,.18);
}
.news-facts dt{font-weight:900}
.news-facts dd{margin:0;min-width:0;overflow-wrap:anywhere}

.notes-toggle{
  width:100%;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  border:2px solid var(--border);
  border-radius:16px;
  background:linear-gradient(180deg,#d9dee2,#b9c1c8);
  color:#13171b;
  box-shadow:0 10px 20px rgba(0,0,0,.22);
  font-size:1.15rem;
  font-weight:900;
  cursor:default;
}
.notes-toggle__icon{display:none}
.notes-content{display:grid;gap:12px;margin-top:12px}
.note-card{padding:15px}
.note-card h3{margin:0 0 10px;font-size:1.18rem}
.note-card p{margin:0;color:#1a1f24}
.board-list{margin:0}
.board-list div{display:grid;grid-template-columns:minmax(165px,.95fr) minmax(0,1.05fr);gap:10px;padding:7px 0;border-bottom:1px solid rgba(47,57,66,.22)}
.board-list div:last-child{border-bottom:0}
.board-list dt{font-weight:900;color:#1c252d}
.board-list dd{margin:0;text-align:right;color:#1d2328}
.quick-links{margin:0;padding-left:1.15rem}
.quick-links li{margin:.42rem 0}
.notes-endmark{
  margin:0;
  padding:12px;
  border:2px solid var(--border);
  border-radius:18px;
  background:linear-gradient(180deg,#cfd5da,#aeb6bd);
  box-shadow:0 12px 24px rgba(0,0,0,.24);
}
.notes-endmark img{width:100%;max-width:330px;margin:0 auto}

.mobile-notes-tab{display:none!important}
.notes-scrim{display:none}

.site-footer{
  margin-top:10px;
  border-top:2px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,#2a3138,#181d22);
  color:#e8edf1;
}
.footer-shell{width:min(var(--shell),calc(100% - 28px));margin:0 auto;padding:20px 0 24px}
.sponsor-slot{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  background:rgba(255,255,255,.06);
}
.sponsor-slot__label{font-weight:900;text-transform:uppercase;letter-spacing:.06em;color:#dce2e7;white-space:nowrap}
.sponsor-slot__placeholder{
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  padding:10px;
  border-radius:12px;
  background:linear-gradient(180deg,#e6eaed,#bcc4ca);
  color:#1a2025;
  text-align:center;
}
.sponsor-slot__placeholder span{color:#3c464e}
.footer-main{display:flex;align-items:center;justify-content:space-between;gap:20px}
.footer-nav{display:flex;flex-wrap:wrap;gap:10px 15px}
.footer-nav a,.footer-meta a{color:#dce3e8;text-decoration:none}
.footer-nav a:hover,.footer-meta a:hover{text-decoration:underline}
.footer-meta{display:flex;align-items:center;justify-content:flex-end;gap:14px;flex-wrap:wrap;color:#c7d0d6;font-size:.9rem}
.admin-link{opacity:.72}

@media (max-width:1000px){
  .brand__text{display:none}
  .nav-link{padding:0 10px}
}

@media (max-width:1100px){
  .news-card--media{grid-template-columns:1fr}
  .news-card__media{width:min(100%,360px)}
}

@media (max-width:860px){
  .site-header__inner{flex-wrap:wrap;padding:9px 0}
  .brand__text{display:inline}
  .menu-toggle{display:inline-flex;align-items:center;justify-content:center}
  .primary-nav{display:none;width:100%;margin-left:0;flex-direction:column;align-items:stretch;gap:4px;padding-top:2px}
  .primary-nav.is-open{display:flex}
  .nav-group{width:100%}
  .nav-link{width:100%;justify-content:space-between;border-radius:12px;padding:10px 13px;min-height:44px}
  a.nav-link{justify-content:flex-start}
  .submenu,.submenu--wide,.submenu--right{position:static;width:100%;margin-top:4px;border-radius:12px;box-shadow:none;background:rgba(255,255,255,.06)}
  .submenu a{padding-left:24px}
  .updates-layout{grid-template-columns:1fr}
  .news-column{grid-column:1}
  .notes-column{
    position:fixed;
    z-index:1300;
    top:82px;
    right:10px;
    bottom:12px;
    width:min(370px,calc(100vw - 50px));
    padding:0 0 8px;
    overflow:auto;
    transform:translateX(calc(100% + 24px));
    transition:transform .2s ease;
    overscroll-behavior:contain;
  }
  .notes-column.is-mobile-open{transform:translateX(0)}
  .notes-toggle{cursor:pointer;position:sticky;top:0;z-index:2}
  .notes-toggle__icon{display:inline-block;font-size:1.5rem;line-height:1;transition:transform .16s ease}
  .notes-toggle[aria-expanded="true"] .notes-toggle__icon{transform:rotate(45deg)}
  .notes-content{display:grid}
  .mobile-notes-tab{
    position:fixed;
    z-index:1250;
    top:145px;
    right:0;
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    min-width:62px;
    min-height:38px;
    padding:7px 10px;
    border:2px solid #d9dee2;
    border-right:0;
    border-radius:12px 0 0 12px;
    background:linear-gradient(180deg,#163252,#071d34);
    color:#fff;
    box-shadow:0 8px 18px rgba(0,0,0,.28);
    font-weight:900;
    cursor:pointer;
  }
  .mobile-notes-tab[aria-expanded="true"]{background:linear-gradient(180deg,#d9dee2,#aeb6bd);color:#101215}
  .notes-scrim{
    position:fixed;
    z-index:1200;
    inset:0;
    display:block;
    background:rgba(0,0,0,.42);
  }
  .notes-scrim[hidden]{display:none}
  .section-heading-row{margin-top:2px}
}

@media (max-width:720px){
  .page-shell{width:min(100% - 20px,var(--shell));margin-top:14px}
  .welcome-panel{padding:17px;border-radius:18px}
  .welcome-kicker{font-size:clamp(1.08rem,4.6vw,1.35rem)}
  .welcome-name{font-size:clamp(1.85rem,8vw,2.45rem)}
  .league-logo-frame{float:none;width:min(100%,500px);margin:0 auto 18px;border-width:8px}
  .welcome-panel--home-centered .league-logo-frame{width:min(100%,500px);margin:0 auto 18px}
  .objectives h2{text-align:center}
  .division-block{padding:11px;margin-top:14px}
  .division-block h2{font-size:1.08rem;margin-bottom:8px}
  .division-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:7px}
  .division{min-height:58px;padding:5px 7px;gap:2px;border-radius:10px}
  .division span{font-size:.88rem}
  .division strong{font-size:.9rem}
  .division:last-child{grid-column:1/-1;width:calc(50% - 3.5px);justify-self:center}
  .news-card--with-image,.news-card--media{grid-template-columns:1fr}
  .sample-image{min-height:120px}
  .section-heading-row{align-items:flex-start;flex-direction:column}
  .footer-main{flex-direction:column;align-items:flex-start}
  .footer-meta{justify-content:flex-start}
  .sponsor-slot{grid-template-columns:1fr;text-align:center}
}

@media (max-width:480px){
  .brand__text{max-width:190px;overflow:hidden;text-overflow:ellipsis}
  .ticker__viewport{width:calc(100% - 16px)}
  .ticker__track{animation-duration:28s}
  .division-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .division:last-child{grid-column:1/-1;width:calc(50% - 3.5px);justify-self:center}
  .board-list div{grid-template-columns:1fr}
  .board-list dd{text-align:left}
  .footer-nav{gap:8px 12px}
}

/* v4: mobile navigation viewport scrolling */
@media (max-width:860px){
  .primary-nav.is-open{
    max-height:calc(100vh - 86px);
    max-height:calc(100dvh - 86px);
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-y;
    padding-bottom:calc(16px + env(safe-area-inset-bottom));
    scrollbar-gutter:stable;
  }
  .submenu.is-open{display:block}
}

/* v4: preserve supplied announcement images without stretching */
.news-card__media{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.news-card__media img{
  width:auto;
  max-width:100%;
  max-height:270px;
  object-fit:contain;
}
@media (max-width:1100px){
  .news-card__media{justify-self:center}
}

/* Final public-shell prototype: nested season navigation */
.submenu-item-group{position:relative}
.submenu-link{
  width:100%;
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#eef2f5;
  font:inherit;
  font-weight:700;
  text-align:left;
  cursor:pointer;
}
.submenu-link:hover,.submenu-link:focus-visible,.submenu-link[aria-expanded="true"]{
  background:rgba(255,255,255,.09);
  outline:none;
}
.submenu-nested{
  top:0;
  left:auto;
  right:calc(100% + 8px);
  width:205px;
}
.nested-chevron{font-size:.8em;transition:transform .16s ease}
.submenu-nested-trigger[aria-expanded="true"] .nested-chevron{transform:rotate(-90deg)}

/* Use the established horizontal-line/diamond motif between League News items. */
.news-separator{height:auto;margin:15px 0 13px}
.news-separator::after{content:none}
.news-separator::before{content:"";height:2px;background:linear-gradient(90deg,transparent,#98a1a9);flex:1}
.news-separator span{width:9px;height:9px}
.news-separator span::after{content:""}
.news-separator::after{content:"";height:2px;background:linear-gradient(90deg,#98a1a9,transparent);flex:1}

@media (max-width:860px){
  .submenu-item-group{width:100%}
  .submenu-link{padding-left:24px}
  .submenu-nested{
    position:static;
    width:100%;
    margin:4px 0 0;
    padding:4px 8px 6px 18px;
    border:0;
    border-left:2px solid rgba(255,255,255,.14);
    border-radius:8px;
    background:rgba(0,0,0,.14);
    box-shadow:none;
  }
  .submenu-nested a{padding-left:20px}
  .nested-chevron{transform:rotate(-90deg)}
  .submenu-nested-trigger[aria-expanded="true"] .nested-chevron{transform:rotate(90deg)}
}

/* About: Silver League Information launch-critical landing page */
.information-page{padding-bottom:38px}
.about-documents{
  background:linear-gradient(180deg,#bcc3c9,#a6aeb5);
  border:2px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:22px;
}
.about-documents__header{text-align:center;max-width:860px;margin:0 auto 18px}
.about-documents__eyebrow{
  margin:0 0 3px;
  color:#2f3942;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.about-documents__header h2{margin:0 0 7px;font-size:clamp(1.45rem,2.5vw,2rem);line-height:1.15}
.about-documents__header p:last-child{margin:0;color:#252c32}
.about-document-links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.about-document-link{
  min-height:100px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:14px;
  border:2px solid #56616b;
  border-radius:14px;
  background:linear-gradient(180deg,#eef2f5,#cbd2d8);
  color:#0c223d;
  text-align:center;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(0,0,0,.16);
}
.about-document-link strong{font-size:1.08rem}
.about-document-link span{font-size:.86rem;color:#4b555e}
.about-document-link.is-placeholder{cursor:default}
.about-document-link.is-placeholder:hover,.about-document-link.is-placeholder:focus-visible{
  text-decoration:none;
  outline:2px solid rgba(7,29,52,.35);
  outline-offset:2px;
}
@media (max-width:720px){
  .about-documents{padding:17px;border-radius:18px}
  .about-document-links{grid-template-columns:1fr}
  .about-document-link{min-height:78px}
}

/* ===== About section shared first-pass pages ===== */
.about-standard-page{padding-bottom:38px}
.about-hero,
.contact-directory,
.resource-link-grid,
.sponsor-directory,
.fields-panel{
  background:linear-gradient(180deg,#bcc3c9 0%,#a6aeb5 100%);
  border:2px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.about-hero{padding:24px;text-align:center}
.about-kicker,
.fields-kicker{
  margin:0 0 7px;
  color:#11171d;
  font-size:clamp(1rem,1.8vw,1.35rem);
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  text-align:center;
}
.about-hero h1,
.fields-hero h1{
  margin:0 0 12px;
  color:#101215;
  font-size:clamp(2rem,4.5vw,3.6rem);
  line-height:1.08;
  text-align:center;
}
.about-intro{max-width:820px;margin:0 auto;color:var(--text-soft);font-size:clamp(1rem,1.8vw,1.18rem)}
.about-contact-address{margin:16px auto 0;color:#1b2228;font-size:1.02rem}
.about-small-note{margin:15px auto 0;text-align:center;color:#dce2e7;font-size:.92rem;max-width:900px}

.contact-directory{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:20px;
}
.contact-card{
  min-width:0;
  padding:17px;
  border:2px solid rgba(42,49,56,.32);
  border-radius:16px;
  background:linear-gradient(180deg,#eef2f5 0%,#cbd2d8 100%);
  box-shadow:0 8px 18px rgba(0,0,0,.15);
  text-align:center;
}
.contact-card__position{font-size:.82rem;font-weight:900;letter-spacing:.055em;text-transform:uppercase;color:#384550}
.contact-card h2{margin:5px 0 7px;font-size:1.22rem;line-height:1.15;color:#11171d}
.contact-card__phone{display:inline-block;font-size:1.04rem;font-weight:900;color:#0c3157;text-decoration:none}
.contact-card__phone:hover,.contact-card__phone:focus-visible{text-decoration:underline}

.resource-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  padding:20px;
}
.resource-link-card{
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:7px;
  padding:18px;
  border:2px solid #56616b;
  border-radius:16px;
  background:linear-gradient(180deg,#eef2f5 0%,#cbd2d8 100%);
  color:#11171d;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
}
.resource-link-card:hover,.resource-link-card:focus-visible{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,.2);outline:none}
.resource-link-card__type{font-size:.78rem;font-weight:900;letter-spacing:.065em;text-transform:uppercase;color:#46525d}
.resource-link-card strong{font-size:1.25rem;color:#0b2a4a}
.resource-link-card span:last-child{color:#303941}
.resource-link-card.is-placeholder{cursor:default;opacity:.9}
.resource-link-card.is-placeholder:hover,.resource-link-card.is-placeholder:focus-visible{transform:none;box-shadow:0 8px 18px rgba(0,0,0,.15)}

.sponsor-directory{padding:22px}
.sponsor-directory h2{margin:0 0 8px;text-align:center;font-size:clamp(1.5rem,2.7vw,2.05rem)}
.sponsor-directory__note{max-width:880px;margin:0 auto 18px;text-align:center;color:#29323a}
.sponsor-name-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.sponsor-name-card{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px;
  border:2px solid rgba(42,49,56,.32);
  border-radius:15px;
  background:linear-gradient(180deg,#eef2f5,#cbd2d8);
  box-shadow:0 7px 15px rgba(0,0,0,.13);
  color:#172028;
  font-size:1.02rem;
  font-weight:900;
  text-align:center;
}

/* ===== Fields & Directions — preserve info-site fields.html presentation ===== */
.fields-page{padding-top:16px;padding-bottom:38px}
.fields-panel{padding:24px;overflow:hidden}
.fields-page .fields-address,
.fields-page .fields-copy,
.fields-page .map-note,
.fields-page .fields-weather-title{text-align:center}
.fields-page .fields-address{margin:0 0 16px;font-size:clamp(1.05rem,2vw,1.35rem);font-weight:800}
.fields-page .fields-address a{color:#17365f}
.fields-page .fields-top-media{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;align-items:stretch;margin:14px auto 10px;max-width:900px}
.fields-page .fields-photo-card{margin:0;background:linear-gradient(180deg,#d7dde2 0%,#b7c0c8 100%);border:4px solid var(--frame);border-radius:18px;padding:10px;box-shadow:0 14px 24px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.35)}
.fields-page .fields-photo-card img{width:100%;display:block;border-radius:10px;object-fit:cover}
.fields-page .fields-photo-card--sign img,
.fields-page .fields-photo-card--aerial img{aspect-ratio:4 / 3}
.fields-page .fields-copy{margin:14px auto 0;max-width:760px;color:var(--text-soft);font-size:clamp(1rem,1.8vw,1.2rem)}
.fields-page .fields-info-panel{margin-top:18px}
.fields-page .map-note{margin:0 0 12px;color:var(--text-soft);font-weight:700}
.fields-page .fields-map-frame{display:block;max-width:760px;margin:0 auto;padding:10px;background:linear-gradient(180deg,#d7dde2 0%,#b7c0c8 100%);border:4px solid var(--frame);border-radius:18px;box-shadow:0 18px 34px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.42),inset 0 -1px 0 rgba(0,0,0,.12)}
.fields-page .fields-map-frame img{width:100%;max-height:420px;object-fit:cover;border-radius:10px}
.fields-page .fields-weather-wrap{max-width:760px;margin:18px auto 0}
.fields-page .fields-weather-title{margin:0 0 12px;font-size:clamp(1.5rem,2.6vw,2rem);color:#11171d}
.fields-page .fields-weather-strip{display:flex;gap:10px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding:4px 2px 8px;scroll-snap-type:x proximity}
.fields-page .fields-weather-strip::-webkit-scrollbar{height:10px}
.fields-page .fields-weather-strip::-webkit-scrollbar-thumb{background:#7f8a95;border-radius:999px}
.fields-page .fields-weather-strip::-webkit-scrollbar-track{background:rgba(255,255,255,.18);border-radius:999px}
.fields-page .weather-card{flex:0 0 86px;scroll-snap-align:start;background:#eef2f5;border:1px solid #aeb7bf;border-radius:14px;padding:10px 8px;text-align:center;box-shadow:inset 0 1px 0 rgba(255,255,255,.35)}
.fields-page .weather-loading,.fields-page .weather-empty{color:var(--text-soft);font-weight:700}
.fields-page .weather-time{font-size:.8rem;font-weight:800;color:#27313a}
.fields-page .weather-icon{margin-top:6px;font-size:1.1rem;line-height:1}
.fields-page .weather-temp{margin-top:6px;font-size:.98rem;font-weight:900;color:#0f1a23}
.fields-page .weather-rain{margin-top:4px;font-size:.74rem;color:#45515c}

@media (max-width:1000px){
  .contact-directory{grid-template-columns:repeat(2,minmax(0,1fr))}
  .sponsor-name-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:700px){
  .about-hero,.contact-directory,.resource-link-grid,.sponsor-directory,.fields-panel{padding:16px;border-radius:18px}
  .contact-directory,.resource-link-grid{grid-template-columns:1fr}
  .sponsor-name-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .sponsor-name-card{min-height:78px;padding:10px;font-size:.94rem}
  .fields-page .fields-address{text-align:center;margin-bottom:12px}
  .fields-page .fields-top-media{gap:10px;max-width:100%}
  .fields-page .fields-photo-card{padding:6px;border-width:3px;border-radius:14px}
  .fields-page .fields-photo-card img{border-radius:8px}
  .fields-page .fields-copy{font-size:1rem}
  .fields-page .fields-map-frame{max-width:100%;padding:8px;border-width:3px}
  .fields-page .fields-map-frame img{max-height:250px}
  .fields-page .fields-weather-wrap{margin-top:16px}
  .fields-page .fields-weather-strip{gap:8px;padding-bottom:10px}
  .fields-page .weather-card{flex:0 0 76px;padding:8px 6px}
  .fields-page .weather-time{font-size:.75rem}
  .fields-page .weather-temp{font-size:.92rem}
}
@media (max-width:430px){
  .sponsor-name-grid{grid-template-columns:1fr}
}

/* ===== About v2: compact board rows and sponsor table ===== */
.contact-list-panel{
  padding:18px 22px;
  background:linear-gradient(180deg,#bcc3c9 0%,#a6aeb5 100%);
  border:2px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
}
.contact-list-panel h2{
  margin:0 0 10px;
  color:#11171d;
  font-size:clamp(1.35rem,2.5vw,1.8rem);
  text-align:center;
}
.contact-row-list{
  max-width:920px;
  margin:0 auto;
  border-top:1px solid rgba(47,57,66,.32);
}
.contact-row{
  display:grid;
  grid-template-columns:minmax(220px,1.35fr) minmax(190px,1fr) minmax(150px,.7fr);
  align-items:center;
  gap:16px;
  padding:10px 8px;
  border-bottom:1px solid rgba(47,57,66,.28);
}
.contact-row__position{
  color:#28343e;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.025em;
  text-transform:uppercase;
}
.contact-row__name{
  color:#11171d;
  font-size:1.05rem;
  font-weight:900;
}
.contact-row__phone{
  justify-self:end;
  color:#0c3157;
  font-size:1rem;
  font-weight:900;
  text-decoration:none;
  white-space:nowrap;
}
.contact-row__phone:hover,.contact-row__phone:focus-visible{text-decoration:underline}
.section-break--inside{margin:20px 0}

.sponsor-directory--table{padding:20px}
.sponsor-table-wrap{
  width:100%;
  overflow-x:auto;
  border:2px solid rgba(42,49,56,.38);
  border-radius:14px;
  background:#eef2f5;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}
.sponsor-table{
  width:100%;
  min-width:980px;
  border-collapse:collapse;
  color:#182029;
  font-size:.9rem;
}
.sponsor-table th,.sponsor-table td{
  padding:10px 11px;
  border-right:1px solid rgba(47,57,66,.22);
  border-bottom:1px solid rgba(47,57,66,.22);
  vertical-align:middle;
  text-align:left;
}
.sponsor-table thead th{
  position:sticky;
  top:0;
  z-index:1;
  background:#263746;
  color:#f2f5f7;
  font-size:.8rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.sponsor-table tbody th{
  width:20%;
  background:#dce2e7;
  color:#10253e;
  font-weight:900;
}
.sponsor-table tbody tr:nth-child(even) td{background:#e7ebee}
.sponsor-table tbody tr:nth-child(odd) td{background:#f4f6f8}
.sponsor-table th:last-child,.sponsor-table td:last-child{border-right:0}
.sponsor-table tbody tr:last-child th,.sponsor-table tbody tr:last-child td{border-bottom:0}
.sponsor-table a{color:#0a3d70;font-weight:800;text-decoration:underline;text-underline-offset:2px}
.sponsor-table__empty{color:#77818a}

@media (max-width:700px){
  .contact-list-panel{padding:14px;border-radius:16px}
  .contact-row{
    grid-template-columns:minmax(0,1fr) auto;
    gap:3px 12px;
    padding:9px 4px;
  }
  .contact-row__position{grid-column:1 / -1;font-size:.76rem}
  .contact-row__name{font-size:1rem}
  .contact-row__phone{font-size:.93rem}
  .sponsor-directory--table{padding:14px}
  .sponsor-table{font-size:.86rem}
}


/* v3: responsive League News separator and footer alignment */
/* League News uses the same centered line-diamond-line motif as other section breaks. */
.news-separator{
  position:static;
  width:100%;
  height:auto;
  margin:15px 0 13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}
.news-separator::before,
.news-separator::after{
  content:"";
  position:static;
  inset:auto;
  display:block;
  width:auto;
  min-width:0;
  height:2px;
  flex:1 1 0;
}
.news-separator::before{background:linear-gradient(90deg,transparent,#98a1a9)}
.news-separator::after{background:linear-gradient(90deg,#98a1a9,transparent)}
.news-separator span{
  flex:0 0 auto;
  width:9px;
  height:9px;
  margin:0;
}

@media (max-width:720px){
  .footer-main{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:18px;
  }
  .footer-nav{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,max-content);
    justify-content:center;
    align-items:center;
    column-gap:18px;
    row-gap:10px;
    text-align:center;
  }
  .footer-nav a{white-space:nowrap}
  .footer-nav a:last-child{grid-column:2}
  .footer-meta{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    justify-items:center;
    justify-content:center;
    gap:5px;
    text-align:center;
  }
}

@media (max-width:360px){
  .footer-nav{column-gap:12px}
}

/* ===== Other Handouts simple download lists ===== */
.handout-download-section{
  max-width:920px;
  margin:0 auto;
}
.handout-download-section h2{
  margin:0 0 12px;
  color:#eef2f5;
  font-size:clamp(1.35rem,2.5vw,1.8rem);
  text-align:left;
}
.handout-download-list{
  list-style:none;
  margin:0;
  padding:0;
}
.handout-download-list li{
  position:relative;
  margin:0;
  padding:0 0 0 24px;
}
.handout-download-list li + li{
  margin-top:8px;
}
.handout-download-list li::before{
  content:"◆";
  position:absolute;
  left:2px;
  top:.68rem;
  color:#c9d0d6;
  font-size:.72rem;
  line-height:1;
}
.handout-download-list a{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:18px;
  padding:10px 2px 11px;
  border-bottom:1px solid rgba(214,220,225,.34);
  color:#eef2f5;
  text-decoration:none;
}
.handout-download-list a:hover .handout-download-list__title,
.handout-download-list a:focus-visible .handout-download-list__title{
  text-decoration:underline;
}
.handout-download-list a:focus-visible{
  outline:2px solid rgba(229,234,238,.7);
  outline-offset:3px;
}
.handout-download-list__title{
  font-weight:900;
  font-size:1.08rem;
}
.handout-download-list__meta{
  flex:0 0 auto;
  color:#d2d8dd;
  font-size:.86rem;
  text-align:right;
}
@media (max-width:640px){
  .handout-download-section h2{text-align:center}
  .handout-download-list li{padding-left:20px}
  .handout-download-list a{
    display:block;
    padding:10px 0 12px;
  }
  .handout-download-list__title,
  .handout-download-list__meta{display:block;text-align:left}
  .handout-download-list__meta{margin-top:3px;font-size:.82rem}
}


/* ===== Section landing pages and Forms workstream ===== */
.section-index__hero{margin-bottom:0}
.section-index-list{list-style:none;max-width:940px;margin:0 auto;padding:0}
.section-index-list li{position:relative;padding-left:25px}
.section-index-list li + li{margin-top:7px}
.section-index-list li::before{content:"◆";position:absolute;left:2px;top:1.05rem;color:#c9d0d6;font-size:.72rem;line-height:1}
.section-index-list a{display:block;padding:13px 3px 14px;border-bottom:1px solid rgba(214,220,225,.34);color:#eef2f5;text-decoration:none}
.section-index-list a:hover .section-index-list__title,.section-index-list a:focus-visible .section-index-list__title{text-decoration:underline}
.section-index-list a:focus-visible{outline:2px solid rgba(229,234,238,.7);outline-offset:3px}
.section-index-list__title{display:block;font-size:1.1rem;font-weight:900}
.section-index-list__description{display:block;margin-top:4px;color:#d1d8dd;font-size:.92rem}
.section-index-empty{max-width:940px;margin:0 auto;padding:18px 20px;border:1px solid rgba(214,220,225,.28);border-radius:14px;background:rgba(255,255,255,.06);color:#eef2f5;text-align:center;font-weight:800}

.primary-action,.secondary-action{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 16px;border:2px solid #31404d;border-radius:12px;font:inherit;font-weight:900;text-decoration:none;cursor:pointer}
.primary-action{background:linear-gradient(180deg,#244a70,#0b2948);color:#fff}
.primary-action:hover,.primary-action:focus-visible{background:linear-gradient(180deg,#315d86,#123a5f)}
.primary-action:disabled{cursor:not-allowed;opacity:.55}
.secondary-action{background:linear-gradient(180deg,#eef2f5,#cbd2d8);color:#142434}

.form-panel{max-width:940px;margin:0 auto;padding:22px;background:linear-gradient(180deg,#bcc3c9,#a6aeb5);border:2px solid var(--border);border-radius:20px;box-shadow:var(--shadow);color:#11171d}
.form-panel h2{margin:0 0 8px;text-align:center;font-size:clamp(1.45rem,2.7vw,2rem)}
.form-guidance{max-width:760px;margin:0 auto 18px;text-align:center;color:#27313a}
.public-form{display:grid;gap:16px}
.public-form fieldset{margin:0;padding:0;border:0;display:grid;gap:14px}
.public-form legend{margin:0 0 8px;font-size:1.08rem;font-weight:900}
.public-form label{display:grid;gap:6px;font-weight:800;color:#1e2932}
.public-form label > span:first-child{font-size:.94rem}
.public-form input[type="text"],.public-form input[type="email"],.public-form input[type="number"],.public-form textarea,.public-form select{width:100%;min-height:44px;border:1px solid #74808a;border-radius:9px;background:#f7f9fa;color:#11171d;font:inherit;padding:9px 11px}
.public-form textarea{min-height:130px;resize:vertical}
.public-form input:focus,.public-form textarea:focus,.public-form select:focus{outline:3px solid rgba(23,72,116,.24);border-color:#174874}
.form-grid{display:grid;gap:14px}
.form-grid--two{grid-template-columns:repeat(2,minmax(0,1fr))}
.form-grid--three{grid-template-columns:repeat(3,minmax(0,1fr))}
.checkbox-row{grid-template-columns:auto minmax(0,1fr)!important;align-items:start;gap:10px!important}
.checkbox-row input{margin-top:.25rem;width:18px;height:18px}
.checkbox-row em{font-weight:600}
.form-date-note{margin:0;color:#3e4851;font-size:.9rem;font-weight:700}
.form-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.form-message{margin:0 0 16px;padding:12px 14px;border-radius:10px;font-weight:800}
.form-message--success{background:#e3efe5;border:1px solid #598066;color:#153a1f}
.form-message--error{background:#f4dfdf;border:1px solid #9b5a5a;color:#5a1717}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-panel--inactive{opacity:.96}
.form-panel--inactive fieldset[disabled]{opacity:.68}

.prayer-submit-link{margin:18px 0 0}
.prayer-list{max-width:980px;margin:0 auto}
.prayer-entry{display:grid;grid-template-columns:86px minmax(0,1fr) 86px;gap:18px;align-items:center;padding:20px;background:linear-gradient(180deg,#bcc3c9,#a6aeb5);border:2px solid var(--border);border-radius:20px;box-shadow:var(--shadow)}
.prayer-entry__symbol{width:78px;height:78px;object-fit:contain;border-radius:14px;background:#fff}
.prayer-entry__content{text-align:center}
.prayer-entry__date{margin:0 0 4px;color:#45515a;font-size:.82rem;font-weight:800}
.prayer-entry h2{margin:0;color:#11171d;font-size:clamp(1.35rem,2.6vw,1.9rem)}
.prayer-entry__reason{margin:4px 0 0;color:#27323a;font-size:1rem;font-weight:900}
.prayer-entry__intention{margin:8px 0 0;color:#1a2228;font-size:1.06rem;line-height:1.45}
.prayer-entry__requester{margin:8px 0 0;color:#45515a;font-size:.78rem;font-weight:800;line-height:1.25}
.prayer-separator{margin:14px 0}

.ticker__item--persistent{font-weight:900}

@media (max-width:700px){
  .section-index-list li{padding-left:21px}
  .form-panel{padding:16px;border-radius:18px}
  .form-grid--two,.form-grid--three{grid-template-columns:1fr}
  .form-actions{align-items:stretch;flex-direction:column}
  .form-actions .primary-action,.form-actions .secondary-action{width:100%}
  .prayer-entry{grid-template-columns:52px minmax(0,1fr) 52px;gap:9px;padding:14px}
  .prayer-entry__symbol{width:48px;height:48px;border-radius:10px}
}
@media (max-width:470px){
  .prayer-entry{grid-template-columns:40px minmax(0,1fr) 40px;gap:6px;padding:12px 8px}
  .prayer-entry__symbol{width:38px;height:38px;border-radius:8px}
  .prayer-entry__intention{font-size:.98rem}
  .prayer-entry__requester{font-size:.74rem}
}


/* Forms v3: temporary external-season embedding proof of concept. */
.season-embed-page{width:100%;margin:0;padding:0}
.season-embed-shell{position:relative;height:calc(100dvh - 76px);min-height:720px;overflow:hidden;background:#eef1f3}
.season-embed-shell--bare{border:0;border-radius:0;box-shadow:none}
.season-embed-shell iframe{position:absolute;left:0;top:-73px;width:100%;height:calc(100% + 73px);border:0;background:#eef1f3}
.season-index-list{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin-top:14px}
.season-index-list a{display:flex;align-items:center;justify-content:center;min-height:54px;padding:10px;border:2px solid #77828c;border-radius:12px;background:linear-gradient(180deg,#d8dde1,#b8c0c6);color:#111820;text-decoration:none;font-weight:900;text-align:center}
.season-index-list a:hover,.season-index-list a:focus-visible{background:linear-gradient(180deg,#eef1f3,#cbd2d8);outline:2px solid #fff;outline-offset:2px}
@media (max-width:860px){
  .season-embed-shell{height:calc(100dvh - 68px);min-height:620px}
  .season-index-list{grid-template-columns:repeat(2,minmax(0,1fr))}
  .season-index-list a:last-child{grid-column:1/-1;width:calc(50% - 5px);justify-self:center}
}

/* ===== Sponsor spotlight rotation preview ===== */
.sponsor-spotlight{
  min-height:104px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:12px;
  background:linear-gradient(180deg,#f3f5f7,#c8ced3);
  color:#1a2025;
  overflow:hidden;
}
.sponsor-spotlight__link{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:inherit;
  text-decoration:none;
}
.sponsor-spotlight__link:not(.sponsor-spotlight__link--plain):hover .sponsor-spotlight__copy strong,
.sponsor-spotlight__link:not(.sponsor-spotlight__link--plain):focus-visible .sponsor-spotlight__copy strong{
  text-decoration:underline;
  text-underline-offset:3px;
}
.sponsor-spotlight__logo-frame{
  flex:0 0 250px;
  width:250px;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4px 8px;
}
.sponsor-spotlight__logo{
  display:block;
  object-fit:contain;
}
.sponsor-spotlight__logo--standard{max-width:210px;max-height:80px}
.sponsor-spotlight__logo--wide{max-width:245px;max-height:66px}
.sponsor-spotlight__logo--square{max-width:145px;max-height:84px}
.sponsor-spotlight__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:3px;
  text-align:left;
}
.sponsor-spotlight__copy strong{font-size:1.05rem;line-height:1.2;color:#192128}
.sponsor-spotlight__copy span{font-size:.88rem;color:#46515a}

@media (max-width:700px){
  .sponsor-spotlight{min-height:122px;padding:8px}
  .sponsor-spotlight__link{gap:10px;flex-direction:column}
  .sponsor-spotlight__logo-frame{flex:0 0 auto;width:220px;height:76px;padding:2px 6px}
  .sponsor-spotlight__logo--standard{max-width:190px;max-height:68px}
  .sponsor-spotlight__logo--wide{max-width:214px;max-height:58px}
  .sponsor-spotlight__logo--square{max-width:124px;max-height:72px}
  .sponsor-spotlight__copy{text-align:center;align-items:center}
  .sponsor-spotlight__copy strong{font-size:.98rem}
  .sponsor-spotlight__copy span{font-size:.82rem}
}
.sponsor-table__logo-cell{min-width:118px;text-align:center}
.sponsor-table__logo-box{
  width:104px;
  height:62px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:3px;
}
.sponsor-table__logo-box img{display:block;max-width:100%;max-height:100%;object-fit:contain}


/* ===== History & Archives launch pages ===== */
.history-page{padding-bottom:40px}
.history-hero{margin-bottom:0}
.history-placeholder{max-width:760px;margin:0 auto;padding:28px 22px;border:2px solid rgba(214,220,225,.32);border-radius:18px;background:rgba(255,255,255,.07);text-align:center;color:#eef2f5;box-shadow:0 8px 20px rgba(0,0,0,.16)}
.history-placeholder p{margin:0;font-size:clamp(1.2rem,2.6vw,1.65rem);font-weight:900}
.history-groups{max-width:980px;margin:0 auto;display:grid;gap:16px}
.history-year-group{padding:18px;border:2px solid #56616b;border-radius:18px;background:linear-gradient(180deg,#bcc3c9,#a6aeb5);box-shadow:var(--shadow);color:#11171d}
.history-year-group h2{margin:0 0 12px;text-align:center;font-size:clamp(1.35rem,2.6vw,1.85rem);color:#10161c}
.history-person-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.history-person{min-width:0;display:flex;flex-direction:column;justify-content:center;gap:3px;padding:11px 12px;border:1px solid rgba(42,49,56,.3);border-radius:11px;background:linear-gradient(180deg,#eef2f5,#d3d9de);text-align:center;color:#11171d}
.history-person strong{font-size:1rem;line-height:1.2}
.history-person span{color:#49545d;font-size:.82rem;font-weight:800}
.history-table-wrap{max-width:820px;margin:0 auto;overflow-x:auto;border:2px solid #56616b;border-radius:18px;box-shadow:var(--shadow)}
.history-table{width:100%;border-collapse:collapse;background:#e7ebee;color:#12181e}
.history-table th,.history-table td{padding:12px 16px;border-bottom:1px solid #aeb6bd;text-align:left}
.history-table th{background:#9fa8b0;font-size:.87rem;letter-spacing:.05em;text-transform:uppercase}
.history-table td:first-child{width:32%;font-weight:900;color:#26343f}
.history-table tbody tr:last-child td{border-bottom:0}
.memorial-list{max-width:980px;margin:0 auto;columns:3 260px;column-gap:14px}
.memorial-entry{break-inside:avoid;display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:0 0 9px;padding:9px 11px;border:1px solid rgba(214,220,225,.26);border-radius:9px;background:rgba(255,255,255,.07);color:#eef2f5}
.memorial-entry__name{font-weight:800}
.memorial-entry__year{flex:0 0 auto;color:#cbd3d9;font-size:.85rem;font-weight:900}
.minutes-selector{max-width:980px;margin:0 auto 18px;padding:14px;border:2px solid rgba(214,220,225,.28);border-radius:16px;background:rgba(255,255,255,.06);color:#eef2f5}
.minutes-selector__year{display:flex;align-items:flex-start;gap:14px;padding:8px 0}
.minutes-selector__year + .minutes-selector__year{border-top:1px solid rgba(214,220,225,.22)}
.minutes-selector__year>span{flex:0 0 62px;padding-top:7px;font-weight:900}
.minutes-selector__links{display:flex;flex-wrap:wrap;gap:7px}
.minutes-selector a{display:inline-flex;align-items:center;min-height:36px;padding:7px 10px;border:1px solid rgba(214,220,225,.4);border-radius:9px;background:rgba(255,255,255,.07);color:#eef2f5;text-decoration:none;font-weight:800;font-size:.88rem}
.minutes-selector a:hover,.minutes-selector a:focus-visible,.minutes-selector a.is-current{background:#d7dde2;color:#12202c;border-color:#d7dde2}
.minutes-document{max-width:980px;margin:0 auto;padding:clamp(18px,3vw,30px);border:2px solid #56616b;border-radius:20px;background:linear-gradient(180deg,#eef2f5,#d2d8dd);box-shadow:var(--shadow);color:#141b21}
.minutes-document__header{text-align:center;padding-bottom:16px;border-bottom:2px solid #a3acb4}
.minutes-document__header p{margin:0 0 5px;font-weight:900;color:#43515c}
.minutes-document__header h2{margin:0;font-size:clamp(1.45rem,3vw,2.15rem)}
.minutes-section{padding:16px 0 0}
.minutes-section + .minutes-section{margin-top:14px;border-top:1px solid #b7bec4}
.minutes-section h3{margin:0 0 7px;font-size:1.02rem;letter-spacing:.035em;text-transform:uppercase;color:#243542}
.minutes-section p{margin:0 0 9px;line-height:1.55}
.minutes-section p:last-child{margin-bottom:0}
@media (max-width:760px){
  .history-person-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .memorial-list{columns:2 220px}
  .minutes-selector__year{display:block}
  .minutes-selector__year>span{display:block;padding:0 0 7px}
}
@media (max-width:500px){
  .history-person-grid{grid-template-columns:1fr}
  .history-year-group{padding:14px}
  .memorial-list{columns:1}
  .history-table th,.history-table td{padding:10px 12px}
  .minutes-selector__links{display:grid;grid-template-columns:1fr}
  .minutes-selector a{justify-content:center;text-align:center}
}

.history-feature-image{max-width:720px;margin:18px auto 4px;text-align:center}
.history-feature-image img{display:block;width:auto;max-width:100%;max-height:340px;margin:0 auto;border:2px solid #56616b;border-radius:16px;background:#fff;box-shadow:var(--shadow);object-fit:contain}
@media (max-width:680px){.history-feature-image img{max-height:260px;border-radius:12px}}


/* History review refinements */
.memorial-key{max-width:980px;margin:0 auto 18px;padding:13px 16px;border:1px solid rgba(214,220,225,.28);border-radius:12px;background:rgba(255,255,255,.06);display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px 22px;color:#eef2f5;text-align:center}
.memorial-key>span{display:inline-flex;align-items:center;gap:7px;font-weight:800}
.memorial-key .memorial-key__note{flex-basis:100%;justify-content:center;color:#cbd3d9;font-size:.86rem;font-weight:700}
.memorial-symbol{display:inline-block;min-width:1em;text-align:center;line-height:1;color:#eef2f5}
.memorial-symbol--president{font-size:.82em}
.memorial-symbol--hof{font-size:.95em}
.memorial-entry__name{display:inline-flex;align-items:center;gap:5px;min-width:0}
.memorial-entry__name .memorial-symbol{flex:0 0 auto}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.minutes-selector--dropdowns{display:flex;flex-wrap:wrap;align-items:end;justify-content:center;gap:14px;padding:16px}
.minutes-selector__control{display:grid;gap:6px;min-width:min(280px,100%)}
.minutes-selector__control label{font-size:.82rem;font-weight:900;letter-spacing:.04em;text-transform:uppercase;color:#dbe1e6}
.minutes-selector__control select{width:100%;min-height:44px;padding:9px 38px 9px 12px;border:1px solid #9aa5ae;border-radius:9px;background:#eef2f5;color:#14212b;font:inherit;font-weight:800}
.minutes-selector__control button{min-height:40px;padding:7px 12px;border:1px solid #d7dde2;border-radius:8px;background:#d7dde2;color:#12202c;font-weight:900}
.minutes-selector--annual .minutes-selector__control{min-width:min(320px,100%)}
.minutes-document__body{padding-top:4px}
.minutes-document__body h3{margin:18px 0 7px;padding-top:14px;border-top:1px solid #b7bec4;font-size:1.02rem;letter-spacing:.035em;text-transform:uppercase;color:#243542}
.minutes-document__body p{margin:10px 0;line-height:1.58}
.minutes-bullets{margin:8px 0 14px;padding-left:1.35rem}
.minutes-bullets li{margin:5px 0;line-height:1.5}
.minutes-review-note{padding:13px 15px;border:1px solid #9aa5ae;border-radius:10px;background:#dde3e7;color:#26343f;font-weight:800}
@media (max-width:680px){
  .memorial-key{display:grid;justify-items:center;gap:9px}
  .minutes-selector--dropdowns{display:grid;grid-template-columns:1fr}
  .minutes-selector__control{min-width:0;width:100%}
}

/* History review v3: header imagery and draft meeting records */
.history-hero .history-feature-image{margin:18px auto 14px}
.history-hero .history-feature-image + .about-intro{margin-top:2px}
.minutes-document--draft{position:relative;overflow:hidden;border-color:#7a2d2d;background:linear-gradient(180deg,#f1f2f3,#d8dcdf)}
.minutes-document--draft::before{
  content:attr(data-draft-watermark);
  position:absolute;
  inset:42% auto auto 50%;
  transform:translate(-50%,-50%) rotate(-24deg);
  z-index:0;
  color:rgba(122,45,45,.10);
  font-size:clamp(2.2rem,7vw,5.4rem);
  font-weight:1000;
  letter-spacing:.08em;
  white-space:nowrap;
  pointer-events:none;
}
.minutes-document--draft>*{position:relative;z-index:1}
.minutes-draft-banner{
  margin:-4px auto 16px;
  padding:9px 14px;
  border:2px solid #7a2d2d;
  border-radius:10px;
  background:#f5dddd;
  color:#6d2020;
  text-align:center;
  font-weight:1000;
  letter-spacing:.055em;
}

/* History photo albums */
.photo-album-index{max-width:860px;margin:0 auto;padding:2px 0 12px}
.photo-album-list{list-style:none;margin:0;padding:0;display:grid;gap:2px}
.photo-album-list li{position:relative;padding:0 0 0 24px;border-bottom:1px solid rgba(214,220,225,.22)}
.photo-album-list li:last-child{border-bottom:0}
.photo-album-list li::before{content:"◆";position:absolute;left:2px;top:50%;transform:translateY(-50%);color:#c7cdd2;font-size:.7rem}
.photo-album-list a{display:block;padding:13px 8px;color:#f1f4f6;text-decoration:none;font-size:1.04rem;font-weight:850}
.photo-album-list a:hover,.photo-album-list a:focus-visible{color:#fff;text-decoration:underline;text-underline-offset:4px}
.photo-album-toolbar{max-width:980px;margin:18px auto 0;display:flex;align-items:end;justify-content:center;gap:16px;flex-wrap:wrap}
.photo-year-selector{display:grid;gap:5px;min-width:min(330px,100%)}
.photo-year-selector label{font-size:.8rem;font-weight:900;letter-spacing:.05em;text-transform:uppercase;color:#d9e0e5}
.photo-year-selector select{width:100%;min-height:44px;padding:9px 38px 9px 12px;border:1px solid #9aa5ae;border-radius:9px;background:#eef2f5;color:#14212b;font:inherit;font-weight:850}
.photo-year-selector button{min-height:40px;border:1px solid #d7dde2;border-radius:8px;background:#d7dde2;color:#12202c;font-weight:900}
.photo-album-back{display:inline-flex;align-items:center;min-height:44px;padding:7px 3px;color:#e6ebef;text-decoration:none;font-weight:850}
.photo-album-back:hover,.photo-album-back:focus-visible{text-decoration:underline;text-underline-offset:4px}
.photo-season-note{max-width:900px;margin:0 auto 18px;padding:12px 15px;border-left:4px solid #aeb7bf;background:rgba(255,255,255,.07);color:#e8edf0;line-height:1.5}
.photo-season-divisions,.photo-other-groups{max-width:1120px;margin:0 auto;display:grid;gap:22px}
.photo-division{--photo-accent:#8e99a3;padding:16px;border:2px solid #57636d;border-left:7px solid var(--photo-accent);border-radius:16px;background:linear-gradient(180deg,rgba(236,240,243,.14),rgba(194,201,207,.08));box-shadow:0 8px 20px rgba(0,0,0,.13)}
.photo-division h2{margin:0 0 14px;color:#f1f4f6;font-size:clamp(1.18rem,2.4vw,1.55rem);letter-spacing:.02em}
.photo-division--red{--photo-accent:#b77878}
.photo-division--silver{--photo-accent:#c6ccd1}
.photo-division--white{--photo-accent:#edf1f3}
.photo-division--gold{--photo-accent:#c6a64b}
.photo-division--gray{--photo-accent:#9da6ae}
.photo-division--blue{--photo-accent:#7799bd}
.photo-division--other{--photo-accent:#aab2b9}
.team-photo-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.team-photo-card{min-width:0;display:flex;flex-direction:column;border:1px solid #7b8790;border-radius:12px;overflow:hidden;background:#e5eaed;color:#172129;text-decoration:none;box-shadow:0 5px 14px rgba(0,0,0,.16);transition:transform .12s ease,box-shadow .12s ease,border-color .12s ease}
a.team-photo-card:hover,a.team-photo-card:focus-visible{transform:translateY(-2px);border-color:#c5cdd3;box-shadow:0 8px 18px rgba(0,0,0,.22);outline:none}
.team-photo-card__image{display:flex;align-items:center;justify-content:center;width:100%;aspect-ratio:4/3;padding:5px;background:#19232b}
.team-photo-card__image img{display:block;width:100%;height:100%;object-fit:contain}
.team-photo-card__name,.team-photo-card>p{display:block;margin:0;padding:10px 11px;text-align:center;font-weight:850;line-height:1.25}
.team-photo-card--pending{box-shadow:none;border-style:dashed;background:rgba(235,239,242,.92)}
.team-photo-card__pending{display:flex;align-items:center;justify-content:center;aspect-ratio:4/3;background:linear-gradient(145deg,#d7dde1,#bcc5cb);color:#5d6871}
.team-photo-card__pending span{font-size:.78rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.photo-lightbox[hidden]{display:none!important}
.photo-lightbox{position:fixed;z-index:3000;inset:0;display:flex;align-items:center;justify-content:center;padding:18px}
.photo-lightbox__scrim{position:absolute;inset:0;background:rgba(4,9,13,.9)}
.photo-lightbox__dialog{position:relative;z-index:1;display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;width:min(1180px,96vw);max-height:94vh;padding:10px 6px 8px;border:1px solid #77838d;border-radius:16px;background:#111a21;box-shadow:0 18px 50px rgba(0,0,0,.48)}
.photo-lightbox figure{min-width:0;margin:0;display:grid;justify-items:center;gap:10px}
.photo-lightbox figure img{display:block;max-width:min(100%,1040px);max-height:78vh;width:auto;height:auto;object-fit:contain;background:#0b1116}
.photo-lightbox figcaption{max-width:900px;padding:0 10px 3px;color:#f0f3f5;text-align:center;font-weight:850;line-height:1.3}
.photo-lightbox__close,.photo-lightbox__nav{border:0;background:transparent;color:#f1f4f6;cursor:pointer;font:inherit}
.photo-lightbox__close{position:absolute;top:6px;right:9px;z-index:2;width:44px;height:44px;font-size:2rem;line-height:1}
.photo-lightbox__nav{width:52px;height:76px;font-size:3.2rem;line-height:1;border-radius:8px}
.photo-lightbox__nav:hover,.photo-lightbox__nav:focus-visible,.photo-lightbox__close:hover,.photo-lightbox__close:focus-visible{background:rgba(255,255,255,.12);outline:2px solid rgba(255,255,255,.55);outline-offset:1px}
body.photo-lightbox-open{overflow:hidden}
@media (max-width:860px){
  .team-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .photo-division{padding:13px}
}
@media (max-width:560px){
  .photo-album-toolbar{display:grid;grid-template-columns:1fr;gap:7px;margin-top:14px}
  .photo-year-selector{min-width:0;width:100%}
  .photo-album-back{justify-self:start;min-height:38px}
  .team-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:9px}
  .photo-division{padding:10px;border-radius:12px;border-left-width:5px}
  .photo-division h2{margin-bottom:10px}
  .team-photo-card__name,.team-photo-card>p{padding:8px 6px;font-size:.86rem}
  .photo-lightbox{padding:7px}
  .photo-lightbox__dialog{grid-template-columns:38px minmax(0,1fr) 38px;width:99vw;padding:42px 0 8px;border-radius:11px}
  .photo-lightbox__nav{width:38px;height:62px;font-size:2.6rem}
  .photo-lightbox__close{top:2px;right:4px}
  .photo-lightbox figure img{max-height:72vh}
  .photo-lightbox figcaption{font-size:.88rem;padding-inline:5px}
}

/* ===== v7 review refinements ===== */
/* Silver League Information: retain the commemorative image while giving the objectives breathing room. */
@media (min-width:721px){
  .information-page .welcome-copy{
    display:grid;
    grid-template-columns:minmax(230px,34%) minmax(0,1fr);
    align-items:start;
    gap:36px;
  }
  .information-page .league-logo-frame{
    float:none;
    width:100%;
    margin:0;
    border-width:8px;
  }
  .information-page .objectives{min-width:0}
}

/* Sponsor Spotlight should hug its content on desktop, while retaining the accepted full mobile treatment. */
@media (min-width:701px){
  .sponsor-slot{
    width:fit-content;
    max-width:100%;
    grid-template-columns:auto auto;
    margin-left:auto;
    margin-right:auto;
  }
  .sponsor-spotlight__link{width:auto}
}
@media (max-width:700px){
  .sponsor-slot{width:100%}
}

/* Sponsor directory links: logo/name may open sponsor website; address opens map. */
.sponsor-table__logo-link{display:inline-block;text-decoration:none}
.sponsor-table__logo-link:hover,.sponsor-table__logo-link:focus-visible{outline:2px solid #0a3d70;outline-offset:3px;border-radius:8px}

/* Photo-album landing list: balanced two-column reading order on wider screens. */
@media (min-width:760px){
  .photo-album-list{
    display:block;
    columns:2;
    column-gap:40px;
    column-rule:1px solid rgba(214,220,225,.13);
  }
  .photo-album-list li{break-inside:avoid-column}
}

/* Team-photo rows: center incomplete rows; four-photo divisions intentionally render 2 + 2. */
.team-photo-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}
.team-photo-grid > .team-photo-card{
  flex:0 1 calc((100% - 28px) / 3);
}
.team-photo-grid--count-4{
  max-width:760px;
  margin-inline:auto;
}
.team-photo-grid--count-4 > .team-photo-card{
  flex-basis:calc((100% - 14px) / 2);
}
@media (max-width:860px){
  .team-photo-grid--count-4{max-width:none}
  .team-photo-grid > .team-photo-card{flex-basis:calc((100% - 14px) / 2)}
}
@media (max-width:560px){
  .team-photo-grid{gap:9px}
  .team-photo-grid > .team-photo-card{flex-basis:calc((100% - 9px) / 2)}
}

/* ===== 2026 Banquet Registration ===== */
.banquet-hero__image{display:block;width:min(220px,62vw);height:auto;margin:16px auto 10px;border-radius:14px;box-shadow:0 9px 22px rgba(0,0,0,.22)}
.banquet-details{max-width:940px;margin:0 auto;padding:20px 22px;border:2px solid #6f7a84;border-radius:18px;background:linear-gradient(180deg,#d7dce0,#bcc3c9);box-shadow:var(--shadow);color:#15202a}
.banquet-details h2{margin:0 0 8px;text-align:center;font-size:clamp(1.35rem,2.5vw,1.85rem)}
.banquet-details__lead{display:flex;flex-wrap:wrap;justify-content:center;gap:5px 15px;text-align:center;font-weight:800}
.banquet-schedule{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:7px 18px;max-width:800px;margin:14px auto 0;padding:12px 14px;border-top:1px solid rgba(23,34,44,.25);border-bottom:1px solid rgba(23,34,44,.25)}
.banquet-schedule span{font-size:.93rem}
.banquet-details__cost,.banquet-details__return{max-width:820px;margin:12px auto 0;text-align:center;line-height:1.45}
.banquet-radio-group{display:flex;align-items:center;gap:16px;min-height:44px;flex-wrap:wrap}
.banquet-field-label{font-size:.94rem;font-weight:800;margin-right:2px}
.public-form .banquet-radio{display:flex;grid-template-columns:none;align-items:center;gap:6px;font-weight:800}
.public-form .banquet-radio input{width:18px;height:18px;margin:0}
.banquet-attendee-table{display:grid;gap:0;border:1px solid #74808a;border-radius:11px;overflow:hidden;background:#edf1f4}
.banquet-attendee-row{display:grid!important;grid-template-columns:minmax(0,1fr) 150px 85px;gap:0!important;align-items:center;border-bottom:1px solid #a4adb5;font-weight:800!important}
.banquet-attendee-row:last-child{border-bottom:0}
.banquet-attendee-row--heading{min-height:34px;background:#34495c;color:#fff;font-size:.82rem;text-transform:uppercase;letter-spacing:.04em}
.banquet-attendee-row--heading span{padding:7px 10px}
.banquet-attendee-row input[type="text"]{border:0!important;border-radius:0!important;min-height:48px!important;background:#fff!important}
.banquet-attendee-type,.banquet-attendee-price{display:flex;align-items:center;min-height:48px;padding:8px 10px;border-left:1px solid #a4adb5}
.banquet-attendee-price{justify-content:flex-end;font-weight:900}
.banquet-total{display:flex;justify-content:flex-end;align-items:center;gap:14px;margin-top:2px;padding:12px 14px;border-top:2px solid #697681;font-size:1.08rem;font-weight:900}
.banquet-total output{min-width:92px;text-align:right;font-size:1.22rem;color:#0b2948}
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
@media (max-width:700px){
  .banquet-details{padding:16px}
  .banquet-schedule{grid-template-columns:1fr;gap:6px}
  .banquet-attendee-row{grid-template-columns:minmax(0,1fr) 76px}
  .banquet-attendee-row--heading span:nth-child(2){display:none}
  .banquet-attendee-row--heading span:nth-child(3){grid-column:2}
  .banquet-attendee-type{display:none}
  .banquet-attendee-price{grid-column:2;border-left:1px solid #a4adb5}
  .banquet-total{justify-content:space-between}
}

/* v7.4: banquet sponsor selector and homepage banquet announcement */
.banquet-sponsor-grid select:disabled{background:#d5d9dd;color:#65717b;cursor:not-allowed;opacity:.78}
.banquet-sponsor-help{display:block;margin-top:5px;color:#4f5c66;font-size:.82rem;font-weight:700}
.news-card__action{margin-top:10px}
