/* =============================================
   SWS SABRES - Custom Styles
   NBA-Inspired Modern Sports League UI
   ============================================= */

/* --- Global Resets & Smooth Scroll --- */
html {
    scroll-behavior: smooth;
}

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

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
@keyframes swsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swsFadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes swsSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes swsSlideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes swsPulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(232, 119, 34, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(232, 119, 34, 0.6), 0 0 80px rgba(232, 119, 34, 0.2);
    }
}

@keyframes swsShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes swsTickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes swsHeroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes swsBadgeBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-10deg);
    }
    50% {
        transform: scale(1.08) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes swsKenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Animate on scroll visibility — JS adds .sws-will-animate first,
   then .sws-visible when in view. Without JS, elements stay fully visible. */
.sws-animate-section.sws-will-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sws-animate-section.sws-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.sws-animate-badge.sws-will-animate {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
}

.sws-animate-badge.sws-visible {
    animation: swsBadgeBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sws-video-card.sws-will-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sws-video-card.sws-visible {
    opacity: 1;
    transform: translateY(0);
}

.sws-video-card:nth-child(2) { transition-delay: 0.15s; }
.sws-video-card:nth-child(3) { transition-delay: 0.3s; }

.sws-featured-large.sws-will-animate {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sws-featured-large.sws-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.sws-featured-small.sws-will-animate {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.sws-featured-small.sws-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.sws-featured-small:nth-child(2) { transition-delay: 0.2s; }

/* =============================================
   STICKY TOP NAV BAR
   ============================================= */
/* The WP template-part <header> wrapper must be sticky for it to work in FSE */
header.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 9999;
    margin-block-end: 0 !important;
}
body.admin-bar header.wp-block-template-part {
    top: 32px;
}

.sws-header {
    z-index: 1000;
    background: var(--wp--preset--color--maroon-dark, #3d1220);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* Topbar image strip — rendered via PHP below the header, in the white gap */
.sws-topbar-strip {
    width: 100%;
    height: 100px;
    background: url('../../../../uploads/2026/04/topbar2.webp') center/cover no-repeat;
    background-color: #0d0d1a;
    position: relative;
    z-index: 100;
    margin: 0 !important;
    padding: 0;
    border: none;
    overflow: hidden;
}

/* --- Sponsor Banner --- */
.sws-sponsor-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    gap: 20px;
}

.sws-sponsor-label {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(232,119,34,0.6);
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -40px;
}

.sws-sponsor-slides {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 100%;
}

.sws-sponsor-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-decoration: none;
    opacity: 0;
    transform: scale(0.92) translateY(8px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.sws-sponsor-slide.sws-sponsor-active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.sws-sponsor-slide.sws-sponsor-exit {
    opacity: 0;
    transform: scale(1.05) translateY(-8px);
}

.sws-sponsor-logo {
    max-height: 88px;
    max-width: 240px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.sws-sponsor-slide:hover .sws-sponsor-logo {
    filter: brightness(1.3);
}

.sws-sponsor-name {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.sws-sponsor-tagline {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.sws-sponsor-slide:hover .sws-sponsor-name {
    color: #e87722;
}

.sws-sponsor-slide:hover .sws-sponsor-tagline {
    color: rgba(255,255,255,0.8);
}

/* Animated glow pulse behind active sponsor */
.sws-sponsor-slides::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 88px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(232,119,34,0.12) 0%, transparent 70%);
    animation: swsSponsorGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes swsSponsorGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

/* Thin accent lines on sides */
.sws-sponsor-banner::before,
.sws-sponsor-banner::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(232,119,34,0.3), transparent);
}
.sws-sponsor-banner::before { left: 60px; }
.sws-sponsor-banner::after { right: 60px; }

/* ---------------------------------------------
   Topbar tier badge — renders next to the sponsor
   logo so a visitor knows instantly whether the
   current slide is a Platinum / Gold / Silver /
   Bronze sponsor. Defined per-tier below.
   --------------------------------------------- */
.sws-sponsor-tier-badge {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    color: #fff;
    background: #777;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    line-height: 1.6;
}
.sws-sponsor-tier-badge--platinum {
    background: linear-gradient(135deg, #e5e8ec 0%, #a9b6c4 50%, #7d8fa4 100%);
    color: #1a2a3a;
    box-shadow: 0 2px 8px rgba(130,150,180,0.55);
}
.sws-sponsor-tier-badge--gold {
    background: linear-gradient(135deg, #f4d96d 0%, #d6a72a 50%, #a77a14 100%);
    color: #3a2a00;
    box-shadow: 0 2px 8px rgba(210,170,40,0.55);
}
.sws-sponsor-tier-badge--silver {
    background: linear-gradient(135deg, #eaeaea 0%, #b8b8b8 50%, #8a8a8a 100%);
    color: #2a2a2a;
    box-shadow: 0 2px 6px rgba(130,130,130,0.45);
}
.sws-sponsor-tier-badge--bronze {
    background: linear-gradient(135deg, #e2a879 0%, #b67440 50%, #7a4a22 100%);
    color: #2e1a08;
    box-shadow: 0 2px 6px rgba(150,90,40,0.55);
}

/* Topbar text-only interstitial slide ("THANK YOU · SPONSORS" etc.) —
   same rotation cadence as a real sponsor slide. */
.sws-sponsor-slide--interstitial {
    cursor: default;
    pointer-events: none;
}
.sws-sponsor-interstitial-text {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e87722;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    padding: 0 14px;
}

/* Kill WP block gap above the topbar and the main content after it */
.sws-topbar-strip + main,
.sws-topbar-strip + .wp-block-group {
    margin-block-start: 0 !important;
}

.sws-header .wp-block-navigation {
    gap: 0;
}

.sws-header .wp-block-navigation a {
    color: #ffffff !important;
    padding: 16px 20px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: relative;
}

.sws-header .wp-block-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e87722;
    transition: width 0.3s ease, left 0.3s ease;
}

.sws-header .wp-block-navigation a:hover::after {
    width: 100%;
    left: 0;
}

.sws-header .wp-block-navigation a:hover {
    background: rgba(232, 119, 34, 0.15);
    color: #e87722 !important;
}

.sws-header .wp-block-site-logo img,
.sws-nav-logo img,
.sws-header__logo img {
    max-height: var(--ol-header-logo-height, 104px) !important;
    width: auto;
}

.sws-nav-logo {
    margin: 0 !important;
    flex-shrink: 0;
}

.sws-nav-logo figure,
.sws-nav-logo.wp-block-image {
    margin: 0;
}

/* =============================================
   SECTION 1: HERO CAROUSEL
   Now built from native WordPress Cover blocks
   (see templates/front-page.html). The rules
   under "COVER-BLOCK BRIDGES" at the end of this
   section let the Cover block's internal markup
   reuse the existing .sws-hero-* styles without
   hand-coded HTML in the template.
   ============================================= */
.sws-hero-carousel {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    max-height: 900px;
    overflow: hidden;
    background: #1a1a2e;
}

/* The Cover block renders its own wrapper — make sure our own
   carousel section is the positioning parent for slides. */
.sws-hero-carousel.wp-block-group {
    padding: 0;
    margin: 0;
}

.sws-hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.sws-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.sws-hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.sws-hero-slide.active .sws-hero-content {
    animation: swsHeroFadeIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sws-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    animation: swsKenBurns 15s ease-in-out infinite alternate;
}

.sws-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(61, 18, 32, 0.8) 40%, rgba(90, 26, 42, 0.5) 70%, transparent 100%),
        linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 40%);
    z-index: 2;
}

.sws-hero-content {
    position: absolute;
    bottom: 12%;
    left: 6%;
    z-index: 3;
    max-width: 700px;
}

.sws-hero-label {
    display: inline-block;
    background: #e87722;
    color: #fff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 18px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sws-hero-headline {
    color: #ffffff;
    font-family: 'Anton', 'Barlow Condensed', 'Oswald', Impact, sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 400; /* Anton is a single-weight display face */
    line-height: 1.0;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.005em;
}

.sws-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    max-width: 550px;
}

.sws-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sws-btn-hero {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.sws-btn-hero-primary {
    background: #e87722;
    color: #ffffff;
    border: 2px solid #e87722;
}

.sws-btn-hero-primary:hover {
    background: #ff8c38;
    border-color: #ff8c38;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 119, 34, 0.5);
    color: #ffffff;
}

.sws-btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.sws-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.sws-btn-glow {
    animation: swsPulseGlow 2.5s ease-in-out infinite;
}

/* Carousel arrows */
.sws-hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.sws-hero-arrow {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.sws-hero-arrow:hover {
    background: #e87722;
    border-color: #e87722;
    transform: scale(1.1);
}

/* Carousel dots */
.sws-hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.sws-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sws-hero-dot.active {
    background: #e87722;
    border-color: #e87722;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(232, 119, 34, 0.6);
}

.sws-hero-dot:hover {
    border-color: #e87722;
}

/* ---------- COVER-BLOCK BRIDGES ----------
   These rules adapt the WP Cover block's built-in
   markup (.wp-block-cover__image-background, etc.)
   so the hero carousel keeps its original look
   after the Cover-block conversion. */

/* Each slide is a Cover block; make it a full-bleed layer. */
.sws-hero-carousel .sws-hero-slide.wp-block-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
}

/* Cover's <img> fills the slide like the old background-image. */
.sws-hero-slide .wp-block-cover__image-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    animation: swsKenBurns 15s ease-in-out infinite alternate;
    z-index: 1;
}

/* Dark gradient overlay for text legibility (replaces old .sws-hero-gradient div).
   Cover's own span overlay sits at opacity 0 (dimRatio:0) — we paint our own. */
.sws-hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(61, 18, 32, 0.8) 40%, rgba(90, 26, 42, 0.5) 70%, transparent 100%),
        linear-gradient(to top, rgba(26, 26, 46, 0.95) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

/* Cover's default inner container is centered — let
   .sws-hero-content control positioning itself. */
.sws-hero-slide .wp-block-cover__inner-container {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    z-index: 3;
}

/* Hero buttons: style native Button-block links like old <a class="sws-btn-hero-*"> */
.sws-hero-buttons.wp-block-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.sws-hero-buttons .wp-block-button { margin: 0; }

.sws-hero-buttons .wp-block-button .wp-block-button__link {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    line-height: 1;
}

.sws-hero-buttons .wp-block-button.sws-btn-hero-primary .wp-block-button__link {
    background: #e87722;
    color: #ffffff;
    border: 2px solid #e87722;
}
.sws-hero-buttons .wp-block-button.sws-btn-hero-primary .wp-block-button__link:hover {
    background: #ff8c38;
    border-color: #ff8c38;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 119, 34, 0.5);
    color: #ffffff;
}

.sws-hero-buttons .wp-block-button.sws-btn-hero-outline .wp-block-button__link {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.sws-hero-buttons .wp-block-button.sws-btn-hero-outline .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* The Site Editor (Appearance > Editor) doesn't load this stylesheet,
   so slides render stacked vertically there — that's intentional so
   volunteers can edit each slide independently. On the live site
   they stack absolutely and fade via the JS below. */

/* =============================================
   SECTION 2: SCORE TICKER
   ============================================= */
.sws-score-ticker {
    display: flex;
    align-items: stretch;
    background: var(--ol-ticker-bg, #0d0d1a);
    border-bottom: 3px solid #e87722;
    overflow: hidden;
    position: relative;
    /* Phase 4a: OL-driven typography defaults (child elements may override) */
    font-family: var(--ol-ticker-font-family, Inter, system-ui, sans-serif);
    font-size: var(--ol-ticker-font-size, 14px);
    color: var(--ol-ticker-font-color, #ffffff);
}

.sws-ticker-label {
    display: flex;
    align-items: center;
    background: #e87722;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 12px 20px;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.sws-ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    bottom: 0;
    width: 24px;
    background: #e87722;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.sws-ticker-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.sws-ticker-content {
    display: flex;
    align-items: stretch;
    animation: swsTickerScroll 240s linear infinite;
    animation-duration: var(--ol-ticker-duration, 240s);
    width: max-content;
    height: 100%;
}

.sws-ticker-content:hover {
    animation-play-state: paused;
}

.sws-ticker-game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    transition: background 0.2s ease;
    cursor: pointer;
}

.sws-ticker-game:hover {
    background: rgba(232, 119, 34, 0.1);
}

.sws-ticker-status {
    /* font-size as em so it scales with the OL-controlled parent font-size */
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 0.85em;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}

.sws-ticker-final {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.sws-ticker-team {
    color: var(--ol-ticker-font-color, rgba(255, 255, 255, 0.85));
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.sws-ticker-score {
    color: var(--ol-ticker-font-color, rgba(255, 255, 255, 0.9));
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 1.4em;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.sws-ticker-score.sws-ticker-win {
    color: var(--ol-ticker-win-color, #e87722);
}

.sws-ticker-divider {
    color: var(--ol-ticker-separator-color, rgba(255, 255, 255, 0.25));
    font-weight: 300;
}

/* Aug 2026 — two-line result: match score (row 1) + per-set breakdown (row 2).
   The set line only renders for results whose game_result carries a multi-item
   "(…)" breakdown. Centered so it spans the area under BOTH scores. */
.sws-ticker-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1.15;
}
.sws-ticker-sets {
    display: block;
    text-align: center;
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: color-mix(in srgb, var(--ol-ticker-font-color, #ffffff) 74%, transparent);
    white-space: nowrap;
}

/* Aug 2026 — TEST: logo matchup mode ([mstw_score_ticker matchup_style=logos]).
   Revert by dropping the matchup_style att; the name-based markup is unchanged. */
.sws-ticker-matchup--logos {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sws-ticker-matchup--logos .sws-ticker-side {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sws-ticker-logo {
    height: 26px;
    width: auto;
    max-width: 44px;
    object-fit: contain;
    display: block;
}
.sws-ticker-logo.sws-ticker-win {
    filter: drop-shadow(0 0 5px var(--ol-ticker-win-color, #e87722));
}

/* Phase 4D: team level badge pill — color driven by OL badge_color setting */
.sws-ticker-badge {
    display: inline-block;
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 4px;
    padding: 1px 5px;
    background: color-mix(in srgb, var(--ol-ticker-badge-color, #e87722) 25%, transparent);
    color: var(--ol-ticker-badge-color, #e87722);
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.4;
}

/* Feb 2026 ticker refresh — level banner + sport icon matched to the
   homepage slider card style. */
.sws-ticker-level {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    background: #5c1230;
    color: #fff;
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 0.62em;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 3px;
    line-height: 1;
    white-space: nowrap;
}
.sws-ticker-sport {
    width: 16px;
    height: 16px;
    opacity: 0.85;
    flex-shrink: 0;
}
.sws-ticker-game[data-sport] .sws-ticker-team:first-of-type {
    /* Slightly tighten SWS label spacing now that level+icon precede it */
    margin-left: 2px;
}

/* =============================================
   SECTION 3: UPCOMING GAMES / SCHEDULE
   ============================================= */
.sws-schedule-section {
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.sws-section-header .sws-view-all a {
    color: #e87722;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.sws-section-header .sws-view-all a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e87722;
    transition: width 0.3s ease;
}

.sws-section-header .sws-view-all a:hover {
    color: #5a1a2a;
}

.sws-section-header .sws-view-all a:hover::after {
    width: 100%;
}

/* Schedule Tabs */
.sws-schedule-tabs {
    display: flex;
    gap: 0;
    border-bottom: 3px solid #1a1a2e;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sws-schedule-tabs::-webkit-scrollbar {
    display: none;
}

.sws-tab {
    padding: 0.85rem 1.5rem;
    border: none;
    background: transparent;
    color: #888;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.sws-tab:hover {
    color: #5a1a2a;
    background: rgba(90, 26, 42, 0.05);
}

.sws-tab.active {
    color: #e87722;
    border-bottom-color: #e87722;
    background: rgba(232, 119, 34, 0.05);
}

.sws-schedule-panels .sws-panel {
    display: none;
}

.sws-schedule-panels .sws-panel.active {
    display: block;
    overflow-x: auto;
    max-width: 100%;
    animation: swsFadeInUp 0.4s ease;
}

/* MSTW slider constraints */
.sws-schedule-section .mstw-ss-slider,
.sws-schedule-section table {
    max-width: 100%;
    overflow-x: auto;
}

.sws-schedule-section .slick-dots {
    display: none !important;
}

/* Schedule table styling */
.sws-schedule-section table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sws-schedule-section thead {
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
}

.sws-schedule-section thead tr th {
    color: #ffffff !important;
    padding: 14px 20px;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    border: none;
}

.sws-schedule-section tbody tr td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.sws-schedule-section tbody tr:nth-child(odd) {
    background: #faf8f6;
}

.sws-schedule-section tbody tr:hover {
    background: rgba(232, 119, 34, 0.08);
}

/* =============================================
   SECTION 4: FEATURED STORIES
   ============================================= */
.sws-featured-stories {
    background: #f5f0eb;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sws-diagonal-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: #1a1a2e;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    z-index: 2;
}

.sws-diagonal-top.sws-diagonal-light {
    background: #f5f0eb;
}

.sws-featured-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
}

.sws-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sws-section-title {
    font-family: 'Anton', 'Barlow Condensed', 'Oswald', Impact, sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400; /* Anton is single-weight; visual heaviness comes from the face */
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a1a2e;
    margin: 0;
    position: relative;
}

.sws-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e87722;
    margin-top: 0.5rem;
}

.sws-section-title-center {
    text-align: center;
}

.sws-section-title-center::after {
    margin-left: auto;
    margin-right: auto;
}

.sws-title-light {
    color: #ffffff;
}

.sws-section-link {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sws-section-link:hover {
    color: #5a1a2a;
}

.sws-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin: -0.5rem 0 2.5rem;
}

.sws-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

.sws-featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    min-height: 500px;
}

.sws-featured-large,
.sws-featured-small {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.sws-featured-large {
    grid-row: 1 / 2;
}

.sws-featured-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sws-featured-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sws-featured-large:hover .sws-featured-img,
.sws-featured-small:hover .sws-featured-img {
    transform: scale(1.08);
}

.sws-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.95) 0%,
        rgba(26, 26, 46, 0.6) 40%,
        transparent 70%
    );
    z-index: 2;
}

.sws-story-badge {
    display: inline-block;
    align-self: flex-start;
    background: #e87722;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 14px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.sws-story-title {
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    text-transform: uppercase;
}

.sws-featured-large .sws-story-title {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.sws-story-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.sws-featured-small .sws-story-title {
    font-size: 1.1rem;
}

/* =============================================
   SECTION 5: OUR SPORTS
   ============================================= */
.sws-sports-showcase {
    background: #ffffff;
    padding: 5rem 0;
}

.sws-sports-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sws-sports-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sws-sport-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sws-sport-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sws-sport-showcase-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sws-sport-showcase-card:hover .sws-sport-showcase-img {
    transform: scale(1.1);
}

.sws-sport-showcase-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.98) 0%,
        rgba(26, 26, 46, 0.7) 35%,
        rgba(90, 26, 42, 0.3) 65%,
        transparent 100%
    );
    z-index: 1;
}

.sws-sport-showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
    color: #ffffff;
}

.sws-sport-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.sws-sport-showcase-content h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
    color: #ffffff;
}

.sws-sport-showcase-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.sws-sport-cta {
    display: inline-block;
    color: #e87722;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease, letter-spacing 0.3s ease;
}

.sws-sport-showcase-card:hover .sws-sport-cta {
    color: #ff8c38;
    letter-spacing: 0.15em;
}

/* ---------------------------------------------
   Our Sports — Cover-block bridges
   The old markup was `<a class="sws-sport-showcase-card">`
   wrapping a background div. The new markup is a
   core/cover block with a native image background
   and a native wp:button for the CTA, so volunteers
   can swap the image/icon/heading/copy/link from the
   Site Editor. These rules keep the 2-column card
   grid, 450px height, gradient overlay, and hover
   animation visually identical.
   --------------------------------------------- */
.sws-sports-cards .wp-block-cover.sws-sport-showcase-card {
    min-height: 450px;
    height: 450px;
    padding: 0 !important;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sws-sports-cards .wp-block-cover.sws-sport-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sws-sports-cards .wp-block-cover.sws-sport-showcase-card .wp-block-cover__image-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.sws-sports-cards .wp-block-cover.sws-sport-showcase-card:hover .wp-block-cover__image-background {
    transform: scale(1.1);
}

/* Gradient overlay replacing the original .sws-sport-showcase-gradient div.
   z-index: 2 sits ABOVE the image (z=0) and the cover block's built-in dim
   span (z=1) but BELOW the inner-container (z=3). This darkens the bottom
   half of the photo so the heading/copy/CTA stay readable, while keeping
   the top of the image clean for visual interest. */
.sws-sports-cards .wp-block-cover.sws-sport-showcase-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13, 13, 26, 0.95) 0%,
        rgba(26, 26, 46, 0.85) 40%,
        rgba(90, 26, 42, 0.4) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Force the inner-container ABOVE the ::after gradient. WordPress 6.9 core
   CSS sets z-index: 1 on .wp-block-cover__inner-container with high
   specificity, so we use !important to win the cascade and ensure text
   renders on top of the gradient overlay. */
.sws-sports-cards .wp-block-cover.sws-sport-showcase-card .wp-block-cover__inner-container {
    position: absolute !important;
    inset: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    z-index: 3 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Inner content block pinned to the bottom of the cover. */
.sws-sports-cards .sws-sport-showcase-content.wp-block-group {
    padding: 2.5rem;
    color: #ffffff;
    background: transparent;
}

/* Emoji icon paragraph. */
.sws-sports-cards .sws-sport-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0 0 0.75rem;
}

/* Heading inside the cover. */
.sws-sports-cards .sws-sport-showcase-content .wp-block-heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
    color: #ffffff;
}

.sws-sports-cards .sws-sport-showcase-content p:not(.sws-sport-icon) {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

/* CTA button styled as text-link (matches the original .sws-sport-cta span). */
.sws-sports-cards .sws-sport-cta-wrap .wp-block-button.sws-sport-cta {
    margin: 0;
}

.sws-sports-cards .sws-sport-cta-wrap .wp-block-button.sws-sport-cta .wp-block-button__link {
    background: transparent;
    color: #e87722;
    padding: 0;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    transition: color 0.2s ease, letter-spacing 0.3s ease;
}

.sws-sports-cards .wp-block-cover.sws-sport-showcase-card:hover .sws-sport-cta-wrap .wp-block-button__link {
    color: #ff8c38;
    letter-spacing: 0.15em;
}

/* Make the entire card clickable by stretching the CTA anchor. */
.sws-sports-cards .wp-block-cover.sws-sport-showcase-card .sws-sport-cta-wrap .wp-block-button__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
}

/* =============================================
   SECTION 6: STATE CHAMPIONS
   ============================================= */
.sws-champions-section {
    background: #0d0d1a;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sws-champions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 119, 34, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(90, 26, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(232, 119, 34, 0.05) 0%, transparent 40%);
}

.sws-champions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.sws-champ-heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #e87722;
    text-align: center;
    margin: 0 0 3rem;
    position: relative;
}

.sws-champ-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e87722, transparent);
    margin: 1rem auto 0;
}

.sws-champions-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.sws-champ-badge {
    position: relative;
    text-align: center;
    transition: transform 0.4s ease;
}

.sws-champ-badge:hover {
    transform: scale(1.08) translateY(-5px);
}

.sws-champ-badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 25px rgba(232, 119, 34, 0.35));
    transition: filter 0.4s ease;
}

.sws-champ-badge:hover img {
    filter: drop-shadow(0 8px 40px rgba(232, 119, 34, 0.6));
}

/* Phase 4D: per-badge title from media attachment title */
.sws-champ-badge-title,
.sws-champ-badge figcaption {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-top: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.sws-champ-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: swsPulseGlow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sws-champ-badge:hover .sws-champ-glow {
    opacity: 1;
}

/* ---------------------------------------------
   State Champions — Gallery block bridges
   These rules make a native core/gallery with
   core/image children render identically to the
   original hand-coded badge layout so volunteers
   can add/remove/reorder badges from the Site
   Editor without code changes.
   Selectors include WP's auto-added layout class
   (.wp-block-gallery-is-layout-flex) so our grid
   wins without needing !important.
   --------------------------------------------- */
.sws-champions-badges.wp-block-gallery,
.sws-champions-badges.wp-block-gallery.is-layout-flex,
.sws-champions-badges.wp-block-gallery.wp-block-gallery-is-layout-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

/* Defeat WP core's .wp-block-gallery.has-nested-images figure.wp-block-image
   width rule (calc(50% - gap/2)) — our grid parent gives each item its own
   track so figures should stretch to 100% of the grid cell. Using !important
   to win against core's specificity without chaining a dozen class names. */
.sws-champions-badges.wp-block-gallery .wp-block-image,
.sws-champions-badges.wp-block-gallery.has-nested-images figure.wp-block-image {
    margin: 0 !important;
    width: 100% !important;
    flex-basis: auto !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    display: block !important;
    max-width: 100% !important;
}

.sws-champions-badges.wp-block-gallery .wp-block-image img,
.sws-champions-badges.wp-block-gallery.has-nested-images figure.wp-block-image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 0; /* override theme default .5rem on core/image */
    filter: drop-shadow(0 4px 25px rgba(232, 119, 34, 0.35));
    transition: filter 0.4s ease;
    max-width: 100% !important;
}

.sws-champions-badges.wp-block-gallery .wp-block-image:hover img {
    filter: drop-shadow(0 8px 40px rgba(232, 119, 34, 0.6));
    transform: scale(1.04) translateY(-4px);
}

/* Glow ring recreated via ::before since the old .sws-champ-glow
   div was dropped when switching to the native gallery. */
.sws-champions-badges.wp-block-gallery .wp-block-image {
    position: relative;
    transition: transform 0.4s ease;
}

.sws-champions-badges.wp-block-gallery .wp-block-image::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 119, 34, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: swsPulseGlow 3s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.sws-champions-badges.wp-block-gallery .wp-block-image:hover::before {
    opacity: 1;
}

.sws-champions-badges.wp-block-gallery .wp-block-image img {
    position: relative;
    z-index: 1;
}

/* Staggered scroll-in: 0.1s / 0.3s / 0.5s matches original cadence */
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(1) { animation-delay: 0.1s; }
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(2) { animation-delay: 0.3s; }
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(3) { animation-delay: 0.5s; }
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(4) { animation-delay: 0.7s; }
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(5) { animation-delay: 0.9s; }
.sws-champions-badges.wp-block-gallery .wp-block-image.sws-animate-badge:nth-child(6) { animation-delay: 1.1s; }

@media (max-width: 768px) {
    .sws-champions-badges.wp-block-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sws-champions-badges.wp-block-gallery {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   SECTION 8: VIDEO HIGHLIGHTS
   ============================================= */
.sws-video-section {
    background: #1a1a2e;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sws-video-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(90, 26, 42, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(232, 119, 34, 0.08) 0%, transparent 50%);
}

.sws-video-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.sws-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sws-video-card {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.sws-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.sws-video-thumb {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sws-video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.sws-video-card:hover .sws-video-thumb::before {
    background: rgba(0, 0, 0, 0.15);
}

.sws-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(232, 119, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.sws-play-btn svg {
    margin-left: 3px;
}

.sws-video-card:hover .sws-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #e87722;
    box-shadow: 0 0 30px rgba(232, 119, 34, 0.6);
}

.sws-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.sws-video-info {
    padding: 1.25rem;
}

.sws-video-badge {
    display: inline-block;
    background: rgba(232, 119, 34, 0.2);
    color: #e87722;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.sws-video-info h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.sws-video-card:hover .sws-video-info h3 {
    color: #e87722;
}

/* =============================================
   SECTION 9: SPONSORS
   ============================================= */
.sws-sponsors-section-v2 {
    background: #f5f0eb;
    padding: 4rem 0;
    border-top: 1px solid #e8e4e0;
    border-bottom: 1px solid #e8e4e0;
}

.sws-sponsors-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.sws-sponsors-heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 2rem;
}

.sws-sponsors-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.sws-sponsors-img-wrap:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sws-sponsors-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.sws-sponsors-img-wrap:hover img {
    transform: scale(1.02);
}

.sws-sponsors-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e87722;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sws-sponsors-link:hover {
    color: #5a1a2a;
}

/* ---------------------------------------------
   Sponsors — native block bridges
   Overrides so the native Image + Button blocks
   keep the rounded banner + subtle hover + text-
   link CTA from the original markup.
   --------------------------------------------- */
.sws-sponsors-inner > .sws-sponsors-img-wrap.wp-block-image {
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    max-width: 100%;
}

.sws-sponsors-inner > .sws-sponsors-img-wrap.wp-block-image:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sws-sponsors-inner > .sws-sponsors-img-wrap.wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.sws-sponsors-inner > .sws-sponsors-img-wrap.wp-block-image:hover img {
    transform: scale(1.02);
}

/* CTA rendered as a button block but styled as a text-link. */
.sws-sponsors-cta-wrap {
    justify-content: center;
    margin-top: 1.5rem;
}

.sws-sponsors-cta-wrap .wp-block-button.sws-sponsors-link .wp-block-button__link {
    background: transparent;
    color: #e87722;
    padding: 0;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 0;
    transition: color 0.2s ease;
}

.sws-sponsors-cta-wrap .wp-block-button.sws-sponsors-link .wp-block-button__link:hover {
    background: transparent;
    color: #5a1a2a;
}

/* ---------------------------------------------
   Sponsors — rotating marquee ([sws_sponsors_marquee])
   Uniform white cards so mixed transparent/opaque
   logos read consistently. Auto-scrolls horizontally
   with a duplicated track so it loops seamlessly.
   Respects prefers-reduced-motion and pauses on hover.
   --------------------------------------------- */
.sws-sponsors-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 2.5rem auto 0;
    /* Soft fade at both edges so cards don't hard-clip. */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.sws-sponsors-marquee__track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: sws-sponsors-scroll var(--sws-sponsors-speed, 60s) linear infinite;
    will-change: transform;
}

.sws-sponsors-marquee:hover .sws-sponsors-marquee__track {
    animation-play-state: paused;
}

.sws-sponsors-marquee__set {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
}

@keyframes sws-sponsors-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .sws-sponsors-marquee__track {
        animation: none;
        /* Let the user scroll manually if motion is reduced. */
        flex-wrap: wrap;
        justify-content: center;
    }
    .sws-sponsors-marquee {
        overflow: auto;
    }
}

/* Individual sponsor card — uniform size, white background,
   logo area on top and a small tier/tagline label strip on the bottom. */
.sws-sponsor-card {
    flex: 0 0 auto;
    width: 280px;
    height: 200px;
    background: #ffffff;
    border: 1px solid #e8e4e0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    padding: 14px 18px 12px;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.sws-sponsor-card__logo-wrap {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 2px 0 4px;
}

.sws-sponsor-card__logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    /* Subtle desaturate so mixed-color logos feel cohesive; lifts on hover. */
    filter: saturate(0.95);
    transition: filter 0.25s ease, transform 0.25s ease;
}

/* Tier / tagline label strip at the bottom of each card. Admins control
   the text via Sponsors → Edit: "Short tagline" field, or the Sponsor Tier
   box (defaults to "Gold Sponsor" etc.), or "Proud Sabres Supporter" for
   sponsors with neither. Color is driven by tier class. */
.sws-sponsor-card__label {
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8a8a;
    padding: 7px 6px 0;
    border-top: 1px solid #f0ece7;
    margin-top: 6px;
    line-height: 1.2;
    /* Keep label to one line with ellipsis if the admin types something long. */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sws-sponsor-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.sws-sponsor-card-link:hover .sws-sponsor-card,
.sws-sponsor-card-link:focus-visible .sws-sponsor-card {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
    border-color: #d8d0c6;
}

.sws-sponsor-card-link:hover .sws-sponsor-card__logo,
.sws-sponsor-card-link:focus-visible .sws-sponsor-card__logo {
    filter: saturate(1);
    transform: scale(1.03);
}

/* Tier accents — now substantially more prominent than a simple rim.
   Each card renders a BOLD tier ribbon at the top plus a tier-colored
   border, tier-colored label strip, and subtle tier-colored glow so
   volunteers + visitors can tell Platinum from Bronze at a glance. */
.sws-sponsor-card.sws-sponsor-card--platinum {
    border-color: #a9b6c4;
    border-width: 2px;
    box-shadow: 0 4px 14px rgba(60,80,110,0.18);
}
.sws-sponsor-card.sws-sponsor-card--platinum .sws-sponsor-card__label { color: #1a2a3a; border-top-color: #dfe6ee; font-weight: 800; }

.sws-sponsor-card.sws-sponsor-card--gold {
    border-color: #d6a72a;
    border-width: 2px;
    box-shadow: 0 4px 14px rgba(190,155,60,0.22);
}
.sws-sponsor-card.sws-sponsor-card--gold .sws-sponsor-card__label     { color: #7a5a0e; border-top-color: #f1e2ac; font-weight: 800; }

.sws-sponsor-card.sws-sponsor-card--silver {
    border-color: #b8b8b8;
    border-width: 2px;
    box-shadow: 0 3px 12px rgba(130,130,130,0.18);
}
.sws-sponsor-card.sws-sponsor-card--silver .sws-sponsor-card__label   { color: #4d4d4d; border-top-color: #e4e4e4; font-weight: 800; }

.sws-sponsor-card.sws-sponsor-card--bronze {
    border-color: #b67440;
    border-width: 2px;
    box-shadow: 0 3px 12px rgba(150,90,40,0.18);
}
.sws-sponsor-card.sws-sponsor-card--bronze .sws-sponsor-card__label   { color: #6a3a14; border-top-color: #eccfb4; font-weight: 800; }

.sws-sponsor-card.sws-sponsor-card--untiered .sws-sponsor-card__label { color: #8a8a8a; }

/* ---------- Tier ribbon (top of card) ----------
   The primary visual distinguisher for sponsor levels. Metallic gradient
   pills that read PLATINUM / GOLD / SILVER / BRONZE across the top of
   each sponsor card. */
.sws-sponsor-card__tier-ribbon {
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px 3px;
    border-radius: 999px;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: -4px 0 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
    line-height: 1.4;
    white-space: nowrap;
}
.sws-sponsor-card__tier-icon { font-size: 0.75rem; line-height: 1; }
.sws-sponsor-card__tier-ribbon--platinum {
    background: linear-gradient(135deg, #eef1f5 0%, #a9b6c4 55%, #6c7f93 100%);
    color: #1a2a3a;
}
.sws-sponsor-card__tier-ribbon--gold {
    background: linear-gradient(135deg, #fbe681 0%, #d6a72a 55%, #8e6a10 100%);
    color: #3a2a00;
}
.sws-sponsor-card__tier-ribbon--silver {
    background: linear-gradient(135deg, #f2f2f2 0%, #b8b8b8 55%, #7e7e7e 100%);
    color: #2a2a2a;
}
.sws-sponsor-card__tier-ribbon--bronze {
    background: linear-gradient(135deg, #efbb8a 0%, #b67440 55%, #6e3e18 100%);
    color: #2e1a08;
}

/* ---------- Interstitial "between-logo" card ----------
   Text-only Sabres-branded card that rotates through the admin-editable
   pool from Sponsors → Settings → "Between-logo messages". */
.sws-sponsor-card.sws-sponsor-card--interstitial {
    background: linear-gradient(135deg, #5a1a2a 0%, #3a0e1a 100%);
    border-color: #e87722;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    position: relative;
    overflow: hidden;
}
.sws-sponsor-card.sws-sponsor-card--interstitial::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(232,119,34,0.18), transparent 60%);
    pointer-events: none;
}
.sws-sponsor-card__interstitial-text {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .sws-sponsor-card { width: 220px; height: 170px; padding: 12px 14px 10px; }
}
@media (max-width: 640px) {
    .sws-sponsor-card { width: 190px; height: 150px; padding: 10px 12px 8px; }
    .sws-sponsor-card__label { font-size: 0.68rem; letter-spacing: 0.12em; padding-top: 5px; margin-top: 4px; }
    .sws-sponsors-marquee__track { gap: 0.9rem; }
    .sws-sponsors-marquee__set   { gap: 0.9rem; }
}

/* ---------------------------------------------
   Sponsors — tiered grid ([sws_sponsors_grid])
   Used on the /community/sponsorship/ page so each
   tier gets its own row with tier heading.
   --------------------------------------------- */
.sws-sponsors-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sws-sponsors-grid__tier {
    margin: 2rem 0 2.5rem;
}

.sws-sponsors-grid__tier-heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5a1a2a;
    text-align: center;
    margin: 0 0 1rem;
}

.sws-sponsors-grid__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    justify-items: center;
}

.sws-sponsors-grid__cards .sws-sponsor-card {
    width: 100%;
    max-width: 240px;
}

/* =============================================
   SECTION 10: JOIN CTA
   ============================================= */
/* Join CTA — now a native wp:cover block. The cover block handles the
   background image and overlay natively. These rules add typography and
   spacing refinements on top of the wp:cover defaults. */
.sws-join-cta {
    min-height: 450px;
}

.sws-join-cta h2 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin: 0 0 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sws-join-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0 0 2rem;
}

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

/* =============================================
   SHARED BUTTON STYLES
   ============================================= */
.wp-block-button__link.has-orange-background-color {
    transition: all 0.3s ease !important;
}

.wp-block-button__link.has-orange-background-color:hover {
    background: #ff8c38 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}

.is-style-outline .wp-block-button__link {
    border-color: #e87722 !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.is-style-outline .wp-block-button__link:hover {
    background: #e87722 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.sws-footer {
    background: #0d0d1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
}

.sws-footer h3,
.sws-footer h4 {
    color: #e87722 !important;
    margin-bottom: 1rem;
}

.sws-footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sws-footer a:hover {
    color: #e87722 !important;
}

.sws-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* =============================================
   LATEST NEWS (from wp:latest-posts)
   ============================================= */
.sws-section-dark .wp-block-latest-posts {
    list-style: none;
    padding: 0;
}

.sws-section-dark .wp-block-latest-posts__post-title {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.sws-section-dark .wp-block-latest-posts__post-title:hover {
    color: #e87722;
}

.sws-section-dark .wp-block-latest-posts__post-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.sws-section-dark .wp-block-latest-posts__featured-image img {
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.sws-section-dark .wp-block-latest-posts__featured-image img:hover {
    transform: scale(1.05);
}

/* =============================================
   RESPONSIVE: TABLET
   ============================================= */
@media (max-width: 1024px) {
    .sws-featured-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sws-featured-large {
        min-height: 350px;
    }

    .sws-featured-small {
        min-height: 200px;
    }

    .sws-sports-cards {
        grid-template-columns: 1fr;
    }

    .sws-sport-showcase-card {
        height: 380px;
    }
}

/* =============================================
   RESPONSIVE: MOBILE
   ============================================= */
@media (max-width: 768px) {
    .sws-hero-carousel {
        height: 70vh;
        min-height: 450px;
    }

    .sws-hero-content {
        bottom: 15%;
        left: 5%;
        right: 5%;
    }

    .sws-hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .sws-hero-desc {
        font-size: 0.95rem;
    }

    .sws-hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sws-btn-hero {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .sws-hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .sws-hero-buttons .sws-btn-hero {
        text-align: center;
    }

    .sws-score-ticker {
        font-size: 0.85rem;
    }

    .sws-ticker-label {
        padding: 10px 14px;
        font-size: 0.7rem;
    }

    .sws-schedule-tabs {
        gap: 0;
    }

    .sws-tab {
        padding: 0.6rem 0.9rem;
        font-size: 0.78rem;
    }

    .sws-section-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .sws-section-title-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .sws-section-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .sws-featured-grid {
        grid-template-columns: 1fr;
    }

    .sws-featured-large {
        min-height: 300px;
    }

    .sws-featured-small {
        min-height: 180px;
    }

    .sws-featured-stories,
    .sws-sports-showcase,
    .sws-champions-section,
    .sws-spotlight-section,
    .sws-video-section {
        padding: 3rem 0;
    }

    .sws-sport-showcase-card {
        height: 350px;
    }

    .sws-champions-badges {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .sws-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sws-spotlight-img-wrap img {
        height: 240px;
    }

    .sws-video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sws-video-thumb {
        height: 220px;
    }

    .sws-join-cta h2 {
        font-size: 2rem;
    }

    .sws-join-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sws-join-buttons .sws-btn-hero {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .sws-diagonal-top {
        height: 40px;
    }

    .sws-header .wp-block-navigation a {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sws-hero-carousel {
        height: 60vh;
        min-height: 400px;
    }

    .sws-hero-controls {
        padding: 0 0.75rem;
    }

    .sws-hero-arrow {
        width: 36px;
        height: 36px;
    }

    .sws-sport-showcase-card {
        height: 300px;
    }

    .sws-spotlight-img-wrap img {
        height: 200px;
    }
}

/* =============================================
   PRINT STYLES (basic - expanded below)
   ============================================= */
@media print {
    .sws-hero-carousel,
    .sws-score-ticker,
    .sws-video-section,
    .sws-hero-controls,
    .sws-hero-dots {
        display: none;
    }
}

/* =============================================================================
   ENHANCED STYLES - Inner Pages, Cards, Tables, Animations, Print, Dark Mode
   ============================================================================= */

/* =============================================
   1. INNER PAGE STYLES
   ============================================= */

/* Page Hero Banner */
/* =============================================
   COMPACT PAGE TITLE BAR (replaces massive hero)
   ============================================= */
.sws-page-titlebar {
    background: linear-gradient(135deg, #5a1a2a 0%, #3d1220 60%, #1a1a2e 100%) !important;
    border-bottom: 3px solid #e87722;
    position: relative;
    padding: 1.75rem 2rem 1.5rem !important;
    overflow: hidden;
}

.sws-page-titlebar-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

/* Small uppercase breadcrumb that sits above the huge title */
.sws-page-breadcrumb {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0 0 0.5rem !important;
    display: block;
}
.sws-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}
.sws-page-breadcrumb a:hover {
    color: #e87722 !important;
}
.sws-page-breadcrumb strong {
    color: #e87722;
    font-weight: 600;
}

/* The HUGE faded "MEMBERS AREA" / "ABOUT THE SABRES" / etc. ghost-style
   heading — both class names produce the same look so any template that
   uses either selector renders identically. */
.sws-page-titlebar-heading,
.sws-page-titlebar__title {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif !important;
    font-size: clamp(2.5rem, 7vw, 4.5rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    line-height: 0.95 !important;
    margin: 0 !important;
    /* Slightly darker than the maroon background so it reads as a
       faded "ghost" inscription. Layers a subtle white inner glow. */
    color: rgba(255, 255, 255, 0.16) !important;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04),
        0 4px 20px rgba(0, 0, 0, 0.35);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
}
/* When the heading is wrapped in <a> (e.g. wp:post-title link), keep it ghosted */
.sws-page-titlebar-heading a,
.sws-page-titlebar__title a {
    color: inherit !important;
    text-decoration: none;
}

.sws-page-titlebar .sws-shimmer-bar {
    margin: 0.75rem 0 0;
    width: 60px;
    height: 4px;
}

@media (max-width: 768px) {
    .sws-page-titlebar {
        padding: 1.25rem 1.25rem 1rem !important;
    }
    .sws-page-breadcrumb {
        font-size: 0.7rem !important;
        letter-spacing: 0.14em;
    }
}

/* Legacy hero — kept small for backward compat */
.sws-page-hero {
    position: relative;
    background: linear-gradient(135deg, #5a1a2a 0%, #3d1220 60%, #1a1a2e 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    overflow: hidden;
}

.sws-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 119, 34, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.sws-page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a1a2a, #e87722, #5a1a2a);
}

.sws-page-hero h1 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.sws-page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0.75rem 0 0;
    position: relative;
    z-index: 1;
}

/* Breadcrumb Navigation */
.sws-breadcrumb {
    padding: 0.85rem 2rem;
    background: #f5f0eb;
    border-bottom: 1px solid #e8e4e0;
    font-size: 0.78rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.sws-breadcrumb a {
    color: #e87722;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sws-breadcrumb a:hover {
    color: #5a1a2a;
}

.sws-breadcrumb span,
.sws-breadcrumb .separator {
    color: #999;
    margin: 0 0.4rem;
}

.sws-breadcrumb .current {
    color: #555;
    font-weight: 500;
}

/* Content Area */
.sws-content-area {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 2rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.sws-content-area h2,
.sws-content-area h3,
.sws-content-area h4 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.sws-content-area h2 {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e87722;
}

.sws-content-area h3 {
    font-size: 1.4rem;
}

.sws-content-area p {
    margin-bottom: 1.5rem;
}

.sws-content-area img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sws-content-area blockquote {
    border-left: 4px solid #e87722;
    background: #f5f0eb;
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.sws-content-area a {
    color: #e87722;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.sws-content-area a:hover {
    color: #5a1a2a;
}

/* Sidebar Widget Card */
.sws-sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-top: 3px solid #e87722;
}

.sws-sidebar-widget h3,
.sws-sidebar-widget h4 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a2e;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.sws-sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sws-sidebar-widget ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sws-sidebar-widget ul li:last-child {
    border-bottom: none;
}

.sws-sidebar-widget ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.sws-sidebar-widget ul li a:hover {
    color: #e87722;
    padding-left: 4px;
}

/* Post Navigation (Prev/Next) */
.sws-post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.sws-post-navigation a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: #f5f0eb;
    border-radius: 8px;
    flex: 1;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}

.sws-post-navigation a:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sws-post-navigation .sws-nav-prev::before {
    content: '\2190';
    font-size: 1.4rem;
    color: #e87722;
    flex-shrink: 0;
}

.sws-post-navigation .sws-nav-next::after {
    content: '\2192';
    font-size: 1.4rem;
    color: #e87722;
    flex-shrink: 0;
}

.sws-post-navigation .sws-nav-next {
    text-align: right;
    justify-content: flex-end;
}

.sws-post-navigation .sws-nav-label {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    display: block;
}

.sws-post-navigation .sws-nav-title {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Author Info Box */
.sws-author-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f5f0eb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
    border-left: 4px solid #e87722;
}

.sws-author-box img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #e87722;
}

.sws-author-box-info h4 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.sws-author-box-info .sws-author-role {
    font-size: 0.8rem;
    color: #e87722;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.sws-author-box-info p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Related Posts Grid */
.sws-related-posts {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 2px solid #eee;
}

.sws-related-posts h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
}

.sws-related-posts h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #e87722;
    margin-top: 0.5rem;
}

.sws-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sws-related-card {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sws-related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sws-related-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sws-related-card:hover img {
    transform: scale(1.06);
}

.sws-related-card-body {
    padding: 1rem 1.25rem;
}

.sws-related-card-body .sws-related-date {
    font-size: 0.72rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

.sws-related-card-body h4 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.sws-related-card:hover .sws-related-card-body h4 {
    color: #e87722;
}

@media (max-width: 768px) {
    .sws-related-posts-grid {
        grid-template-columns: 1fr;
    }

    .sws-author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .sws-post-navigation {
        flex-direction: column;
    }

    .sws-post-navigation .sws-nav-next {
        text-align: left;
        justify-content: flex-start;
    }

    .sws-page-hero {
        padding: 3.5rem 1.5rem 2.5rem;
    }
}

/* =============================================
   2. CARD HOVER EFFECTS
   ============================================= */

/* Card Lift */
.sws-card-lift {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sws-card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Card Reveal - bottom-up content reveal with gradient */
.sws-card-reveal {
    position: relative;
    overflow: hidden;
}

.sws-card-reveal .sws-card-reveal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(90, 26, 42, 0.95) 0%, rgba(90, 26, 42, 0.7) 60%, transparent 100%);
    transform: translateY(calc(100% - 60px));
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
    color: #ffffff;
}

.sws-card-reveal:hover .sws-card-reveal-content {
    transform: translateY(0);
}

/* Card Border Animate - orange border draws on hover */
.sws-card-border-animate {
    position: relative;
}

.sws-card-border-animate::before,
.sws-card-border-animate::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 0s;
}

.sws-card-border-animate::before {
    border-right-color: #e87722;
    border-bottom-color: #e87722;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 0.35s ease-in;
}

.sws-card-border-animate::after {
    border-left-color: #e87722;
    border-top-color: #e87722;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.35s ease-in 0.15s;
}

.sws-card-border-animate:hover::before {
    clip-path: inset(0 0 0 0);
}

.sws-card-border-animate:hover::after {
    clip-path: inset(0 0 0 0);
}

/* =============================================
   3. LOADING / SKELETON STYLES
   ============================================= */

@keyframes swsSkeletonShimmer {
    0% {
        background-position: -400px 0;
    }
    100% {
        background-position: 400px 0;
    }
}

.sws-skeleton {
    background: #e8e4e0;
    background-image: linear-gradient(
        90deg,
        #e8e4e0 0%,
        #f5f0eb 40%,
        #e8e4e0 80%
    );
    background-size: 800px 100%;
    animation: swsSkeletonShimmer 1.8s ease-in-out infinite;
    border-radius: 6px;
}

.sws-skeleton-text {
    height: 14px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.sws-skeleton-text:last-child {
    width: 65%;
}

.sws-skeleton-img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.sws-skeleton-heading {
    height: 24px;
    width: 50%;
    margin-bottom: 16px;
    border-radius: 4px;
}

.sws-skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* =============================================
   4. SCHEDULE / ROSTER TABLE ENHANCEMENTS
   ============================================= */

/* MSTW Schedule & Scores tables */
.mstw-ss-table,
table[class*="mstw-ss-"] {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.92rem;
}

.mstw-ss-table thead tr,
table[class*="mstw-ss-"] thead tr {
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
}

.mstw-ss-table thead th,
table[class*="mstw-ss-"] thead th {
    color: #ffffff !important;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none !important;
    text-align: left;
    /* MSTW's own mstw-ss-styles.css line 256 paints the cell blue with the
       higher-specificity selector ".mstw-ss-table thead tr th". Force the
       cell background transparent so the maroon gradient on the <tr> above
       shows through. (Same trick as the roster .mstw-tr-table headers on
       line 3594.) */
    background: transparent !important;
}

/* Even-higher-specificity nuke for the plugin's exact selector
   (".mstw-ss-table thead tr th") so the blue can never come back if the
   plugin reorders or bumps its stylesheet. Belt-and-suspenders only. */
.mstw-ss-table thead tr th,
table[class*="mstw-ss-"] thead tr th {
    background: transparent !important;
    background-color: transparent !important;
}

.mstw-ss-table tbody td,
table[class*="mstw-ss-"] tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: #333;
}

.mstw-ss-table tbody tr:nth-child(odd),
table[class*="mstw-ss-"] tbody tr:nth-child(odd) {
    background: #faf8f6;
}

.mstw-ss-table tbody tr:nth-child(even),
table[class*="mstw-ss-"] tbody tr:nth-child(even) {
    background: #ffffff;
}

.mstw-ss-table tbody tr:hover,
table[class*="mstw-ss-"] tbody tr:hover {
    background: rgba(232, 119, 34, 0.08);
}

/* Win/Loss/Tie accent colors in result columns */
.mstw-ss-table .mstw-ss-win,
table[class*="mstw-ss-"] .mstw-ss-win {
    color: #2d8a4e;
    font-weight: 700;
}

.mstw-ss-table .mstw-ss-loss,
table[class*="mstw-ss-"] .mstw-ss-loss {
    color: #c0392b;
    font-weight: 700;
}

.mstw-ss-table .mstw-ss-tie,
table[class*="mstw-ss-"] .mstw-ss-tie {
    color: #e87722;
    font-weight: 700;
}

/* MSTW slider overrides */
.mstw-ss-slider .slick-prev,
.mstw-ss-slider .slick-next {
    background: #5a1a2a !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.mstw-ss-slider .slick-prev:hover,
.mstw-ss-slider .slick-next:hover {
    background: #e87722 !important;
}

/* Responsive table wrapper */
.sws-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .mstw-ss-table thead th,
    table[class*="mstw-ss-"] thead th {
        padding: 10px 12px;
        font-size: 0.7rem;
    }

    .mstw-ss-table tbody td,
    table[class*="mstw-ss-"] tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

/* =============================================
   4a-ol. OL Schedule Table [ol-schedule]
   ============================================= */

.ol-schedule-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ol-schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.92rem;
}

.ol-schedule-table thead tr {
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
}

.ol-schedule-table thead th {
    color: #ffffff;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    text-align: left;
    background: transparent;
}

.ol-schedule-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: #333;
}

.ol-schedule-table tbody tr.ol-row-odd {
    background: #faf8f6;
}

.ol-schedule-table tbody tr.ol-row-even {
    background: #ffffff;
}

.ol-schedule-table tbody tr:hover {
    background: rgba(232, 119, 34, 0.08);
}

/* Home game rows — bold is handled inline; add a subtle left accent */
.ol-schedule-table tbody tr.ol-home-game td:first-child {
    border-left: 3px solid #5a1a2a;
}

/* Location links */
.ol-schedule-table td.ol-sched-loc a {
    color: #5a1a2a;
    text-decoration: underline;
}

.ol-schedule-table td.ol-sched-loc a:hover {
    color: #e87722;
}

/* Result column — colour W/L */
.ol-schedule-table td.ol-sched-result {
    white-space: nowrap;
}

/* Column widths — DATE and TIME/RESULT never wrap */
.ol-schedule-table th.ol-sched-date,
.ol-schedule-table td.ol-sched-date {
    width: 1%;
    white-space: nowrap;
}
.ol-schedule-table th.ol-sched-opp,
.ol-schedule-table td.ol-sched-opp {
    width: 38%;
}
.ol-schedule-table th.ol-sched-loc,
.ol-schedule-table td.ol-sched-loc {
    width: 32%;
}
.ol-schedule-table th.ol-sched-result,
.ol-schedule-table td.ol-sched-result {
    width: 1%;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .ol-schedule-table thead th,
    .ol-schedule-table tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
    .ol-schedule-table th.ol-sched-loc,
    .ol-schedule-table td.ol-sched-loc {
        display: none; /* hide location on small screens */
    }
}

/* =============================================
   4a. MSTW Team Rosters — match schedule table styling
   ============================================= */

.mstw-tr-table,
table[class*="mstw-tr-table"] {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.92rem;
}

.mstw-tr-table thead tr,
table[class*="mstw-tr-table"] thead tr {
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
}

.mstw-tr-table thead th,
table[class*="mstw-tr-table"] thead th {
    color: #ffffff !important;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none !important;
    text-align: left;
    background: transparent !important;
}

.mstw-tr-table tbody td,
table[class*="mstw-tr-table"] tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    color: #333;
}

.mstw-tr-table tbody tr:nth-child(odd),
table[class*="mstw-tr-table"] tbody tr:nth-child(odd) {
    background: #faf8f6;
}

.mstw-tr-table tbody tr:nth-child(even),
table[class*="mstw-tr-table"] tbody tr:nth-child(even) {
    background: #ffffff;
}

.mstw-tr-table tbody tr:hover,
table[class*="mstw-tr-table"] tbody tr:hover {
    background: rgba(232, 119, 34, 0.08);
}

/* Strip plugin's own heavy default borders */
.mstw-tr-table tr,
.mstw-tr-table th,
.mstw-tr-table td,
table[class*="mstw-tr-table"] tr,
table[class*="mstw-tr-table"] th,
table[class*="mstw-tr-table"] td {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

.mstw-tr-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
}

/* Roster: Name + Nbr only — generous column widths, taller rows */
.mstw-tr-table td,
table[class*="mstw-tr-table"] td {
    padding-top: 14px;
    padding-bottom: 14px;
}
.mstw-tr-table .roster-table-name,
table[class*="mstw-tr-table"] .roster-table-name {
    width: 72%;
    white-space: normal;
    word-break: break-word;
}
.mstw-tr-table .roster-table-nbr,
table[class*="mstw-tr-table"] .roster-table-nbr {
    width: 28%;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mstw-tr-table thead th,
    table[class*="mstw-tr-table"] thead th {
        padding: 10px 12px;
        font-size: 0.7rem;
    }

    .mstw-tr-table tbody td,
    table[class*="mstw-tr-table"] tbody td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

/* =============================================
   4b. Team Page — Roster + Schedule two-column layout
       Wrapper emitted by [sws_team_tables] shortcode.
   ============================================= */

.sws-team-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
    align-items: stretch; /* both columns same height */
}

.sws-team-tables__col {
    min-width: 0; /* allow tables to shrink/scroll inside grid cells */
    display: flex;
    flex-direction: column;
}

/* Schedule column: no overflow:hidden here — that clips the box shadow.
   Scroll is handled by max-height on the body div instead. */

.sws-team-tables__title {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a1a2a;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e87722;
}

.sws-team-tables__body {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Vertical scroll — fills full column height set by the roster */
.sws-team-tables__body--scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #5a1a2a #f0ebe8;
}
.sws-team-tables__body--scroll::-webkit-scrollbar {
    width: 6px;
}
.sws-team-tables__body--scroll::-webkit-scrollbar-track {
    background: #f0ebe8;
    border-radius: 3px;
}
.sws-team-tables__body--scroll::-webkit-scrollbar-thumb {
    background: #5a1a2a;
    border-radius: 3px;
}
/* Keep header visible while scrolling */
.sws-team-tables__body--scroll .ol-schedule-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #5a1a2a;
}

/* Stack on tablet + mobile */
@media (max-width: 960px) {
    .sws-team-tables {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* -------------------------------------------------
   Compact MSTW tables when rendered INSIDE the
   two-column team-tables grid (where each column is
   only ~50% of main and the schedule table's 5 columns
   — DATE / OPPONENT / LOCATION / TIME-RESULT / MEDIA
   LINKS — would otherwise overflow and clip the right
   edge off the page).

   Affects ONLY tables sitting inside .sws-team-tables;
   the standalone /schedules page is untouched.
   ------------------------------------------------- */
.sws-team-tables__col .mstw-ss-table,
.sws-team-tables__col table[class*="mstw-ss-"],
.sws-team-tables__col .mstw-tr-table,
.sws-team-tables__col table[class*="mstw-tr-table"] {
    table-layout: auto;
    font-size: 0.82rem;
}

/* Tighten cell padding so 5 columns fit the narrower grid cell. */
.sws-team-tables__col .mstw-ss-table thead th,
.sws-team-tables__col table[class*="mstw-ss-"] thead th,
.sws-team-tables__col .mstw-tr-table thead th,
.sws-team-tables__col table[class*="mstw-tr-table"] thead th {
    padding: 10px 8px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    /* Allow header labels to wrap (e.g. "MEDIA LINKS" stacks to two lines)
       so the column doesn't have to grow horizontally to fit the text. */
    white-space: normal;
    word-break: normal;
    line-height: 1.15;
}

.sws-team-tables__col .mstw-ss-table tbody td,
.sws-team-tables__col table[class*="mstw-ss-"] tbody td,
.sws-team-tables__col .mstw-tr-table tbody td,
.sws-team-tables__col table[class*="mstw-tr-table"] tbody td {
    padding: 9px 8px;
    font-size: 0.82rem;
    word-break: break-word;
}

/* Final safety net: even if the table still ends up wider than the
   grid cell on an awkward viewport, allow horizontal scroll inside
   the column body rather than clipping off the page. */
.sws-team-tables__body {
    overflow-x: auto;
    max-width: 100%;
}

/* Schedule table Time/Result column: long strings like
   "W: 3-0 (25-20, 25-21, 25-20)" (volleyball) were overflowing/clipping.
   The `ol-sched-result` cell used to carry inline `white-space:nowrap`; the
   shortcode now splits the parenthetical onto a second line inside its own
   `.ol-sched-sets` div. Give the column enough room to breathe. */
.sws-team-tables__col .mstw-ss-table tbody td,
.sws-team-tables__col table[class*="mstw-ss-"] tbody td,
.sws-team-tables__col .ol-schedule-table tbody td {
    overflow-wrap: anywhere;
}
/* Keep the DATE column on one line (dates should never fragment). */
.sws-team-tables__col .ol-schedule-table td.ol-sched-date,
.sws-team-tables__col .ol-schedule-table th.ol-sched-date {
    white-space: nowrap;
}
/* Allow OPPONENT + LOCATION + TIME/RESULT to wrap on multiple lines. */
.sws-team-tables__col .ol-schedule-table td.ol-sched-opp,
.sws-team-tables__col .ol-schedule-table td.ol-sched-loc,
.sws-team-tables__col .ol-schedule-table td.ol-sched-result {
    white-space: normal !important;
}
.sws-team-tables__col .ol-schedule-table .ol-sched-sets {
    font-size: 0.72rem;
    font-weight: 500;
    color: #6a6a6a;
    margin-top: 3px;
    letter-spacing: 0.01em;
    white-space: normal;
}
/* Nudge Location column smaller so Time/Result gets breathing room. */
.sws-team-tables__col .ol-schedule-table td.ol-sched-loc,
.sws-team-tables__col .ol-schedule-table th.ol-sched-loc {
    max-width: 10em;
}

/* Roster Card Grid */
.sws-roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.sws-roster-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sws-roster-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.sws-roster-card-img {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
}

.sws-roster-card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sws-roster-card:hover .sws-roster-card-img img {
    transform: scale(1.06);
}

.sws-roster-card-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e87722;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sws-roster-card-body {
    padding: 1.25rem;
}

.sws-roster-card-body h4 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.sws-roster-card-body .sws-roster-position {
    font-size: 0.78rem;
    color: #e87722;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sws-roster-card-body .sws-roster-details {
    font-size: 0.82rem;
    color: #777;
    margin-top: 0.5rem;
}

/* =============================================
   5. SCROLL-TRIGGERED MICRO-ANIMATIONS
   ============================================= */

/* Stagger delays for child elements within animated sections */
.sws-animate-section.sws-visible > *:nth-child(1) { transition-delay: 0s; }
.sws-animate-section.sws-visible > *:nth-child(2) { transition-delay: 0.08s; }
.sws-animate-section.sws-visible > *:nth-child(3) { transition-delay: 0.16s; }
.sws-animate-section.sws-visible > *:nth-child(4) { transition-delay: 0.24s; }
.sws-animate-section.sws-visible > *:nth-child(5) { transition-delay: 0.32s; }
.sws-animate-section.sws-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* Grid / flex children stagger within visible parents */
.sws-animate-section.sws-visible .sws-stagger-child {
    opacity: 0;
    transform: translateY(20px);
    animation: swsFadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.sws-animate-section.sws-visible .sws-stagger-child:nth-child(1) { animation-delay: 0.05s; }
.sws-animate-section.sws-visible .sws-stagger-child:nth-child(2) { animation-delay: 0.12s; }
.sws-animate-section.sws-visible .sws-stagger-child:nth-child(3) { animation-delay: 0.19s; }
.sws-animate-section.sws-visible .sws-stagger-child:nth-child(4) { animation-delay: 0.26s; }
.sws-animate-section.sws-visible .sws-stagger-child:nth-child(5) { animation-delay: 0.33s; }
.sws-animate-section.sws-visible .sws-stagger-child:nth-child(6) { animation-delay: 0.4s; }

/* Stats Counter Animation */
@keyframes swsCountPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.sws-animate-count {
    display: inline-block;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 800;
    color: #e87722;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sws-animate-count.sws-visible {
    opacity: 1;
    transform: translateY(0);
    animation: swsCountPulse 0.5s ease 0.6s;
}

/* =============================================
   6. PRINT STYLES (EXPANDED)
   ============================================= */
@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-family: 'Barlow', 'Inter', Georgia, serif;
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }

    .sws-header,
    .sws-footer,
    .sws-hero-carousel,
    .sws-score-ticker,
    .sws-hero-controls,
    .sws-hero-dots,
    .sws-video-section,
    .sws-join-cta,
    .sws-sponsors-section-v2,
    .sws-post-navigation,
    .sws-breadcrumb,
    .sws-related-posts,
    nav,
    .wp-block-navigation {
        display: none !important;
    }

    .sws-page-hero {
        padding: 1rem 0 !important;
        border-bottom: 2px solid #000;
    }

    .sws-page-hero h1 {
        font-size: 24pt !important;
        color: #000 !important;
    }

    .sws-content-area {
        max-width: 100% !important;
        padding: 0 !important;
    }

    a {
        text-decoration: underline;
    }

    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
        color: #555;
    }

    .sws-content-area img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h2, h3, h4 {
        page-break-after: avoid;
    }

    table {
        border-collapse: collapse;
    }

    table th,
    table td {
        border: 1px solid #ccc !important;
        padding: 6px 10px !important;
    }
}

/* =============================================
   7. DARK MODE SUPPORT
   ============================================= */
@media (prefers-color-scheme: dark) {
    .sws-content-area {
        color: #d4d4d4;
        background: #1a1a2e;
    }

    .sws-content-area h2,
    .sws-content-area h3,
    .sws-content-area h4 {
        color: #f0f0f0;
    }

    .sws-content-area blockquote {
        background: rgba(255, 255, 255, 0.05);
        color: #bbb;
    }

    .sws-breadcrumb {
        background: #0d0d1a;
        border-bottom-color: #2a2a3e;
    }

    .sws-breadcrumb .current {
        color: #aaa;
    }

    .sws-sidebar-widget {
        background: #1e1e32;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .sws-sidebar-widget h3,
    .sws-sidebar-widget h4 {
        color: #f0f0f0;
        border-bottom-color: #333;
    }

    .sws-sidebar-widget ul li {
        border-bottom-color: #2a2a3e;
    }

    .sws-sidebar-widget ul li a {
        color: #ccc;
    }

    .sws-related-card {
        background: #1e1e32;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    }

    .sws-related-card-body h4 {
        color: #f0f0f0;
    }

    .sws-related-card-body .sws-related-date {
        color: #888;
    }

    .sws-author-box {
        background: #1e1e32;
        border-left-color: #e87722;
    }

    .sws-author-box-info p {
        color: #bbb;
    }

    .sws-post-navigation a {
        background: #1e1e32;
    }

    .sws-post-navigation a:hover {
        background: #2a2a3e;
    }

    .sws-post-navigation .sws-nav-title {
        color: #f0f0f0;
    }

    .sws-roster-card {
        background: #1e1e32;
    }

    .sws-roster-card-body h4 {
        color: #f0f0f0;
    }

    .sws-roster-card-body .sws-roster-details {
        color: #999;
    }

    .sws-skeleton {
        background: #2a2a3e;
        background-image: linear-gradient(
            90deg,
            #2a2a3e 0%,
            #3a3a50 40%,
            #2a2a3e 80%
        );
    }

    /* Dark mode table adjustments */
    .mstw-ss-table tbody td,
    table[class*="mstw-ss-"] tbody td {
        color: #d4d4d4;
        border-bottom-color: #2a2a3e;
    }

    .mstw-ss-table tbody tr:nth-child(odd),
    table[class*="mstw-ss-"] tbody tr:nth-child(odd) {
        background: #1a1a2e;
    }

    .mstw-ss-table tbody tr:nth-child(even),
    table[class*="mstw-ss-"] tbody tr:nth-child(even) {
        background: #1e1e32;
    }

    .mstw-ss-table tbody tr:hover,
    table[class*="mstw-ss-"] tbody tr:hover {
        background: rgba(232, 119, 34, 0.12);
    }
}

/* =============================================
   8. SELECTION STYLING
   ============================================= */
::selection {
    background: #5a1a2a;
    color: #ffffff;
}

::-moz-selection {
    background: #5a1a2a;
    color: #ffffff;
}

/* =============================================
   9. FOCUS STYLES (Accessibility)
   ============================================= */
:focus-visible {
    outline: 3px solid #e87722;
    outline-offset: 2px;
    border-radius: 2px;
}

/* =============================================
   10. PAGE TEMPLATE V2 — Dramatic Inner Pages
   ============================================= */

/* Hero V2 — Taller with diagonal clip */
.sws-page-hero-v2-wp {
    position: relative;
    min-height: auto !important;
    display: flex;
    align-items: center;
    clip-path: none;
    padding-bottom: 0 !important;
    overflow: hidden;
    border-bottom: 3px solid #e87722;
}

.sws-page-hero-v2-wp::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(232, 119, 34, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(90, 26, 42, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.sws-page-hero-v2-wp .wp-block-cover__inner-container {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
}

.sws-page-hero-title-wp {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif !important;
    text-shadow: 0 3px 30px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Shimmer Bar — Animated orange underline */
.sws-shimmer-bar {
    width: 100px;
    height: 4px;
    margin-top: 1.25rem;
    border-radius: 2px;
    background: linear-gradient(90deg, #e87722, #ff9f43, #e87722);
    background-size: 200% 100%;
    animation: sws-shimmer 2.5s ease-in-out infinite;
}

@keyframes sws-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Gradient Accent Bar */
.sws-page-gradient-bar {
    height: 5px;
    background: linear-gradient(90deg, #5a1a2a 0%, #e87722 50%, #5a1a2a 100%);
    position: relative;
    z-index: 5;
}

/* Content Wrapper — Left border accent */
.sws-page-content-wrap {
    position: relative;
}

.sws-page-content-inner {
    position: relative;
}

.sws-page-content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #e87722, transparent);
    border-radius: 0 0 2px 2px;
    pointer-events: none;
}

/* =============================================
   11. EXPLORE MORE SECTION
   ============================================= */
.sws-explore-more {
    position: relative;
    background: #1a1a2e;
    padding: 6rem 2rem 5rem;
    overflow: hidden;
}

.sws-explore-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.sws-explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.sws-explore-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.sws-explore-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5a1a2a, #e87722);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.sws-explore-card:hover {
    background: rgba(232, 119, 34, 0.08);
    border-color: rgba(232, 119, 34, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.sws-explore-card:hover::before {
    transform: scaleX(1);
}

.sws-explore-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.sws-explore-card:hover .sws-explore-icon {
    filter: grayscale(0);
}

.sws-explore-card h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: #ffffff;
}

.sws-explore-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem;
}

.sws-explore-cta {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e87722;
    transition: letter-spacing 0.3s ease;
}

.sws-explore-card:hover .sws-explore-cta {
    letter-spacing: 0.15em;
}

/* =============================================
   12. PAGE CTA BANNER
   ============================================= */
.sws-page-cta {
    background: linear-gradient(135deg, #5a1a2a 0%, #3d1220 60%, #2a0c18 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sws-page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(232, 119, 34, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.sws-page-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sws-page-cta h2 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.sws-page-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem;
    line-height: 1.6;
}

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

/* =============================================
   13. ARCHIVE TEMPLATE V2 — Enhanced Cards
   ============================================= */

/* Filter Bar */
.sws-archive-filter-bar {
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sws-filter-tab {
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    border-bottom: 3px solid transparent;
}

.sws-filter-tab:hover {
    color: #5a1a2a;
    background: rgba(90, 26, 42, 0.04);
}

.sws-filter-tab a {
    position: relative;
}

.sws-filter-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e87722;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.sws-filter-tab:hover::after {
    width: 100%;
}

/* Archive Cards — Image zoom on hover + orange top border */
.sws-archive-card {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border-top: 3px solid #e87722;
}

.sws-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sws-archive-card-img-wrap {
    overflow: hidden;
}

.sws-archive-card-img-wrap img,
.sws-archive-card-img-wrap .wp-post-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
}

.sws-archive-card:hover .sws-archive-card-img-wrap img,
.sws-archive-card:hover .sws-archive-card-img-wrap .wp-post-image {
    transform: scale(1.08);
}

.sws-archive-card-body {
    position: relative;
}

.sws-archive-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.25rem;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #e87722, transparent);
}

/* =============================================
   14. RESPONSIVE — Page V2 & Archive V2
   ============================================= */
@media (max-width: 768px) {
    .sws-page-hero-v2-wp {
        min-height: 28vh !important;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .sws-page-hero-v2-wp .wp-block-cover__inner-container {
        padding: 3.5rem 1.5rem 2rem;
    }

    .sws-explore-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .sws-explore-card {
        padding: 2rem 1.5rem;
    }

    .sws-page-cta {
        padding: 3.5rem 1.5rem;
    }

    .sws-page-content-inner {
        padding-left: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .sws-page-hero-v2-wp {
        min-height: 25vh !important;
        clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    }

    .sws-explore-icon {
        font-size: 2rem;
    }

    .sws-page-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.sws-header :focus-visible {
    outline-color: #e87722;
    outline-offset: -2px;
}

.sws-btn-hero:focus-visible,
.wp-block-button__link:focus-visible {
    outline: 3px solid #e87722;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(232, 119, 34, 0.25);
}

a:focus-visible {
    outline: 2px solid #e87722;
    outline-offset: 2px;
}

/* Skip navigation link for keyboard users */
.sws-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #e87722;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    transition: top 0.2s ease;
}

.sws-skip-link:focus {
    top: 0;
}

/* =============================================
   10. INNER PAGE VISUAL ENHANCEMENTS
   ============================================= */

/* ----- 10a. Page Hero Enhancements ----- */
.sws-page-hero {
    clip-path: none;
    padding-bottom: 1.5rem;
}

.sws-page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e87722, #f59e4c, #e87722);
    background-size: 200% 100%;
    animation: swsShimmer 2s linear infinite;
    border-radius: 2px;
}

/* ----- 10b. Content Area Left Accent Border ----- */
.sws-content-area {
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #e87722 0%, #5a1a2a 50%, transparent 100%) 1;
}

/* ----- 10c. Explore More Section ----- */
.sws-explore-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.sws-explore-section h2 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.sws-explore-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e87722;
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.sws-explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sws-explore-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid transparent;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
}

.sws-explore-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    border-top-color: #e87722;
}

.sws-explore-card .sws-explore-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #e87722;
}

.sws-explore-card h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.sws-explore-card p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem;
}

.sws-explore-card a {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #e87722;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sws-explore-card a:hover {
    color: #f59e4c;
}

/* ----- 10d. Page CTA Banner ----- */
.sws-page-cta {
    background: linear-gradient(135deg, #5a1a2a 0%, #3d1220 50%, #5a1a2a 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sws-page-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 119, 34, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sws-page-cta h2 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0 0 0.75rem;
    position: relative;
    z-index: 1;
}

.sws-page-cta p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.sws-page-cta .sws-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sws-page-cta .sws-btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: #e87722;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.sws-page-cta .sws-btn-primary:hover {
    background: #d06a1a;
    transform: translateY(-2px);
}

.sws-page-cta .sws-btn-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sws-page-cta .sws-btn-outline:hover {
    border-color: #e87722;
    background: rgba(232, 119, 34, 0.1);
    transform: translateY(-2px);
}

/* ----- 10e. Archive Card Enhancements ----- */
.sws-archive-card {
    border-top: 3px solid #e87722;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sws-archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.sws-archive-card .sws-archive-image {
    position: relative;
    overflow: hidden;
}

.sws-archive-card .sws-archive-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sws-archive-card:hover .sws-archive-image img {
    transform: scale(1.05);
}

.sws-archive-card .sws-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e87722;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    z-index: 2;
    text-decoration: none;
}

.sws-archive-card .sws-category-badge:hover {
    background: #d06a1a;
}

.sws-archive-card-body {
    padding: 1.25rem 1.5rem;
}

.sws-archive-card-body h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.sws-archive-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sws-archive-card-body h3 a:hover {
    color: #e87722;
}

.sws-archive-card-body .sws-archive-meta {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.sws-archive-card-body .sws-archive-excerpt {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
}

/* ----- 10f. Breadcrumb Enhancements ----- */
.sws-breadcrumb {
    background: linear-gradient(180deg, #f5f0eb 0%, #ede8e2 100%);
    padding: 0.85rem 2rem;
    border-bottom: 1px solid #ddd7d0;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.sws-breadcrumb svg,
.sws-breadcrumb .sws-breadcrumb-home-icon {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    margin-right: 0.2rem;
    vertical-align: -2px;
}

.sws-breadcrumb .separator {
    color: #c0b8b0;
    font-size: 0.7rem;
}

.sws-breadcrumb .current {
    color: #5a1a2a;
    font-weight: 600;
}

/* ----- 10g. Single Post Enhancements ----- */

/* Author avatar with orange ring */
.sws-author-box img {
    border: 3px solid #e87722;
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
}

/* Reading time estimate badge */
.sws-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    background: #f5f0eb;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.sws-reading-time svg,
.sws-reading-time .sws-reading-icon {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Enhanced blockquote for single posts */
.sws-content-area blockquote,
.single .entry-content blockquote {
    border-left: 5px solid #e87722;
    background: linear-gradient(135deg, #f5f0eb 0%, rgba(90, 26, 42, 0.06) 100%);
    margin: 2.5rem 0;
    padding: 2rem 2rem 2rem 2.5rem;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    position: relative;
}

.sws-content-area blockquote::before,
.single .entry-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 12px;
    font-family: Georgia, serif;
    font-size: 4rem;
    color: #e87722;
    opacity: 0.2;
    line-height: 1;
}

.sws-content-area blockquote cite,
.single .entry-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5a1a2a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Post tag pills */
.sws-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e4e0;
}

.sws-post-tags a {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: #f5f0eb;
    color: #5a1a2a;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #e8e4e0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sws-post-tags a:hover {
    background: #e87722;
    color: #ffffff;
    border-color: #e87722;
}

/* ----- 10h. WordPress Block Overrides for Inner Pages ----- */

/* Core Image Block */
.sws-content-area .wp-block-image {
    margin: 2rem 0;
}

.sws-content-area .wp-block-image img {
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.sws-content-area .wp-block-image:hover img {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.15);
}

.sws-content-area .wp-block-image figcaption {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.82rem;
    color: #888;
    text-align: center;
    margin-top: 0.6rem;
    font-style: italic;
}

/* Core Gallery Block */
.sws-content-area .wp-block-gallery {
    margin: 2.5rem 0;
    gap: 0.75rem !important;
}

.sws-content-area .wp-block-gallery .wp-block-image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sws-content-area .wp-block-gallery .wp-block-image img {
    border-radius: 0;
    transition: transform 0.4s ease;
}

.sws-content-area .wp-block-gallery .wp-block-image:hover img {
    transform: scale(1.03);
}

/* Core Table Block */
.sws-content-area .wp-block-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.sws-content-area .wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.92rem;
}

.sws-content-area .wp-block-table th {
    background: #1a1a2e;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    padding: 0.85rem 1rem;
    text-align: left;
    border: none;
}

.sws-content-area .wp-block-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e8e4e0;
    color: #444;
}

.sws-content-area .wp-block-table tbody tr:nth-child(even) {
    background: #faf8f6;
}

.sws-content-area .wp-block-table tbody tr:hover {
    background: rgba(232, 119, 34, 0.06);
}

/* Core List Block */
.sws-content-area .wp-block-list,
.sws-content-area ul:not([class]),
.sws-content-area ol:not([class]) {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.sws-content-area .wp-block-list li,
.sws-content-area ul:not([class]) li,
.sws-content-area ol:not([class]) li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
    color: #444;
}

.sws-content-area ul:not([class]) li::marker,
.sws-content-area .wp-block-list:not(ol) li::marker {
    color: #e87722;
    font-weight: bold;
}

/* Core Separator Block */
.sws-content-area .wp-block-separator {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e87722, transparent);
    margin: 2.5rem auto;
    max-width: 200px;
    opacity: 0.5;
}

/* Core Columns Block */
.sws-content-area .wp-block-columns {
    margin: 2rem 0;
    gap: 2rem;
}

/* Core Cover Block */
.sws-content-area .wp-block-cover {
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

/* Core Pullquote */
.sws-content-area .wp-block-pullquote {
    border: none;
    padding: 2rem 0;
    margin: 2.5rem 0;
    text-align: center;
}

.sws-content-area .wp-block-pullquote blockquote {
    border-left: none;
    background: none;
    padding: 0;
    position: relative;
}

.sws-content-area .wp-block-pullquote blockquote::before {
    position: static;
    display: block;
    font-size: 3rem;
    margin-bottom: -1rem;
    opacity: 0.3;
}

.sws-content-area .wp-block-pullquote p {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #5a1a2a;
    line-height: 1.4;
}

.sws-content-area .wp-block-pullquote cite {
    font-size: 0.85rem;
    color: #e87722;
}

/* Core Code & Preformatted Blocks */
.sws-content-area .wp-block-code,
.sws-content-area pre {
    background: #1a1a2e;
    color: #e8e4e0;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.6;
    overflow-x: auto;
    margin: 2rem 0;
    border-left: 4px solid #e87722;
}

.sws-content-area code {
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.88em;
}

.sws-content-area :not(pre) > code {
    background: #f5f0eb;
    color: #5a1a2a;
    padding: 0.15em 0.45em;
    border-radius: 4px;
    font-size: 0.88em;
}

/* Core Details / Accordion Block */
.sws-content-area details {
    background: #faf8f6;
    border: 1px solid #e8e4e0;
    border-radius: 8px;
    margin: 1.5rem 0;
    overflow: hidden;
}

.sws-content-area details summary {
    padding: 1rem 1.5rem;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a2e;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sws-content-area details summary:hover {
    background: #f0ebe5;
}

.sws-content-area details[open] summary {
    border-bottom: 1px solid #e8e4e0;
    background: #f0ebe5;
}

.sws-content-area details > :not(summary) {
    padding: 0 1.5rem;
}

/* ----- 10i. Inner Page Responsive Adjustments ----- */
@media (max-width: 768px) {
    .sws-page-hero {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        padding-bottom: 4rem;
    }

    .sws-explore-section {
        padding: 3rem 1.25rem;
    }

    .sws-explore-grid {
        grid-template-columns: 1fr;
    }

    .sws-page-cta {
        padding: 2.5rem 1.25rem;
    }

    .sws-page-cta .sws-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .sws-archive-card .sws-category-badge {
        top: 8px;
        left: 8px;
        font-size: 0.65rem;
    }

    .sws-content-area blockquote,
    .single .entry-content blockquote {
        padding: 1.5rem 1.25rem 1.5rem 1.75rem;
        margin: 1.5rem 0;
    }

    .sws-content-area .wp-block-pullquote p {
        font-size: 1.2rem;
    }

    .sws-content-area .wp-block-table {
        font-size: 0.85rem;
    }
}


/* =============================================
   SIDE FRAMES — Fixed left/right panels
   ============================================= */
.sws-side-frame {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 100;
    background: linear-gradient(180deg, #5a1a2a 0%, #3d1220 40%, #2a0d18 60%, #3d1220 80%, #5a1a2a 100%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: none; /* Hidden by default, shown on wide screens */
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Sidebar background images */
.sws-side-frame--left {
    background-image: url('../../../../uploads/2026/04/sidebar1.webp');
    background-size: cover;
    background-position: center top;
}
.sws-side-frame--right {
    background-image: url('../../../../uploads/2026/04/sidebar6.webp');
    background-size: cover;
    background-position: center top;
}

.sws-side-frame--left { left: 0; }
.sws-side-frame--right { right: 0; }

/* Side frames are image-only — no overlaid content */


/* =============================================
   SCORE TICKER — Header position overrides
   ============================================= */
.sws-ticker-wrap {
    background: #0d0d1a url('../../../../uploads/2026/04/topbar2.webp') center/cover no-repeat;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.sws-score-ticker {
    display: flex;
    align-items: stretch;
    background: var(--ol-ticker-bg, #0d0d1a);
    border-bottom: 2px solid rgba(232,119,34,0.4);
    overflow: hidden;
    position: relative;
    height: 80px;
}

/* Arrow buttons for ticker */
.sws-ticker-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3;
}

.sws-ticker-arrow:hover {
    background: rgba(232,119,34,0.15);
    color: #e87722;
}

/* Ticker date label inside each game */
.sws-ticker-date {
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* Matchup grouping */
.sws-ticker-matchup {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sws-ticker-matchup .sws-ticker-team {
    color: var(--ol-ticker-font-color, rgba(255,255,255,0.85));
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.sws-ticker-matchup .sws-ticker-team small,
.sws-ticker-badge {
    display: inline-block;
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-left: 4px;
    padding: 1px 5px;
    background: color-mix(in srgb, var(--ol-ticker-badge-color, #e87722) 25%, transparent);
    color: var(--ol-ticker-badge-color, #e87722);
    border-radius: 3px;
    vertical-align: middle;
    line-height: 1.4;
}

/* Off-season ticker — scrolling enabled */
.sws-score-ticker--offseason .sws-ticker-track {
    overflow: hidden;
}

.sws-ticker-content--offseason {
    animation: swsTickerScroll 60s linear infinite;
    animation-duration: var(--ol-ticker-duration-offseason, 60s);
}

.sws-ticker-content--offseason:hover {
    animation-play-state: paused;
}

.sws-ticker-offseason-msg {
    padding: 0 3rem;
    flex-shrink: 0;
}

.sws-ticker-offseason-text {
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 1em;
    font-weight: 600;
    color: var(--ol-ticker-font-color, #ffffff);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Win highlight */
.sws-ticker-matchup .sws-ticker-team.sws-ticker-win {
    color: var(--ol-ticker-win-color, #e87722);
}

.sws-ticker-vs {
    font-family: var(--ol-ticker-font-family, 'Barlow', 'Inter', sans-serif);
    font-size: 0.85em;
    color: rgba(255,255,255,0.3);
    text-transform: lowercase;
    font-style: italic;
}

/* ── Around The League ── */
.sws-ticker-league-divider {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    flex-shrink: 0;
}

.sws-ticker-league-label {
    font-family: var(--ol-ticker-font-family, 'Barlow Condensed', 'Oswald', sans-serif);
    font-size: 0.65em;
    font-weight: 700;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 3px;
    padding: 2px 8px;
}

.sws-ticker-game--league {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.sws-ticker-game--league:hover {
    opacity: 0.8;
}

.sws-ticker-badge--league {
    background: linear-gradient(135deg, #c9a84c 0%, #a68935 100%) !important;
    color: #1a1a2e !important;
}

/* Upcoming game styling */
.sws-ticker-game--upcoming {
    border-left: 2px solid rgba(232,119,34,0.3);
}

.sws-ticker-status.sws-ticker-upcoming {
    background: rgba(232,119,34,0.15);
    color: #e87722;
}


/* =============================================
   CONTENT OFFSET — Frame-aware layout
   ============================================= */
@media (min-width: 1100px) {
    /* Show side frames */
    .sws-side-frame {
        display: flex;
    }

    /* Push body content inward */
    body {
        margin-left: 160px;
        margin-right: 160px;
    }

    /* Header already inherits body margins — no extra needed */

    /* Ticker flows above sticky header */
    .sws-ticker-wrap {
        position: relative;
    }

    /* Ensure mobile menu is still full viewport */
    .sws-mobile-menu {
        right: -100%;
    }
}

/* Wider screens: bigger side frames */
@media (min-width: 1600px) {
    .sws-side-frame {
        width: 200px;
    }
    body {
        margin-left: 200px;
        margin-right: 200px;
    }
    /* Header already inherits body margins at 200px — no extra needed */
}

/* Ensure header z-index is above side frames */
header.wp-block-template-part {
    z-index: 9999;
}

/* Ticker scrolls with center content — no fixed z-index needed */

/* Side frames behind header and ticker */
.sws-side-frame {
    z-index: 100;
}

/* Narrower center content for readability */
.sws-section,
.sws-schedule-section,
.sws-featured-inner,
.sws-sports-inner,
.sws-champions-inner,
.sws-spotlight-inner,
.sws-video-inner,
.sws-sponsors-inner {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Upcoming Games section needs more width to fit 4 game cards
   across (card 240px + gap 18px, plus wrapper 52px arrow padding
   on each side, plus section 24px padding). */
.sws-schedule-section {
    max-width: 1200px;
}

/* Mobile: tighter padding, full-width center */
@media (max-width: 768px) {
    .sws-section,
    .sws-schedule-section,
    .sws-featured-inner,
    .sws-sports-inner,
    .sws-champions-inner,
    .sws-spotlight-inner,
    .sws-video-inner,
    .sws-sponsors-inner {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    body {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =============================================
   STANDINGS TABLE
   ============================================= */

.sws-standings-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    color: #f0f0f0;
    background: #0d0d1a;
    border-radius: 16px;
}

.sws-standings-wrap .sws-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sws-standings-wrap .sws-section-title {
    font-family: 'Anton', 'Barlow Condensed', 'Oswald', Impact, sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.sws-standings-wrap .sws-accent-line {
    width: 80px;
    height: 4px;
    background: #e87722;
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Season Tabs ─────────────────────────────── */

.sws-standings-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sws-standings-tab {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.55rem 1.3rem;
    border: 2px solid #5a1a2a;
    border-radius: 4px;
    background: #1a1a2e;
    color: #c0c0c0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sws-standings-tab:hover {
    border-color: #e87722;
    color: #e87722;
}

.sws-standings-tab.active {
    background: #5a1a2a;
    border-color: #e87722;
    color: #ffffff;
}

/* ── Sub-section Titles ──────────────────────── */

.sws-standings-subtitle {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #e87722;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(232, 119, 34, 0.3);
}

/* ── Table Chrome ────────────────────────────── */

.sws-standings-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid rgba(90, 26, 42, 0.6);
}

.sws-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 520px;
}

.sws-standings-table thead th {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #3d1220;
    color: #e87722;
    padding: 0.75rem 0.9rem;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px solid #e87722;
}

.sws-standings-table thead th.col-team {
    text-align: left;
    padding-left: 1.1rem;
}

/* ── Rows ────────────────────────────────────── */

.sws-standings-table tbody td,
.sws-standings-table tfoot td {
    padding: 0.7rem 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(90, 26, 42, 0.25);
    white-space: nowrap;
}

.sws-standings-table td.col-team {
    text-align: left;
    padding-left: 1.1rem;
}

.sws-standings-table .sws-row-even td {
    background: #1a1a2e;
}

.sws-standings-table .sws-row-odd td {
    background: rgba(61, 18, 32, 0.35);
}

/* Total rows */
.sws-standings-table .sws-row-total td {
    background: rgba(61, 18, 32, 0.65);
    border-top: 2px solid #5a1a2a;
    font-weight: 600;
}

.sws-standings-table tfoot .sws-total-team td {
    border-top: 3px solid #e87722;
}

/* ── Team Badge ──────────────────────────────── */

.sws-team-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.55rem;
    border-radius: 3px;
    text-transform: uppercase;
    min-width: 42px;
    text-align: center;
}

.sws-team-badge.gender-girls {
    background: rgba(232, 119, 34, 0.2);
    color: #e87722;
    border: 1px solid rgba(232, 119, 34, 0.4);
}

.sws-team-badge.gender-boys {
    background: rgba(90, 26, 42, 0.4);
    color: #f0a0b0;
    border: 1px solid rgba(90, 26, 42, 0.7);
}

.sws-team-badge.gender-all {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sws-team-full {
    display: inline-block;
    margin-left: 0.6rem;
    font-size: 0.82rem;
    color: #aaa;
}

/* ── Win % Color Coding ──────────────────────── */

.sws-standings-table .pct-great {
    color: #4cdf6b;
    font-weight: 700;
}

.sws-standings-table .pct-good {
    color: #7dd87d;
    font-weight: 600;
}

.sws-standings-table .pct-mid {
    color: #e0c94e;
}

.sws-standings-table .pct-low {
    color: #e85555;
}

.sws-standings-table .pct-na {
    color: #777;
}

/* ── Error State ─────────────────────────────── */

.sws-standings-error {
    text-align: center;
    padding: 3rem 1rem;
    color: #e85555;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 768px) {
    .sws-standings-wrap {
        padding: 1rem 0.5rem;
    }

    .sws-standings-wrap .sws-section-title {
        font-size: 1.8rem;
    }

    .sws-standings-subtitle {
        font-size: 1.1rem;
    }

    .sws-standings-table {
        font-size: 0.82rem;
    }

    .sws-standings-table thead th {
        font-size: 0.72rem;
        padding: 0.55rem 0.5rem;
    }

    .sws-standings-table tbody td,
    .sws-standings-table tfoot td {
        padding: 0.55rem 0.5rem;
    }

    .sws-team-full {
        display: none;
    }

    .sws-standings-tab {
        font-size: 0.82rem;
        padding: 0.4rem 0.9rem;
    }
}


/* ==============================================
   BASEBALL PAGE
   ============================================== */

/* ── Hero Section ─────────────────────────────── */

.sws-baseball-hero {
    background: linear-gradient(135deg, #1a0a10 0%, #3d1220 50%, #1a0a10 100%);
    padding: 4rem 2rem;
}

.sws-baseball-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sws-baseball-hero__logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
}

.sws-baseball-hero__text h2 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1rem;
    line-height: 1.1;
}

.sws-baseball-hero__text p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0 0 1.5rem;
}

.sws-baseball-hero__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sws-baseball-hero__img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
}

.sws-baseball-hero__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(232,119,34,0.2);
    border-radius: 12px;
    pointer-events: none;
}

.sws-baseball-hero__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Team Cards Section ───────────────────────── */

.sws-baseball-teams {
    background: #f5f5f0;
    padding: 4rem 2rem;
}

.sws-baseball-teams__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sws-baseball-team-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sws-baseball-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.sws-baseball-team-card--reverse {
    direction: rtl;
}

.sws-baseball-team-card--reverse > * {
    direction: ltr;
}

.sws-baseball-team-card__img {
    position: relative;
    overflow: hidden;
}

.sws-baseball-team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sws-baseball-team-card:hover .sws-baseball-team-card__img img {
    transform: scale(1.05);
}

.sws-baseball-team-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #5a1a2a;
    color: #ffffff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.sws-baseball-team-card__body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sws-baseball-team-card__body h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3d1220;
    margin: 0 0 0.75rem;
}

.sws-baseball-team-card__body > p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 1rem;
}

.sws-baseball-team-card__coach {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: #f9f5f2;
    border-left: 3px solid #e87722;
    border-radius: 0 6px 6px 0;
}

.sws-baseball-team-card__coach strong {
    color: #3d1220;
}

.sws-baseball-team-card__links {
    display: flex;
    gap: 1rem;
}

.sws-baseball-team-card__links a {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a1a2a;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border: 2px solid #5a1a2a;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sws-baseball-team-card__links a:hover {
    background: #5a1a2a;
    color: #ffffff;
}

/* ── Coaching Staff Section ───────────────────── */

.sws-baseball-staff {
    background: linear-gradient(135deg, #3d1220 0%, #5a1a2a 100%);
    padding: 4rem 2rem;
}

.sws-baseball-staff__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sws-baseball-staff__inner .sws-section-title {
    color: #ffffff;
}

.sws-baseball-staff__inner .sws-section-subtitle {
    color: rgba(255,255,255,0.7);
}

.sws-baseball-staff__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sws-baseball-staff__card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(232,119,34,0.15);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.sws-baseball-staff__card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #e87722;
    transform: translateY(-2px);
}

.sws-baseball-staff__role {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    margin-bottom: 0.5rem;
}

.sws-baseball-staff__name {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.03em;
}

/* ── Baseball History / Timeline ──────────────── */

.sws-baseball-history {
    background: #f5f5f0;
    padding: 4rem 2rem;
}

.sws-baseball-history__inner {
    max-width: 900px;
    margin: 0 auto;
}

.sws-baseball-timeline {
    position: relative;
    padding-left: 3rem;
}

.sws-baseball-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #e87722 0%, #5a1a2a 100%);
    border-radius: 2px;
}

.sws-baseball-timeline__item {
    position: relative;
    margin-bottom: 3rem;
}

.sws-baseball-timeline__item:last-child {
    margin-bottom: 0;
}

.sws-baseball-timeline__year {
    position: absolute;
    left: -3rem;
    top: 0;
    width: 27px;
    height: 27px;
    background: #e87722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0;
    color: #ffffff;
    box-shadow: 0 0 0 4px #f5f5f0, 0 0 0 6px rgba(232,119,34,0.3);
    z-index: 1;
}

.sws-baseball-timeline__year::after {
    content: attr(data-year);
}

.sws-baseball-timeline__content {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 3px solid #e87722;
}

.sws-baseball-timeline__content h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3d1220;
    margin: 0 0 0.5rem;
}

.sws-baseball-timeline__content > p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0 0 1rem;
}

.sws-baseball-timeline__img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.sws-baseball-timeline__img img {
    width: 100%;
    height: auto;
    display: block;
}

.sws-baseball-timeline__img span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

/* ── Baseball Responsive ──────────────────────── */

@media (max-width: 768px) {
    .sws-baseball-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sws-baseball-hero__logo {
        margin: 0 auto 1rem;
    }

    .sws-baseball-hero__links {
        justify-content: center;
    }

    .sws-baseball-team-card {
        grid-template-columns: 1fr;
    }

    .sws-baseball-team-card--reverse {
        direction: ltr;
    }

    .sws-baseball-team-card__img {
        max-height: 250px;
    }

    .sws-baseball-team-card__body {
        padding: 1.5rem;
    }

    .sws-baseball-staff__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sws-baseball-timeline {
        padding-left: 2.5rem;
    }

    .sws-baseball-timeline__content {
        padding: 1.25rem 1.5rem;
    }
}


/* ==============================================
   ABOUT PAGE
   ============================================== */

/* ── Who We Are Hero ──────────────────────────── */

.sws-about-hero {
    background: #ffffff;
    padding: 4rem 2rem;
}

.sws-about-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sws-about-hero__lead {
    font-size: 1.15rem !important;
    font-weight: 500;
    color: #333 !important;
    line-height: 1.7;
}

.sws-about-hero__text p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 1rem;
}

.sws-about-hero__img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    position: relative;
}

.sws-about-hero__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(232,119,34,0.15);
    border-radius: 12px;
    pointer-events: none;
}

.sws-about-hero__img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Achievement Stats Bar ────────────────────── */

.sws-about-stats {
    background: linear-gradient(135deg, #3d1220 0%, #5a1a2a 50%, #3d1220 100%);
    padding: 3rem 2rem;
    border-top: 3px solid #e87722;
    border-bottom: 3px solid #e87722;
}

.sws-about-stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.sws-about-stats__item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.sws-about-stats__number {
    display: block;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #e87722;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sws-about-stats__label {
    display: block;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.sws-about-stats__divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* ── Mission & Values ─────────────────────────── */

.sws-about-mission {
    background: #f5f5f0;
    padding: 4rem 2rem;
}

.sws-about-mission__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sws-about-mission__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.sws-about-mission__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.sws-about-mission__card:hover {
    border-top-color: #e87722;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.sws-about-mission__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,119,34,0.08);
    border-radius: 50%;
}

.sws-about-mission__card h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #3d1220;
    margin: 0 0 0.75rem;
}

.sws-about-mission__card p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ── Programs Section ─────────────────────────── */

.sws-about-programs {
    background: #ffffff;
    padding: 4rem 2rem;
}

.sws-about-programs__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* The OUR PROGRAMS grid uses native wp-block-columns (flex). We just give
   it some breathing room and force each column to render as a true card
   that fills its column edge-to-edge. Three columns at desktop, two at
   tablet, one at phone. */
.sws-about-programs__grid {
    margin-top: 2.5rem;
    gap: 1.5rem !important;
    align-items: stretch;
}

.sws-about-programs__grid > .wp-block-column {
    display: flex;
    flex-direction: column;
}

.sws-about-programs__card {
    position: relative;
    min-height: 280px !important;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    width: 100%;
    flex: 1;
}

.sws-about-programs__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

/* Tint the overlay using brand colors regardless of tier. The cover
   block already contains an <img> + dim layer; we add a brand-tinted
   gradient on top so it always reads as a Sabres card. */
.sws-about-programs__card .wp-block-cover__background {
    background: linear-gradient(160deg, rgba(61,18,32,0.78) 0%, rgba(90,26,42,0.55) 60%, rgba(232,119,34,0.35) 100%) !important;
    opacity: 1 !important;
}

/* Volleyball uses the Sabres logo placeholder which has lots of
   transparent area — give it a deeper base color so the dim overlay
   reads cleanly even where the source image is fully transparent. */
.sws-about-programs__card--volleyball {
    background-color: #3d1220;
}

.sws-about-programs__card--volleyball .wp-block-cover__image-background {
    object-fit: contain !important;
    object-position: center;
    opacity: 0.45;
    padding: 1rem;
}

/* Inner content of the cover block: pin to the bottom-left like the
   original overlay design. */
.sws-about-programs__card .wp-block-cover__inner-container {
    width: 100%;
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: auto;
}

.sws-about-programs__card .wp-block-cover__inner-container h3,
.sws-about-programs__card .wp-block-cover__inner-container .wp-block-heading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.05;
}

.sws-about-programs__card .wp-block-cover__inner-container p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85) !important;
    margin: 0 0 0.75rem;
}

/* Outline button inside the card */
.sws-about-programs__card .wp-block-buttons {
    margin-top: 0.25rem;
}

.sws-about-programs__cta-btn .wp-block-button__link {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(232, 119, 34, 0.95);
    border: 2px solid rgba(232, 119, 34, 0.95);
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sws-about-programs__cta-btn .wp-block-button__link:hover {
    background: #ff9944;
    border-color: #ff9944;
    transform: translateY(-1px);
}

/* ── Leadership Section ───────────────────────── */

.sws-about-leadership {
    background: linear-gradient(135deg, #1a0a10 0%, #3d1220 50%, #1a0a10 100%);
    padding: 4rem 2rem;
}

.sws-about-leadership__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sws-about-leadership__inner .sws-section-title {
    color: #ffffff;
}

/* ----- Accordion version: each Leadership section is a <details> ----- */
.sws-about-leadership__hint {
    text-align: center;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 0 0 1.75rem;
}

.sws-about-leadership__section {
    margin: 0 0 0.75rem;
    border: 1px solid rgba(232,119,34,0.18);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
    overflow: hidden;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.sws-about-leadership__section[open] {
    border-color: rgba(232,119,34,0.45);
    background: rgba(255,255,255,0.045);
}

.sws-about-leadership__section:last-child {
    margin-bottom: 0;
}

/* The native <summary> marker is hidden — we draw our own chevron. */
.sws-about-leadership__heading {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e87722;
    margin: 0;
    padding: 1rem 1.25rem;
    border: 0;
    user-select: none;
    transition: background 0.2s ease;
}
.sws-about-leadership__heading::-webkit-details-marker { display: none; }
.sws-about-leadership__heading::marker { content: ''; }
.sws-about-leadership__heading:hover {
    background: rgba(232,119,34,0.08);
}
.sws-about-leadership__heading:focus-visible {
    outline: 2px solid #e87722;
    outline-offset: -2px;
}

.sws-about-leadership__heading-text { flex: 1 1 auto; }

.sws-about-leadership__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.55rem;
    padding: 0 0.55rem;
    background: rgba(232,119,34,0.18);
    color: #ffd7b0;
    border-radius: 999px;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
}

/* Custom chevron drawn as a rotating triangle (▾) */
.sws-about-leadership__chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #e87722;
    border-bottom: 2px solid #e87722;
    transform: rotate(-45deg); /* points right when closed */
    transition: transform 0.25s ease;
    margin-right: 4px;
}
.sws-about-leadership__section[open] .sws-about-leadership__chevron {
    transform: rotate(45deg); /* points down when open */
}

/* Panel wraps the grid(s) and animates open. Using grid rows for height
   animation so layout is smooth even when content varies. */
.sws-about-leadership__panel {
    padding: 0.5rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(232,119,34,0.12);
    animation: swsLeadershipFadeIn 0.35s ease;
}

@keyframes swsLeadershipFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sws-about-leadership__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    /* Stretch every card to the tallest card in its row so they all
       match visually (no more "short card" sitting next to a "tall card"). */
    align-items: stretch;
}

.sws-about-leadership__grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.sws-about-leadership__card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    /* Force every card to fill its grid cell so a card with extra
       content (AD + View Bio) doesn't make neighboring cards look
       half-empty. All cards are the same height in every row. */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 110px;
    height: 100%;
    box-sizing: border-box;
}

.sws-about-leadership__card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(232,119,34,0.3);
    transform: translateY(-2px);
}

.sws-about-leadership__card--featured {
    border-color: rgba(232,119,34,0.3);
    background: rgba(232,119,34,0.06);
}

.sws-about-leadership__role {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    margin-bottom: 0.35rem;
}

.sws-about-leadership__name {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

/* ── Affiliations ─────────────────────────────── */

.sws-about-affiliations {
    background: #f5f5f0;
    padding: 3.5rem 2rem;
}

.sws-about-affiliations__inner {
    max-width: 900px;
    margin: 0 auto;
}

.sws-about-affiliations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.sws-about-affiliations__item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    border-top: 3px solid #5a1a2a;
}

.sws-about-affiliations__item strong {
    display: block;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3d1220;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.sws-about-affiliations__item span {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #777;
    line-height: 1.4;
}

/* ── Statement of Faith ───────────────────────── */

.sws-about-faith {
    background: linear-gradient(135deg, #1a0a10 0%, #2a1018 50%, #1a0a10 100%);
    padding: 4rem 2rem;
}

.sws-about-faith__inner {
    max-width: 800px;
    margin: 0 auto;
}

.sws-about-faith__inner .sws-section-title {
    color: #ffffff;
}

.sws-about-faith__inner .sws-section-subtitle {
    color: rgba(255,255,255,0.6);
}

.sws-about-faith__articles {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sws-about-faith__article {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232,119,34,0.1);
    border-radius: 8px;
    padding: 1.5rem 1.75rem;
    transition: all 0.3s ease;
}

.sws-about-faith__article:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(232,119,34,0.25);
}

.sws-about-faith__num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,119,34,0.12);
    border: 1px solid rgba(232,119,34,0.3);
    border-radius: 50%;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e87722;
    letter-spacing: 0.02em;
}

.sws-about-faith__article p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* ── Leadership Subheadings & Clickable Cards ─── */

.sws-about-leadership__subheading {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 1.5rem 0 0.75rem;
    padding-left: 0.25rem;
}

.sws-about-leadership__subheading:first-of-type {
    margin-top: 0;
}

.sws-about-leadership__card--clickable {
    cursor: pointer;
    position: relative;
}

.sws-about-leadership__card--clickable::after {
    content: 'View Bio';
    position: absolute;
    bottom: 0.5rem;
    right: 0.75rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232,119,34,0.4);
    transition: color 0.2s ease;
}

.sws-about-leadership__card--clickable:hover::after {
    color: #e87722;
}

.sws-about-leadership__card--clickable:hover {
    border-color: #e87722;
    background: rgba(232,119,34,0.08);
    transform: translateY(-3px);
}

/* ── Coach Bio Modal ──────────────────────────── */

.sws-coach-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sws-coach-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.sws-coach-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.sws-coach-modal__dialog {
    position: relative;
    background: linear-gradient(135deg, #2a1018, #3d1220);
    border: 1px solid rgba(232,119,34,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.sws-coach-modal.is-active .sws-coach-modal__dialog {
    transform: translateY(0);
}

.sws-coach-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.sws-coach-modal__close:hover {
    color: #e87722;
}

.sws-coach-modal__role {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    margin-bottom: 0.35rem;
}

.sws-coach-modal__name {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232,119,34,0.2);
}

.sws-coach-modal__bio {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* ── Bio Modal (Leadership) ──────────────────── */

.sws-about-leadership__card--has-bio {
    cursor: pointer;
    position: relative;
}

.sws-about-leadership__card--has-bio:hover {
    border-color: #e87722;
    background: rgba(232,119,34,0.08);
    transform: translateY(-3px);
}

.sws-about-leadership__view-bio {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232,119,34,0.5);
    transition: color 0.2s ease;
}

.sws-about-leadership__card--has-bio:hover .sws-about-leadership__view-bio {
    color: #e87722;
}

.sws-bio-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sws-bio-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sws-bio-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.sws-bio-modal__dialog {
    position: relative;
    background: linear-gradient(135deg, #2a1018, #3d1220);
    border: 1px solid rgba(232,119,34,0.2);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.sws-bio-modal[aria-hidden="false"] .sws-bio-modal__dialog {
    transform: translateY(0);
}

.sws-bio-modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.sws-bio-modal__close:hover {
    color: #e87722;
}

.sws-bio-modal__name {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    margin: 0 0 0.35rem;
}

.sws-bio-modal__role {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(232,119,34,0.2);
}

.sws-bio-modal__text {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* ── Community / Members Page ─────────────────── */

.sws-community-hero,
.sws-members-hero {
    padding: 4rem 1.5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ── Members → Get the Sabres App (QR code) ─────
   Two-column card: copy on the left, scannable QR
   tile on the right. Uses Sabres burgundy + orange
   to match the site. Stacks on mobile. */
.sws-members-app {
    max-width: 1080px;
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
}

.sws-members-app__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, #5a1a2a 0%, #3a0e1a 100%);
    border-radius: 16px;
    padding: 2.5rem 2.5rem;
    box-shadow: 0 12px 32px rgba(90,26,42,0.22);
    position: relative;
    overflow: hidden;
}

.sws-members-app__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 15%, rgba(232,119,34,0.18), transparent 55%);
    pointer-events: none;
}

.sws-members-app__copy {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.sws-members-app__kicker {
    display: inline-block;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #e87722;
    background: rgba(232,119,34,0.14);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.sws-members-app__title {
    font-family: 'Oswald', 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.1;
}

.sws-members-app__lead {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0 0 1rem;
}

.sws-members-app__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
}
.sws-members-app__bullets li {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    padding: 4px 0 4px 24px;
    position: relative;
}
.sws-members-app__bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e87722;
    box-shadow: 0 0 0 3px rgba(232,119,34,0.22);
}

.sws-members-app__hint {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.sws-members-app__qr-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.sws-members-app__qr-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 12px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    border: 3px solid #e87722;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sws-members-app__qr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.42);
}

.sws-members-app__qr {
    display: block;
    width: 240px;
    height: 240px;
    max-width: 100%;
    object-fit: contain;
    image-rendering: pixelated; /* keep QR crisp at any size */
}

.sws-members-app__qr-label {
    display: block;
    margin-top: 10px;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5a1a2a;
}

@media (max-width: 820px) {
    .sws-members-app__inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 1.75rem;
    }
    .sws-members-app__kicker { display: inline-block; }
    .sws-members-app__bullets li { text-align: left; }
    .sws-members-app__bullets { max-width: 360px; margin: 0 auto 1rem; }
    .sws-members-app__qr { width: 220px; height: 220px; }
}

.sws-community-hero__lead,
.sws-members-hero__lead {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(90,26,42,0.75);
}

.sws-community-grid {
    padding: 0 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sws-community-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sws-community-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    background: #ffffff;
    border: 1px solid rgba(90,26,42,0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sws-community-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(90,26,42,0.12);
    border-color: rgba(232,119,34,0.3);
}

.sws-community-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.sws-community-card h3 {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #3d1220;
    margin: 0 0 0.75rem;
}

.sws-community-card p {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(90,26,42,0.65);
    margin: 0 0 1.25rem;
    flex: 1;
}

.sws-community-card__cta {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    transition: color 0.2s ease;
}

.sws-community-card:hover .sws-community-card__cta {
    color: #ff8c33;
}

@media (max-width: 768px) {
    .sws-community-grid__inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sws-community-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── About Page Responsive ────────────────────── */

@media (max-width: 768px) {
    .sws-about-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sws-about-stats__inner {
        gap: 1.5rem;
    }

    .sws-about-stats__divider {
        display: none;
    }

    .sws-about-stats__item {
        min-width: 120px;
    }

    .sws-about-mission__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* wp-block-columns stacks below 781px by default; just tighten the
       card height for the stacked phone layout. */
    .sws-about-programs__card {
        min-height: 220px !important;
    }

    .sws-about-programs__card .wp-block-cover__inner-container h3,
    .sws-about-programs__card .wp-block-cover__inner-container .wp-block-heading {
        font-size: 1.6rem;
    }

    .sws-about-leadership__grid,
    .sws-about-leadership__grid--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .sws-about-affiliations__grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────
   BLOCK-EDITOR COMPAT LAYER
   When templates were converted from raw <!-- wp:html --> blocks to
   native Gutenberg blocks, some elements changed shape:
     • <a class="card">   → <div class="wp-block-column card">
     • <div class="role"> → <p class="role">
     • <span class="cta"> → <p class="cta"><a>...</a></p>
   The rules below bridge those shape changes so the existing visual
   styles still apply. Keep this section at the bottom so it wins.
   ───────────────────────────────────────────────── */

/* ── wp:columns wrappers should pick up our grid layouts ──────── */
.sws-community-grid__inner.wp-block-columns,
.sws-explore-grid.wp-block-columns,
.sws-baseball-staff__grid.wp-block-columns,
.sws-coaches-grid.wp-block-columns,
.sws-roster-stats__grid.wp-block-columns,
.sws-schedule-summary__inner.wp-block-columns {
    /* let wp-block-columns flex behavior do the work; just make sure
       columns wrap on tablet rather than crushing */
    flex-wrap: wrap;
    align-items: stretch;
}

/* ── Community / Explore / Members card CTAs (link inside <p>) ── */
.sws-community-card__cta a,
.sws-explore-cta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.sws-community-card:hover .sws-community-card__cta a,
.sws-explore-card:hover .sws-explore-cta a {
    color: #ff8c33;
}

/* When community-card / explore-card became wp-block-column wrappers
   they inherited wp-block-column's own margin-top rules. Reset. */
.wp-block-column.sws-community-card,
.wp-block-column.sws-explore-card {
    margin-top: 0 !important;
}

/* ── Members notice (new wrapper introduced during conversion) ── */
.sws-members-notice {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
}
.sws-members-notice__box {
    background: rgba(232,119,34,0.06);
    border: 1px solid rgba(232,119,34,0.15);
    border-radius: 12px;
    padding: 2rem;
}
.sws-members-notice__text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: rgba(90,26,42,0.7);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

/* ── Members hero buttons (wp:buttons replaced raw flex div) ──── */
.sws-members-hero__actions.wp-block-buttons {
    margin-top: 2rem;
    gap: 1rem;
}

/* ── Members app: lists block now uses wp-block-list class ────── */
.sws-members-app__bullets.wp-block-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.5rem;
}

/* ── Baseball: <div> coach/links became <p>; figure replaces img ─ */
.sws-baseball-team-card__coach.wp-block-paragraph,
.sws-baseball-team-card__coach { /* both old & new */
    margin-bottom: 1rem;
}
.sws-baseball-team-card__links a {
    margin-right: 1rem;
}
.sws-baseball-staff__role,
.sws-baseball-staff__name {
    margin: 0;
}
.sws-baseball-timeline__year {
    margin: 0;
}
.sws-baseball-timeline__img.wp-block-image {
    margin-top: 1rem;
}
.sws-baseball-timeline__img.wp-block-image figcaption {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(90,26,42,0.6);
    text-align: center;
    margin-top: 0.5rem;
}
/* Hero logo now wrapped in <figure>; strip default figure margins */
.sws-baseball-hero__logo.wp-block-image,
.sws-baseball-hero__img.wp-block-image {
    margin: 0;
}
.sws-baseball-hero__links.wp-block-buttons {
    gap: 0.75rem;
}

/* ── Roster: hero uses wp:cover now ───────────────────────────── */
.sws-roster-hero .wp-block-cover__inner-container,
.sws-page-hero .wp-block-cover__inner-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}
.sws-roster-hero__kicker,
.sws-page-hero__kicker {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e87722 !important;
    margin: 0 0 0.75rem;
}
.sws-roster-hero__title,
.sws-page-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin: 0 0 1rem;
}
.sws-roster-hero__lead,
.sws-page-hero__lead {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7) !important;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Roster team photo card (replaces inline-styled wrapper) */
.sws-roster-photo-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.sws-roster-photo-card .wp-block-image {
    margin: 0;
}
.sws-roster-photo-card .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
}
.sws-roster-photo-card__caption {
    background: #5a1a2a;
    padding: 1rem 1.5rem;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
}

/* Roster MSTW table wrapper */
.sws-roster-table-wrap {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sws-roster-table-wrap table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 0.9rem; }
.sws-roster-table-wrap th { background: #5a1a2a; color: #ffffff; font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; padding: 12px 16px; text-align: left; }
.sws-roster-table-wrap td { padding: 12px 16px; border-bottom: 1px solid #e5e7eb; vertical-align: middle; }
.sws-roster-table-wrap tr:hover td { background: rgba(232,119,34,0.04); }
.sws-roster-table-wrap img { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }

/* Coach card (new structure, replaces inline-styled SVG cards) */
.wp-block-column.sws-coach-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    margin-top: 0 !important;
    padding: 0;
}
.sws-coach-card__avatar {
    height: 200px;
    background: linear-gradient(135deg, #5a1a2a, #3d1220);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sws-coach-card__body {
    padding: 1.25rem;
}
.sws-coach-card__name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}
.sws-coach-card__role {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e87722;
    margin: 0;
}

/* Roster stats (replaces inline-styled grid) */
.sws-roster-stats {
    background: #1a1a2e;
    padding: 3.5rem 1.5rem;
}
.sws-roster-stats__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.sws-roster-stats__title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 2.5rem;
}
.wp-block-column.sws-roster-stats__item {
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06);
    margin-top: 0 !important;
}
.sws-roster-stats__num {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e87722;
    line-height: 1;
    margin: 0;
}
.sws-roster-stats__num--gold {
    color: #c9a84c;
}
.sws-roster-stats__label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0.5rem 0 0;
}

/* Schedule summary bar (replaces inline-styled flex strip) */
.sws-schedule-summary {
    background: #1a1a2e;
    padding: 1.5rem;
    border-bottom: 3px solid #e87722;
}
.sws-schedule-summary__inner {
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}
.wp-block-column.sws-schedule-summary__item {
    flex: 0 1 auto;
    margin-top: 0 !important;
}
.sws-schedule-summary__label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0 0 4px;
}
.sws-schedule-summary__value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.sws-schedule-summary__value--accent {
    color: #e87722;
}

/* Page titlebar — when converted to native blocks, the breadcrumb is
   a wp:paragraph not a span; force inline-block layout so it sits
   above the heading like the original markup. */
.sws-page-titlebar-inner > .sws-page-breadcrumb {
    display: block;
    margin: 0 0 0.5rem;
}

/* ── Mobile tweaks for the new block structures ───────────────── */
@media (max-width: 768px) {
    .sws-schedule-summary__inner.wp-block-columns {
        flex-direction: column;
        gap: 1.5rem;
    }
    .sws-roster-stats__grid.wp-block-columns,
    .sws-coaches-grid.wp-block-columns,
    .sws-baseball-staff__grid.wp-block-columns {
        flex-direction: column;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .sws-baseball-staff__grid.wp-block-columns,
    .sws-coaches-grid.wp-block-columns {
        flex-wrap: wrap;
    }
    .sws-baseball-staff__grid.wp-block-columns > .wp-block-column,
    .sws-coaches-grid.wp-block-columns > .wp-block-column {
        flex-basis: calc(50% - 1rem) !important;
    }
}

/* =============================================
   SWS HEADER — moved from parts/header.html so the
   template part's wp:html block stays small and
   editable in the Site Editor.
   ============================================= */

/* --- Base Header (companion to the FSE-sticky rules above) --- */
.sws-header {
    background: var(--ol-header-bg, #3d1220);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
}

/* Thin orange/maroon gradient at the very top of the header */
.sws-header__accent {
    height: 3px;
    background: linear-gradient(90deg, #e87722, #5a1a2a, #e87722);
}

.sws-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.sws-header.is-scrolled .sws-header__inner {
    padding-top: 2px;
    padding-bottom: 2px;
}

.sws-header.is-scrolled .sws-header__logo img {
    height: 40px;
}

.sws-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--ol-header-pad-y, 2px) 24px;
    transition: padding 0.3s ease;
}

/* --- Logo --- */
.sws-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.sws-header__logo img {
    height: var(--ol-header-logo-height, 104px);
    width: auto;
    transition: height 0.3s ease;
}

/* --- Desktop Navigation --- */
.sws-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sws-header__menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sws-header__menu-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--ol-header-nav-color, #ffffff);
    text-decoration: none;
    text-transform: uppercase;
    font-size: var(--ol-header-nav-font-size, 18px);
    font-weight: 600;
    letter-spacing: 0.08em;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.sws-header__menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #e87722;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.sws-header__menu-item > a:hover,
.sws-header__menu-item > a:focus {
    color: var(--ol-header-nav-hover, #e87722);
}

.sws-header__menu-item > a:hover::after,
.sws-header__menu-item > a:focus::after {
    width: 70%;
}

.sws-chevron {
    transition: transform 0.3s ease;
    margin-left: 2px;
}

/* --- Dropdown Submenus --- */
.sws-header__has-dropdown {
    position: relative;
}

.sws-header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #2a0d18;
    border: 1px solid rgba(232,119,34,0.15);
    border-radius: 8px;
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* Open is instant, close is slightly delayed so the cursor has time
       to cross onto the submenu without it disappearing on us. */
    transition: opacity 0.2s ease 0.12s,
                visibility 0.2s ease 0.12s,
                transform 0.2s ease 0.12s;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Invisible "hover bridge" — extends the dropdown's hoverable area up
   to the parent menu item so the cursor can travel from the link to
   the submenu without crossing un-hoverable space (which would close
   the menu instantly). */
.sws-header__dropdown::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
    pointer-events: auto;
}

.sws-header__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #2a0d18;
    border-left: 1px solid rgba(232,119,34,0.15);
    border-top: 1px solid rgba(232,119,34,0.15);
}

.sws-header__has-dropdown:hover .sws-header__dropdown,
.sws-header__has-dropdown:focus-within .sws-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    /* No delay on open — feels snappy */
    transition: opacity 0.2s ease,
                visibility 0.2s ease,
                transform 0.2s ease;
}

/* Extend the parent <li>'s hover target downward so the cursor doesn't
   fall into dead space between the link and the submenu while
   traversing diagonally. */
.sws-header__has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
    pointer-events: auto;
}

.sws-header__has-dropdown:hover .sws-chevron {
    transform: rotate(180deg);
}

.sws-header__dropdown li a {
    display: block;
    padding: 11px 22px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sws-header__dropdown li a:hover,
.sws-header__dropdown li a:focus {
    color: #e87722;
    background: rgba(232,119,34,0.08);
    border-left-color: #e87722;
}

/* --- Right Actions --- */
.sws-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.sws-header__register-btn {
    display: inline-block;
    padding: 8px 22px;
    background: #e87722;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sws-header__register-btn:hover {
    background: #ff8c33;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,119,34,0.4);
}

/* --- Hamburger --- */
.sws-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    padding: 8px 6px;
    transition: border-color 0.2s ease;
}

.sws-header__hamburger:hover {
    border-color: #e87722;
}

.sws-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sws-mobile-menu-open .sws-header__hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.sws-mobile-menu-open .sws-header__hamburger span:nth-child(2) {
    opacity: 0;
}

.sws-mobile-menu-open .sws-header__hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.sws-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #3d1220;
    z-index: 9998;
    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 80px 24px 40px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
}

.sws-mobile-menu-open .sws-mobile-menu {
    right: 0;
}

.sws-mobile-menu__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sws-mobile-menu__nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sws-mobile-menu__nav > ul > li > a,
.sws-mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 0;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.sws-mobile-menu__nav > ul > li > a:hover,
.sws-mobile-menu__toggle:hover {
    color: #e87722;
}

.sws-mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: max-height 0.3s ease;
}

.sws-mobile-menu__has-sub.is-open .sws-mobile-menu__sub {
    max-height: 500px;
}

.sws-mobile-menu__has-sub.is-open .sws-chevron {
    transform: rotate(180deg);
}

.sws-mobile-menu__sub li a {
    display: block;
    padding: 10px 0 10px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-left: 2px solid rgba(232,119,34,0.3);
    transition: all 0.2s ease;
}

.sws-mobile-menu__sub li a:hover {
    color: #e87722;
    border-left-color: #e87722;
}

.sws-mobile-menu__register-btn {
    display: block;
    margin-top: 24px;
    padding: 14px 24px;
    background: #e87722;
    color: #ffffff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.sws-mobile-menu__register-btn:hover {
    background: #ff8c33;
}

/* --- Header responsive --- */
@media (max-width: 1024px) {
    .sws-header__nav {
        display: none;
    }
    .sws-header__search-toggle {
        display: flex;
    }
    .sws-header__register-btn {
        display: none;
    }
    .sws-header__hamburger {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .sws-mobile-menu {
        display: none !important;
    }
}

/* ============================================================
   SOCIAL MEDIA PAGE — Platform Cards
   ============================================================ */
.sws-social-grid {
    gap: 1.75rem !important;
    align-items: stretch !important;
}

.sws-social-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.75rem !important;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 5px solid #e87722;
    display: flex !important;
    flex-direction: column !important;
    position: relative;
    overflow: hidden;
}

.sws-social-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 80px;
    opacity: 0.06;
    background: currentColor;
}

.sws-social-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
}

.sws-social-card--twitter  { border-top-color: #000000; }
.sws-social-card--instagram { border-top-color: #E1306C; }
.sws-social-card--facebook  { border-top-color: #1877F2; }
.sws-social-card--youtube   { border-top-color: #FF0000; }

/* Icon circle */
.sws-social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    background: #f4f4f6;
    flex-shrink: 0;
}

.sws-social-icon--twitter  { background: #000; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; letter-spacing: -0.05em; }
.sws-social-icon--instagram { background: linear-gradient(135deg, #833AB4, #E1306C, #F56040); color: #fff; }
.sws-social-icon--facebook  { background: #1877F2; color: #fff; font-family: Georgia, serif; font-size: 1.8rem; font-weight: 700; }
.sws-social-icon--youtube   { background: #FF0000; color: #fff; font-size: 1.2rem; }

.sws-social-card .sws-social-platform {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin: 0 0 0.3rem !important;
    color: #1a1a2e !important;
    line-height: 1.1 !important;
}

.sws-social-card .sws-social-handle {
    font-family: 'Barlow', 'Inter', monospace, sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin: 0 0 0.9rem !important;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.sws-social-card .sws-social-desc {
    font-family: 'Barlow', 'Inter', sans-serif;
    font-size: 0.93rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 1.5rem !important;
    flex-grow: 1;
}

/* Follow buttons */
.sws-social-btn .wp-block-button__link {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.65rem 1.25rem !important;
    border-radius: 6px !important;
    transition: all 0.25s ease !important;
    white-space: nowrap;
}

.sws-social-btn--twitter .wp-block-button__link  { background: #000 !important; color: #fff !important; }
.sws-social-btn--twitter .wp-block-button__link:hover  { background: #333 !important; }

.sws-social-btn--instagram .wp-block-button__link {
    background: linear-gradient(135deg, #833AB4, #E1306C) !important;
    color: #fff !important;
    border: none !important;
}
.sws-social-btn--instagram .wp-block-button__link:hover { opacity: 0.88; }

.sws-social-btn--facebook .wp-block-button__link  { background: #1877F2 !important; color: #fff !important; }
.sws-social-btn--facebook .wp-block-button__link:hover  { background: #1464d8 !important; }

.sws-social-btn--youtube .wp-block-button__link   { background: #FF0000 !important; color: #fff !important; }
.sws-social-btn--youtube .wp-block-button__link:hover   { background: #cc0000 !important; }

@media (max-width: 768px) {
    .sws-social-grid { flex-direction: column !important; }
    .sws-social-card { margin-bottom: 1.25rem; }
}

/* ============================================================
   PRACTICE CALENDAR PAGE — Google Calendar Embed
   ============================================================ */
.sws-calendar-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.sws-calendar-embed iframe {
    display: block;
    width: 100%;
    min-height: 640px;
    border: none;
}


/* ============================================================
   TEAM PHOTO BLOCK — Gutenberg wp:image block on team pages
   ============================================================ */
.sws-team-photo-block {
    max-width: 560px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    max-height: 480px;
}

.sws-team-photo-block img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 12px;
}

/* ============================================================
   NEWS GRID — [sws_news_carousel] on /news/
   Always shows the 6 most recent published posts.
   ============================================================ */
.sws-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) {
    .sws-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .sws-news-grid { grid-template-columns: 1fr; }
}

.sws-news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.sws-news-card__img-wrap { overflow: hidden; }
.sws-news-card__img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.sws-news-card__img-wrap:hover img { transform: scale(1.04); }
.sws-news-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sws-news-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.6rem;
}
.sws-news-card__title a { color: inherit; text-decoration: none; }
.sws-news-card__title a:hover { color: var(--wp--preset--color--maroon, #7b1c1c); }
.sws-news-card__excerpt {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 1rem;
    flex: 1;
}
.sws-news-card__meta {
    font-size: 0.75rem;
    color: #999;
    margin-top: auto;
}
.sws-news-grid__empty {
    text-align: center;
    color: #888;
    padding: 3rem 0;
}

/* ============================================================
   TEAM RECORDS — [sws_team_records] on /statistics/
   ============================================================ */

/* Season selector */
.sws-tr-season-bar {
    margin-bottom: 1.5rem;
}
.sws-tr-season-select {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--wp--preset--color--maroon, #7b1c1c);
    border-radius: 6px;
    color: var(--wp--preset--color--maroon, #7b1c1c);
    background: #fff;
    cursor: pointer;
}

/* Season panels */
.sws-tr-panel { display: none; }
.sws-tr-panel.is-active { display: block; }

/* Aggregate header card */
.sws-tr-header-card {
    background: #3b0a0a;
    color: #fff;
    border-radius: 10px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.sws-tr-header-record {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.sws-tr-big-record {
    font-size: 3rem;
    font-weight: 900;
    color: #f5c842;
    line-height: 1;
}
.sws-tr-big-pct {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.sws-tr-header-splits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 0.6rem 0;
}
.sws-tr-header-gender {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.sws-tr-header-gender .gender-boys { color: #7ec8e3; }
.sws-tr-header-gender .gender-girls { color: #f9a8c9; }

/* Per-team cards grid */
.sws-tr-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (max-width: 600px) {
    .sws-tr-cards-grid { grid-template-columns: 1fr; }
}

.sws-tr-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    border-top: 4px solid var(--wp--preset--color--maroon, #7b1c1c);
}
.sws-tr-card.gender-boys { border-top-color: #1a5276; }
.sws-tr-card.gender-girls { border-top-color: #8e44ad; }

.sws-tr-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.15rem;
}
.sws-tr-card-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}
.sws-tr-card-record {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--wp--preset--color--maroon, #7b1c1c);
}
.sws-tr-card.gender-boys .sws-tr-card-record { color: #1a5276; }
.sws-tr-card.gender-girls .sws-tr-card-record { color: #8e44ad; }

.sws-tr-card-pct {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: #777;
}
.sws-tr-card-pct.pct-great { color: #1a7a3c; }
.sws-tr-card-pct.pct-good  { color: #2e7d32; }
.sws-tr-card-pct.pct-mid   { color: #e65100; }
.sws-tr-card-pct.pct-low   { color: #b71c1c; }

.sws-tr-card-splits {
    border-top: 1px solid #eee;
    padding-top: 0.6rem;
}
.sws-tr-card-split-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #444;
}
.sws-tr-card-split-row span:last-child {
    font-weight: 700;
    color: #222;
}

.sws-tr-card-footer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.sws-tr-error {
    text-align: center;
    color: #888;
    padding: 2rem 0;
}

/* ============================================================
   PRACTICE CALENDAR  [sws_practice_calendar]  — Google Calendar–style grid
   ============================================================ */

.sws-gcal {
    font-family: 'Google Sans', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 960px;
    margin: 0 auto;
    color: #3c4043;
}

/* ── Toolbar: title + nav + selector ── */
.sws-gcal-toolbar {
    margin-bottom: 16px;
}

.sws-gcal-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--sws-primary, #5c0a14);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.sws-gcal-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sws-gcal-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sws-gcal-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 1.75rem;
    line-height: 1;
    color: #5f6368;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
}

.sws-gcal-nav-btn:hover {
    background: #f1f3f4;
    color: #3c4043;
}

.sws-gcal-month-label {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #3c4043;
    min-width: 148px;
    text-align: center;
    display: inline-block;
}

.sws-gcal-select {
    border: 1px solid #dadce0;
    border-radius: 20px;
    padding: 7px 32px 7px 14px;
    font-size: 0.875rem;
    color: #3c4043;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235f6368' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.sws-gcal-select:focus {
    outline: none;
    border-color: var(--sws-primary, #5c0a14);
    box-shadow: 0 0 0 2px rgba(92,10,20,.15);
}

/* ── Calendar body (card) ── */
.sws-gcal-body {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60,64,67,.12), 0 1px 2px rgba(60,64,67,.08);
}

/* ── Day-of-week header ── */
.sws-gcal-dow-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #dadce0;
    background: #f8f9fa;
}

.sws-gcal-dow {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #70757a;
    padding: 7px 0;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Week rows ── */
.sws-gcal-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-bottom: 1px solid #dadce0;
}

.sws-gcal-week:last-child {
    border-bottom: none;
}

/* ── Day cells ── */
.sws-gcal-cell {
    min-height: 88px;
    border-right: 1px solid #dadce0;
    padding: 4px 3px 6px;
    overflow: hidden;
}

.sws-gcal-cell:last-child {
    border-right: none;
}

.sws-gcal-cell--empty {
    background: #f8f9fa;
}

.sws-gcal-week .sws-gcal-cell:first-child,
.sws-gcal-week .sws-gcal-cell:last-child {
    background: rgba(0,0,0,.018);
}

.sws-gcal-week .sws-gcal-cell--empty:first-child,
.sws-gcal-week .sws-gcal-cell--empty:last-child {
    background: #f4f4f4;
}

/* ── Date number bubble ── */
.sws-gcal-date-num {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 0.8125rem;
    border-radius: 50%;
    margin-bottom: 3px;
    color: #3c4043;
}

.sws-gcal-cell.is-past .sws-gcal-date-num {
    color: #bdc1c6;
}

.sws-gcal-cell.is-today .sws-gcal-date-num {
    background: var(--sws-primary, #5c0a14);
    color: #fff;
    font-weight: 700;
}

/* ── Event chips ── */
.sws-gcal-chip {
    display: flex;
    align-items: baseline;
    gap: 3px;
    background: rgba(200,146,42,.13);
    border-left: 3px solid var(--sws-gold, #c8922a);
    border-radius: 0 3px 3px 0;
    padding: 1px 4px 2px;
    margin: 2px 0;
    overflow: hidden;
    cursor: default;
    line-height: 1.5;
}

.sws-gcal-chip-time {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--sws-primary, #5c0a14);
    white-space: nowrap;
    flex-shrink: 0;
}

.sws-gcal-chip-label {
    font-size: 0.65rem;
    color: #3c4043;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sws-gcal-chip--more {
    background: transparent;
    border-left-color: transparent;
    color: #70757a;
    font-size: 0.6rem;
    font-weight: 500;
    padding-left: 3px;
}

/* ── States ── */
.sws-gcal-loading {
    text-align: center;
    color: #70757a;
    padding: 3rem 0;
    font-style: italic;
}

.sws-cal-error,
.sws-cal-empty {
    text-align: center;
    color: #888;
    padding: 2rem 0;
    font-style: italic;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .sws-gcal-body {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .sws-gcal-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    .sws-gcal-cell {
        min-height: 52px;
        padding: 2px;
    }
    .sws-gcal-date-num {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.7rem;
    }
    .sws-gcal-chip {
        padding: 1px 2px;
    }
    .sws-gcal-chip-label {
        display: none;
    }
    .sws-gcal-chip-time {
        font-size: 0.55rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   [ol-team-photo] shortcode
   ═══════════════════════════════════════════════════════════════════════════ */

.ol-team-photo {
    margin: 0 0 1.5rem;
    padding: 0;
    text-align: center;
}

.ol-team-photo__img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.ol-team-photo__link {
    display: inline-block;
}

.ol-team-photo__caption {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

/* team-hero modifier — used on team page headers */
.ol-team-photo.team-hero {
    margin-bottom: 2rem;
}

.ol-team-photo.team-hero .ol-team-photo__img {
    width: 100%;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .ol-team-photo.team-hero .ol-team-photo__img {
        border-radius: 0;
    }
}

/* =============================================
   PHASE 4J — SWS FOOTER (BEM Component Styles)
   [ol-footer] shortcode output
   ============================================= */

.sws-footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
    font-family: 'Oswald', sans-serif;
}

.sws-footer__accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #e87722, #5a1a2a, #e87722);
}

.sws-footer__hero {
    padding: 50px 24px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sws-footer__hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.sws-footer__logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.sws-footer__tagline {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.sws-footer__main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 24px;
}

.sws-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Dynamic column count variants from OL nav_columns count */
.sws-footer__grid--3col { grid-template-columns: repeat(3, 1fr); }
.sws-footer__grid--4col { grid-template-columns: repeat(4, 1fr); }
.sws-footer__grid--5col { grid-template-columns: repeat(5, 1fr); }

.sws-footer__heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #e87722;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232,119,34,0.3);
}

.sws-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sws-footer__links li {
    margin-bottom: 10px;
}

.sws-footer__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.sws-footer__links a:hover,
.sws-footer__links a:focus {
    color: #e87722 !important;
    padding-left: 6px;
}

.sws-footer__social {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.sws-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.25s ease;
}

.sws-footer__social-link:hover {
    background: #e87722 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232,119,34,0.3);
}

.sws-footer__signup {
    margin-top: 4px;
}

.sws-footer__signup-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin: 0 0 10px 0;
}

.sws-footer__signup-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s ease;
}

.sws-footer__signup-form:focus-within {
    border-color: #e87722;
}

.sws-footer__signup-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border: none;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    outline: none;
    min-width: 0;
}

.sws-footer__signup-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.sws-footer__signup-btn {
    padding: 10px 14px;
    background: #e87722;
    border: none;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
}

.sws-footer__signup-btn:hover {
    background: #ff8c33;
}

.sws-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 24px;
    background: rgba(0,0,0,0.15);
}

.sws-footer__bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sws-footer__copyright {
    margin: 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

.sws-footer__privacy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.sws-footer__privacy:hover {
    color: #e87722 !important;
}

@media (max-width: 900px) {
    .sws-footer__grid,
    .sws-footer__grid--4col,
    .sws-footer__grid--5col {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 540px) {
    .sws-footer__grid,
    .sws-footer__grid--4col,
    .sws-footer__grid--5col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .sws-footer__hero {
        padding: 36px 24px 24px;
    }
    .sws-footer__logo {
        height: 60px;
    }
    .sws-footer__tagline {
        font-size: 0.95rem;
    }
    .sws-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   PLUGIN BUG GUARD — MSTW Team Rosters emits
   <div id='table-id'>SLUG</div> inside <table>
   (invalid HTML; browsers hoist it out). Its
   inline display:none can be lost in kses-
   filtered contexts, leaking the slug as text.
   Guard it here. Reported to plugin agent.
   ============================================= */
div#table-id {
	display: none !important;
}

/* =============================================
   A11Y — Skip-to-content link (visible on focus)
   ============================================= */
.sws-skip-link {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 100000;
	background: #e87722;
	color: #ffffff;
	font-family: 'Barlow Condensed', 'Oswald', sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 22px;
	transition: top 0.2s ease;
}

.sws-skip-link:focus-visible {
	top: 12px;
	outline: 3px solid #ffffff;
	outline-offset: 2px;
}

/* OL-2026-08-21-sponsor-bar: double sponsor bar height so sponsor logos display larger */
.sws-topbar-strip{height:200px !important;}
.sws-sponsor-logo{max-height:176px !important;max-width:360px !important;}
.sws-sponsor-label{margin-top:-70px !important;}

/* OL-2026-08-21-sponsor-label-center: truly vertically center the SPONSORED BY label */
.sws-sponsor-label{top:50% !important;margin-top:0 !important;transform:translateY(-50%) rotate(180deg) !important;}

/* =============================================
   SPORT TEAM-SELECTOR PAGES — light-bg contrast fix (2026-08-30)
   Basketball(1270) / Volleyball(1272) / Baseball(8) render the shared
   .sws-explore-card (built for DARK backgrounds: white text on a
   translucent-white card) on a WHITE section, so the team menu (h3) was
   invisible until hover. Restore a solid light card + dark text here.
   Scoped by page id so the dark homepage "Explore" section is unaffected.
   ============================================= */
.page-id-1270 .sws-explore-card,
.page-id-1272 .sws-explore-card,
.page-id-8 .sws-explore-card {
    background: #ffffff;
    border: 1px solid #ece3e0;
    box-shadow: 0 2px 12px rgba(61, 18, 32, 0.07);
}
.page-id-1270 .sws-explore-card h3,
.page-id-1272 .sws-explore-card h3,
.page-id-8 .sws-explore-card h3 {
    color: #3d1220;
}
.page-id-1270 .sws-explore-card p,
.page-id-1272 .sws-explore-card p,
.page-id-8 .sws-explore-card p {
    color: #555555;
}
.page-id-1270 .sws-explore-card:hover,
.page-id-1272 .sws-explore-card:hover,
.page-id-8 .sws-explore-card:hover {
    background: #fffaf6;
    border-color: rgba(232, 119, 34, 0.40);
}


/* ===== Unified sport team-card grid: fixed 3-up, centered, uniform size (all sports) ===== */
.sws-teamcards-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2rem;max-width:860px;margin:2.5rem auto 0;justify-content:center;}
@media (max-width:900px){.sws-teamcards-grid{grid-template-columns:repeat(2,minmax(0,1fr));max-width:620px;}}
@media (max-width:560px){.sws-teamcards-grid{grid-template-columns:1fr;max-width:340px;}}


/* ===== Schedule Media column (camera-icon link to OL game media) ===== */
.mstw-ss-game-media{text-align:center;white-space:nowrap;}
.ol-media-link{display:inline-flex;align-items:center;justify-content:center;color:#721621;line-height:0;transition:color .15s ease,transform .15s ease;}
.ol-media-link:hover{color:#a11d2e;transform:scale(1.15);}
