/*
 * SALOS Production Page Styles v1.2
 * Paste into Appearance → Customize → Additional CSS
 */

/* ── Neve overrides ────────────────────────────────────────────────────── */
.salos-production-body .neve-main,
.salos-production-body #content,
.salos-production-body .nv-content-wrap,
.salos-production-body .neve-main > .container {
    background: #f4f4f2;
    color: #111111;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-production-body .salos-production-page h1,
.salos-production-body .salos-production-page h2,
.salos-production-body .salos-production-page h3 {
    color: inherit !important;
}

/* ── Page shell ────────────────────────────────────────────────────────── */
.salos-production-page {
    background: #f4f4f2;
    min-height: 60vh;
}

.salos-prod-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* HERO BANNER                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-banner {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 0;
}

.salos-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    filter: blur(3px) brightness(0.4);
    transform: scale(1.05);
}

.salos-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 20, 50, 0.3) 0%,
        rgba(10, 20, 50, 0.75) 60%,
        rgba(10, 20, 50, 0.95) 100%
    );
}

.salos-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 2.5rem;
}

.salos-back-link {
    display: inline-block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}
.salos-back-link:hover { color: #ffffff; }

.salos-banner-content {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.salos-poster {
    width: 240px;
    flex-shrink: 0;
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    display: block;
    position: relative;
    z-index: 3;
}

@media (max-width: 600px) {
    .salos-banner { min-height: 380px; }
    .salos-poster { width: 130px; }
    .salos-banner-content { gap: 1rem; align-items: flex-end; }
}

.salos-banner-text {
    flex: 1;
    min-width: 0;
}

.salos-year-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
}

.salos-show-title,
.salos-banner-text h1,
.salos-banner-text .salos-show-title,
.salos-production-body .salos-banner h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 1rem !important;
    line-height: 1.15 !important;
    display: block !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.salos-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.salos-quick-facts span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.85);
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* SHOW DESCRIPTION                                                        */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-blurb-section {
    background: #ffffff;
    border-bottom: 3px solid #c0392b;
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.salos-blurb {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #333;
    max-width: 720px;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* HIGHLIGHT IMAGES                                                        */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-highlights {
    display: grid;
    gap: 4px;
    margin: 0;
    background: #0a1432;
}

/* 1 image: just the main */
.salos-highlights--1 {
    grid-template-columns: 1fr;
    grid-template-rows: 400px;
}

/* 2–5 images: large left, stack on right */
.salos-highlights--2,
.salos-highlights--3,
.salos-highlights--4,
.salos-highlights--5 {
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 420px;
}

.salos-highlight-main {
    overflow: hidden;
    height: 100%;
}

.salos-highlight-main a,
.salos-highlight-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.salos-highlight-main a:hover img { transform: scale(1.03); }

.salos-highlight-thumbs {
    display: grid;
    gap: 4px;
    height: 100%;
}

.salos-highlight-thumbs--1 { grid-template-rows: 1fr; }
.salos-highlight-thumbs--2 { grid-template-rows: 1fr 1fr; }
.salos-highlight-thumbs--3 { grid-template-rows: 1fr 1fr 1fr; }
.salos-highlight-thumbs--4 { grid-template-rows: 1fr 1fr 1fr 1fr; }

.salos-highlight-thumbs a {
    display: block;
    overflow: hidden;
    height: 100%;
}

.salos-highlight-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.salos-highlight-thumbs a:hover img { transform: scale(1.05); }

@media (max-width: 640px) {
    .salos-highlights--2,
    .salos-highlights--3,
    .salos-highlights--4,
    .salos-highlights--5 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 220px;
    }
    .salos-highlight-main {
        grid-column: 1 / -1;
    }
    .salos-highlight-thumbs {
        grid-column: 1 / -1;
        grid-template-rows: 1fr;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* NODA / REVIEW QUOTE                                                     */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-quote-section {
    background: #0a1432;
    padding: 3rem 1.5rem;
}

.salos-quote {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.salos-quote-mark {
    font-size: 6rem;
    line-height: 0.5;
    color: #c0392b;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    display: block;
}

.salos-quote blockquote {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #ffffff;
    font-style: italic;
    margin: 0 0 1rem;
    border: none;
    padding: 0;
}

.salos-quote cite {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    font-style: normal;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
}

.salos-quote-link {
    display: inline-block;
    font-size: 0.875rem;
    color: #c0392b;
    text-decoration: none;
    border-bottom: 1px solid rgba(192,57,43,0.4);
    padding-bottom: 2px;
    transition: border-color 0.15s;
}
.salos-quote-link:hover { border-color: #c0392b; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* TABS                                                                    */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-tabs {
    display: flex;
    gap: 0;
    border-bottom: 3px solid #0a1432;
    margin: 2.5rem 0 0;
    flex-wrap: wrap;
}

.salos-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.salos-tab:hover { color: #0a1432; }

.salos-tab--active {
    color: #0a1432;
    border-bottom-color: #c0392b;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* TAB PANELS                                                              */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-tab-panel { padding: 2rem 0; }
.salos-tab-panel--hidden { display: none; }

.salos-section-heading {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #c0392b !important;
    margin: 2rem 0 0.875rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.salos-section-heading:first-child { margin-top: 0 !important; }

/* ── Person grid (team, cast, orchestra) ────────────────────────────── */
.salos-person-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
}

.salos-person-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #0a1432;
    border-radius: 0 4px 4px 0;
    padding: 0.6rem 0.875rem;
}

.salos-person-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #111;
}

.salos-person-role {
    font-size: 0.8125rem;
    color: #666;
    margin-top: 2px;
}

.salos-cast-note {
    font-style: italic;
    color: #999;
    font-size: 0.75rem;
}

.salos-chorus {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.7;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 0.875rem 1rem;
    margin-bottom: 1rem;
}

/* ── External link ──────────────────────────────────────────────────── */
.salos-ext-link {
    display: inline-block;
    font-size: 0.875rem;
    color: #c0392b;
    text-decoration: none;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(192,57,43,0.3);
    padding-bottom: 1px;
}
.salos-ext-link:hover { border-color: #c0392b; }

/* ── Photo credit ───────────────────────────────────────────────────── */
.salos-photo-credit {
    font-size: 0.8125rem;
    color: #888;
    margin-bottom: 1rem;
}

/* ── Album cards ────────────────────────────────────────────────────── */
.salos-album-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.salos-album-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #c0392b;
    border-radius: 0 6px 6px 0;
    text-decoration: none;
    color: #111;
    transition: background 0.15s;
}
.salos-album-card:hover { background: #fdf4f3; }

.salos-album-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.salos-album-card strong { display: block; font-size: 0.9375rem; margin-bottom: 2px; }
.salos-album-card span { font-size: 0.8125rem; color: #c0392b; }

/* ── Video grid ─────────────────────────────────────────────────────── */
.salos-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.salos-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

.salos-video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.salos-video-label {
    font-size: 0.875rem;
    color: #555;
    margin: 0.5rem 0 0;
    text-align: center;
}

/* ── Document list ──────────────────────────────────────────────────── */
.salos-doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.salos-doc-list li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 3px solid #0a1432;
    border-radius: 0 6px 6px 0;
    text-decoration: none;
    color: #111;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.15s;
}
.salos-doc-list li a:hover { background: #f5f7ff; }

.salos-doc-meta {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* LIGHTBOX                                                                */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.salos-lightbox--open { display: flex; }

.salos-lb-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salos-lb-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.salos-lb-close,
.salos-lb-prev,
.salos-lb-next {
    position: fixed;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.15s;
    z-index: 2;
}
.salos-lb-close { top: 1.25rem; right: 1.25rem; font-size: 1.5rem; }
.salos-lb-prev  { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.salos-lb-next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }

.salos-lb-close:hover,
.salos-lb-prev:hover,
.salos-lb-next:hover { color: #c0392b; }


/* ═══════════════════════════════════════════════════════════════════════ */
/* PAST PRODUCTIONS ARCHIVE PAGE                                           */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ── Neve overrides for archive page ───────────────────────────────────── */
.salos-archive-body .neve-main,
.salos-archive-body #content,
.salos-archive-body .nv-content-wrap {
    background: #f4f4f2;
    color: #111;
    max-width: 100% !important;
    padding: 0 !important;
}

/* ── Page shell ─────────────────────────────────────────────────────────── */
.salos-archive-page {
    background: #f4f4f2;
    min-height: 60vh;
}

.salos-archive-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

/* ── Page header ────────────────────────────────────────────────────────── */
.salos-archive-header {
    border-left: 4px solid #c0392b;
    padding-left: 1.25rem;
    margin-bottom: 3rem;
}

.salos-archive-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1432 !important;
    margin: 0 0 0.5rem !important;
}

.salos-archive-header p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    max-width: 620px;
}

/* ── Section titles ─────────────────────────────────────────────────────── */
.salos-archive-section {
    margin-bottom: 4rem;
}

.salos-archive-section-title {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #c0392b !important;
    margin: 0 0 1.5rem !important;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
}

/* ── Production card grid ───────────────────────────────────────────────── */
.salos-prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .salos-prod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .salos-prod-grid { grid-template-columns: 1fr; }
}

/* ── Individual card ────────────────────────────────────────────────────── */
.salos-prod-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #111;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salos-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 20, 50, 0.15);
}

.salos-prod-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #0a1432;
}

.salos-prod-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.salos-prod-card:hover .salos-prod-card-img img {
    transform: scale(1.04);
}

.salos-prod-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 600;
}

.salos-prod-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.salos-prod-card:hover .salos-prod-card-overlay {
    opacity: 1;
}

.salos-prod-card-overlay span {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.salos-prod-card-info {
    padding: 0.875rem 1rem 1rem;
    border-top: 3px solid #0a1432;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.salos-prod-card-info h3 {
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.salos-prod-card-year {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c0392b;
}

.salos-prod-card-venue {
    font-size: 0.75rem;
    color: #888;
}

/* ── Historical table section ───────────────────────────────────────────── */
.salos-archive-historical .salos-archive-content {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 1.5rem;
    overflow-x: auto;
}

.salos-archive-historical table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.salos-archive-historical th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    padding: 0.5rem 1rem 0.5rem 0;
    border-bottom: 2px solid #e5e5e5;
}

.salos-archive-historical td {
    padding: 0.5rem 1rem 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    vertical-align: top;
}

.salos-archive-historical tr:last-child td {
    border-bottom: none;
}

.salos-archive-historical a {
    color: #c0392b;
    text-decoration: none;
}

.salos-archive-historical a:hover {
    text-decoration: underline;
}

/* ── Concert card — show full date in red slot instead of just year ──── */
.salos-prod-card-info--concert .salos-prod-card-year {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #c0392b;
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* HOMEPAGE                                                                */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ── Neve overrides ─────────────────────────────────────────────────── */
.salos-home-body .neve-main,
.salos-home-body #content,
.salos-home-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-home-page { background: #f4f4f2; }

.salos-home-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Shared button styles ───────────────────────────────────────────── */
.salos-home-btn {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    text-decoration: none !important;
    transition: opacity 0.15s, transform 0.15s;
    letter-spacing: 0.02em;
}
.salos-home-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.salos-home-btn--primary { background: #c0392b; color: #ffffff !important; }
.salos-home-btn--primary:hover { color: #ffffff !important; background: #c0392b; }
.salos-home-btn--secondary { background: rgba(255,255,255,0.15); color: #ffffff !important; border: 1px solid rgba(255,255,255,0.4); }
.salos-home-btn--secondary:hover { color: #ffffff !important; }
.salos-home-btn--outline { background: transparent; color: #0a1432 !important; border: 1.5px solid #0a1432; }
.salos-home-btn--outline:hover { color: #0a1432 !important; }
.salos-home-btn--dark { background: #0a1432; color: #ffffff !important; }
.salos-home-btn--dark:hover { color: #ffffff !important; background: #0a1432; }

/* ── Shared section labels ──────────────────────────────────────────── */
.salos-home-section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.5rem;
}

.salos-home-section-heading {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 1rem !important;
    line-height: 1.25 !important;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ① HERO                                                                  */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    /* height, brightness and strip speed controlled via Homepage Settings ACF fields */
}

.salos-home-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    /* brightness controlled by Homepage Settings */
}

.salos-home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,50,0.15) 0%,
        rgba(10,20,50,0.55) 45%,
        rgba(10,20,50,0.82) 70%,
        rgba(10,20,50,0.65) 100%
    );
}

.salos-home-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

.salos-home-hero-content { max-width: 640px; }

.salos-home-tagline {
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.salos-home-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif !important;
}

.salos-home-title span {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.salos-home-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin: 0 0 2rem;
    font-family: 'Poppins', sans-serif;
}

.salos-home-hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.salos-home-hero-credit {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    z-index: 3;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.salos-home-hero-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #c0392b;
    z-index: 3;
}

@media (max-width: 640px) {
    .salos-home-hero { min-height: 85vh !important; }
    .salos-home-hero-inner { padding-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ② CURRENT SHOW                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-show {
    background: #f4f4f2;
    padding: 0 0 2.5rem;
}

/* Show card matches tickets band width exactly */
.salos-home-show .salos-home-inner,
.salos-tickets-band {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.salos-home-show-card {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10,20,50,0.14);
}

.salos-home-show-header {
    background: #0a1432;
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.salos-home-show-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.salos-home-show-dates-header {
    font-size: 0.875rem;
    color: #c0392b;
    font-weight: 600;
}

.salos-home-show-body {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #ffffff;
    overflow: hidden;
}

@media (max-width: 600px) {
    .salos-home-show-body { grid-template-columns: 1fr; min-height: auto; }
}

/* Poster fills its column completely */
.salos-home-show-poster {
    background: #0a1432;
    overflow: hidden;
    align-self: stretch;
    display: flex;
}

.salos-home-show-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .salos-home-show-poster {
        position: relative;
        height: auto;
        display: flex;
        justify-content: center;
        padding: 1.5rem;
    }
    .salos-home-show-poster img {
        position: static;
        width: auto;
        height: auto;
        max-width: 200px;
        max-height: 300px;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
}

.salos-home-show-info {
    padding: 2.25rem 2.5rem;
}

.salos-home-show-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
}

.salos-home-show-title {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.75rem !important;
    line-height: 1.1 !important;
}

.salos-home-show-meta {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 0.875rem;
}

.salos-home-show-blurb {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.65;
    margin: 0 0 1.5rem;
}

.salos-home-show-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ③ PHOTO STRIP                                                            */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-strip {
    overflow: hidden;
    background: #0a1432;
    /* height controlled by Homepage Settings */
}

.salos-home-strip-track {
    display: flex;
    gap: 4px;
    height: 100%;
    animation: salos-strip-scroll 60s linear infinite;
    width: max-content;
}

.salos-home-strip-track:hover { animation-play-state: paused; }

.salos-home-strip-item {
    flex-shrink: 0;
    overflow: hidden;
    /* width controlled by Homepage Settings (1.5x strip height) */
}

.salos-home-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.3s;
}

.salos-home-strip-item:hover img {
    filter: brightness(1) saturate(1);
}

@keyframes salos-strip-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ④ ABOUT + STATS                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-about {
    background: #ffffff;
    padding: 4rem 0;
    border-top: 1px solid #ebebeb;
}

.salos-home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 720px) {
    .salos-home-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.salos-home-about-text p {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.salos-home-about-text .salos-home-btn { margin-top: 0.5rem; }

.salos-home-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.salos-home-stat {
    background: #f4f4f2;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #0a1432;
    border-radius: 0 0 6px 6px;
    padding: 1.25rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.salos-home-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0a1432;
    line-height: 1;
}

.salos-home-stat-number--sm {
    font-size: 1.25rem;
}

.salos-home-stat-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ⑤ LATEST PRODUCTION + CONCERT                                           */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-recent {
    background: #f4f4f2;
    padding: 3.5rem 0;
}

.salos-home-recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

@media (max-width: 600px) {
    .salos-home-recent-grid { grid-template-columns: 1fr; }
}

.salos-home-recent-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salos-home-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,20,50,0.12);
}

.salos-home-recent-card-header {
    background: #0a1432;
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 0.6rem 1rem;
}

.salos-home-recent-card-body {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0;
    flex: 1;
    min-height: 180px;
}

.salos-home-recent-card-body img {
    width: 130px;
    height: 100%;
    object-fit: cover;
    display: block;
}

.salos-home-recent-card-body > div {
    padding: 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.salos-home-recent-card-body strong {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.salos-home-recent-card-body span {
    font-size: 0.875rem;
    color: #c0392b;
}

.salos-home-recent-card-body em {
    font-size: 0.8125rem;
    color: #888;
    font-style: normal;
    margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* ⑥ JOIN CTA                                                              */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-cta {
    background: #0a1432;
    padding: 3rem 0;
}

.salos-home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.salos-home-cta h2 {
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 0.375rem !important;
}

.salos-home-cta p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* TICKETS BAND                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-tickets-band {
    display: block;
    background: #f4f4f2;
    padding: 0.75rem 0;
    text-decoration: none !important;
}

.salos-tickets-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.125rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(192,57,43,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    animation: salos-tickets-pulse 2.5s ease-in-out infinite;
}

.salos-tickets-band-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: salos-tickets-shimmer 2.5s ease-in-out infinite;
}

.salos-tickets-band:hover .salos-tickets-band-inner {
    background: #a93226 !important;
    animation-play-state: paused;
}

.salos-tickets-band-show {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.02em;
}

.salos-tickets-band-dates {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.9rem;
}

.salos-tickets-band-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.salos-tickets-band-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.salos-tickets-band-arrow {
    font-size: 1.5rem;
    color: #ffffff !important;
    line-height: 1;
}

@media (max-width: 600px) {
    .salos-tickets-band { padding: 0; }
    .salos-tickets-band-inner {
        border-radius: 0;
        flex-direction: column;
        text-align: center;
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
    .salos-tickets-band-show { font-size: 0.875rem; }
}

/* ── Prominent tickets button inside show card ────────────────────────── */
.salos-home-btn--tickets {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    color: #ffffff !important;
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    padding: 0.875rem 2rem !important;
    box-shadow: 0 4px 16px rgba(192,57,43,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
    letter-spacing: 0.02em;
    animation: salos-tickets-pulse 2.5s ease-in-out infinite;
    border: none !important;
}
.salos-home-btn--tickets:hover {
    background: linear-gradient(135deg, #a93226 0%, #922b21 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(192,57,43,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px) !important;
}



/* ═══════════════════════════════════════════════════════════════════════ */
/* SOCIAL ICONS                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-home-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
}

.salos-home-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f4f4f2;
    border: 1px solid #e0e0e0;
    color: #0a1432;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.salos-home-social-link:hover {
    background: #0a1432;
    color: #ffffff !important;
    border-color: #0a1432;
}

/* ── Mobile slider: one full image at a time, next peeks in ─────────── */
@media (max-width: 640px) {
    .salos-home-strip { height: 260px !important; }
    .salos-home-strip-item { width: 88vw !important; }
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* WHAT'S ON PAGE                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ── Neve overrides ─────────────────────────────────────────────────── */
.salos-whats-on-body .neve-main,
.salos-whats-on-body #content,
.salos-whats-on-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-whats-on-page { background: #f4f4f2; }

.salos-wo-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ── Page header ────────────────────────────────────────────────────── */
.salos-wo-header {
    background: #0a1432;
    padding: 3rem 0 2.5rem;
    margin-bottom: 0;
    border-bottom: 4px solid #c0392b;
}

.salos-wo-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.salos-wo-header h1 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 0.5rem !important;
}

.salos-wo-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ── Featured show card ─────────────────────────────────────────────── */
.salos-wo-featured {
    margin-top: 2.5rem;
}

.salos-wo-featured--concert .salos-wo-featured-card {
    border-left: 4px solid #c0392b;
}

.salos-wo-featured-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(10,20,50,0.1);
}

@media (max-width: 700px) {
    .salos-wo-featured-card {
        grid-template-columns: 1fr;
    }
}

.salos-wo-featured-poster {
    background: #0a1432;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.salos-wo-featured-poster img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@media (max-width: 700px) {
    .salos-wo-featured-poster {
        padding: 1.5rem;
    }
    .salos-wo-featured-poster img {
        max-width: 200px;
        max-height: 300px;
    }
}

.salos-wo-featured-info {
    padding: 2rem 2.25rem;
}

.salos-wo-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.5rem;
}

.salos-wo-show-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 1.25rem !important;
    line-height: 1.15 !important;
}

/* ── Countdown ──────────────────────────────────────────────────────── */
.salos-wo-countdown {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    background: #0a1432;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    margin-bottom: 1.25rem;
}

.salos-wo-countdown-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #c0392b;
    line-height: 1;
}

.salos-wo-countdown-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ── Meta rows ──────────────────────────────────────────────────────── */
.salos-wo-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.salos-wo-meta-row {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: #444;
}

.salos-wo-meta-icon { flex-shrink: 0; }

.salos-wo-blurb {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.salos-wo-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── Watch this space ───────────────────────────────────────────────── */
.salos-wo-empty {
    margin-top: 3rem;
}

.salos-wo-empty-inner {
    background: #ffffff;
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid #e5e5e5;
}

.salos-wo-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.salos-wo-empty-inner h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.75rem !important;
}

.salos-wo-empty-inner p {
    font-size: 1rem;
    color: #666;
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ── Recently section ───────────────────────────────────────────────── */
.salos-wo-recently {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.salos-wo-section-title {
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #c0392b !important;
    margin: 0 0 1.25rem !important;
}

.salos-wo-recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .salos-wo-recent-grid { grid-template-columns: 1fr; }
}

.salos-wo-recent-card {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salos-wo-recent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10,20,50,0.15);
}

.salos-wo-recent-card-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #0a1432;
}

.salos-wo-recent-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.salos-wo-recent-card:hover .salos-wo-recent-card-img img {
    transform: scale(1.04);
}

.salos-wo-recent-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,20,50,0.9) 0%, transparent 55%);
}

.salos-wo-recent-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.salos-wo-recent-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
}

.salos-wo-recent-card-text strong {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.salos-wo-recent-card-text span {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* GLOBAL POPPINS FONT APPLICATION                                         */
/* Ensures all SALOS custom elements use Poppins to match the Neve header  */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-production-page,
.salos-home-page,
.salos-archive-page,
.salos-whats-on-page {
    font-family: 'Poppins', sans-serif;
}

/* Headings */
.salos-show-title,
.salos-archive-header h1,
.salos-wo-header h1,
.salos-wo-show-title,
.salos-home-show-title,
.salos-home-section-heading,
.salos-home-cta h2,
.salos-section-heading,
.salos-quote blockquote {
    font-family: 'Poppins', sans-serif !important;
}

/* Labels and eyebrows */
.salos-home-section-label,
.salos-home-show-eyebrow,
.salos-home-show-label,
.salos-home-recent-card-header,
.salos-wo-eyebrow,
.salos-wo-section-title,
.salos-wo-recent-type,
.salos-archive-section-title,
.salos-year-label,
.salos-tab,
.salos-tabs {
    font-family: 'Poppins', sans-serif !important;
}

/* Body text */
.salos-blurb,
.salos-wo-blurb,
.salos-home-about-text p,
.salos-home-cta p,
.salos-person-name,
.salos-person-role,
.salos-meta-grid dt,
.salos-meta-grid dd,
.salos-wo-meta-row,
.salos-quick-facts span {
    font-family: 'Poppins', sans-serif;
}

/* Buttons */
.salos-home-btn,
.salos-tickets-band-label,
.salos-tickets-band-show {
    font-family: 'Poppins', sans-serif !important;
}

/* Stat numbers */
.salos-home-stat-number,
.salos-home-stat-label,
.salos-wo-countdown-number,
.salos-wo-countdown-label {
    font-family: 'Poppins', sans-serif;
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* JOIN US PAGE                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */

/* ── Neve overrides ─────────────────────────────────────────────────── */
.salos-join-body .neve-main,
.salos-join-body #content,
.salos-join-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-join-page { background: #f4f4f2; }

.salos-join-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.salos-join-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.salos-join-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.45);
}

.salos-join-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,50,0.1) 0%,
        rgba(10,20,50,0.6) 50%,
        rgba(10,20,50,0.88) 100%
    );
}

.salos-join-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.salos-join-hero-inner h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0.25rem 0 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.1 !important;
}

.salos-join-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.salos-join-eyebrow-dark {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.salos-join-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 1.75rem;
    font-family: 'Poppins', sans-serif;
}

/* ── Sections ───────────────────────────────────────────────────────── */
.salos-join-section {
    padding: 3.5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.salos-join-section:last-child { border-bottom: none; }

.salos-join-section h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 1rem !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.2 !important;
}

.salos-join-section p {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

/* ── Two column layout ──────────────────────────────────────────────── */
.salos-join-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.salos-join-two-col--reverse {
    direction: rtl;
}
.salos-join-two-col--reverse > * {
    direction: ltr;
}

@media (max-width: 720px) {
    .salos-join-two-col,
    .salos-join-two-col--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

.salos-join-two-col-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10,20,50,0.12);
    aspect-ratio: 4/3;
}

.salos-join-two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Info cards ─────────────────────────────────────────────────────── */
.salos-join-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 800px) {
    .salos-join-cards { grid-template-columns: 1fr; }
}

.salos-join-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #0a1432;
}

.salos-join-card-icon {
    width: 52px;
    height: 52px;
    background: #f4f4f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #0a1432;
}

.salos-join-card h3 {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.75rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-join-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.salos-join-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #c0392b;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.salos-join-card-link:hover { text-decoration: underline; }

/* ── Apply / contact section ────────────────────────────────────────── */
.salos-join-apply { background: transparent; }

.salos-join-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.salos-join-contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.salos-join-contact-row--address {
    align-items: flex-start;
}

.salos-join-contact-row svg {
    flex-shrink: 0;
    color: #0a1432;
}

.salos-join-contact-row a {
    color: #c0392b;
    text-decoration: none;
}
.salos-join-contact-row a:hover { text-decoration: underline; }

.salos-join-contact-row address {
    font-style: normal;
    line-height: 1.65;
}

/* ── Join Us tweaks ─────────────────────────────────────────────────── */

/* Taller hero */
.salos-join-hero { min-height: 480px; }

/* Equal height cards */
.salos-join-cards { align-items: stretch; }
.salos-join-card {
    display: flex;
    flex-direction: column;
}
.salos-join-card p { flex: 1; }

/* Tighter section padding */
.salos-join-section { padding: 2.75rem 0; }

/* Bolder icons */
.salos-join-card-icon {
    width: 56px;
    height: 56px;
    background: #0a1432;
    color: #ffffff;
}

/* Contact section — align photo top, constrain height */
.salos-join-apply .salos-join-two-col {
    align-items: start;
}
.salos-join-apply .salos-join-two-col-img {
    aspect-ratio: 3/2;
    max-height: 320px;
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* MEMBERS PAGE                                                             */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-members-body .neve-main,
.salos-members-body #content,
.salos-members-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-members-page { background: #f4f4f2; }

/* ── Hero photo ─────────────────────────────────────────────────────── */
.salos-members-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.salos-members-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.salos-members-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,50,0.1) 0%,
        rgba(10,20,50,0.55) 55%,
        rgba(10,20,50,0.85) 100%
    );
}

.salos-members-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.salos-members-hero-text h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 0.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-members-hero-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    max-width: 560px;
}

/* Plain header fallback (no photo) */
.salos-members-header-plain {
    background: #0a1432;
    padding: 3rem 2rem;
    border-bottom: 4px solid #c0392b;
}

.salos-members-header-plain h1 {
    font-size: 2rem !important;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0 0 0.5rem !important;
}

.salos-members-header-plain p {
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* ── Panels ─────────────────────────────────────────────────────────── */
.salos-members-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 2.5rem auto 4rem;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

@media (max-width: 680px) {
    .salos-members-panels { grid-template-columns: 1fr; }
}

.salos-members-panel {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-decoration: none !important;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.salos-members-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,20,50,0.18);
}

/* Current Members — navy */
.salos-members-panel--current {
    background: #0a1432;
    border: 1px solid #0a1432;
}

.salos-members-panel--current::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #c0392b;
}

/* New Members — white with navy border */
.salos-members-panel--new {
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.salos-members-panel--new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #0a1432;
}

/* Icon */
.salos-members-panel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.salos-members-panel--current .salos-members-panel-icon {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.salos-members-panel--new .salos-members-panel-icon {
    background: #f4f4f2;
    color: #0a1432;
}

/* Label */
.salos-members-panel-label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    margin: 0 0 0.4rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-members-panel--current .salos-members-panel-label { color: #c0392b !important; }
.salos-members-panel--new .salos-members-panel-label { color: #c0392b !important; }

/* Heading */
.salos-members-panel h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 0.75rem !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.2 !important;
}

.salos-members-panel--current h2 { color: #ffffff !important; }
.salos-members-panel--new h2 { color: #0a1432 !important; }

/* Description */
.salos-members-panel-desc {
    font-size: 0.9375rem !important;
    line-height: 1.65 !important;
    margin: 0 0 2rem !important;
    flex: 1;
    font-family: 'Poppins', sans-serif !important;
}

.salos-members-panel--current .salos-members-panel-desc { color: rgba(255,255,255,0.75) !important; }
.salos-members-panel--new .salos-members-panel-desc { color: #555 !important; }

/* CTA row */
.salos-members-panel-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-top: auto;
}

.salos-members-panel--current .salos-members-panel-cta { color: #ffffff; }
.salos-members-panel--new .salos-members-panel-cta { color: #0a1432; }

/* Password lock badge */
.salos-members-panel-lock {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: 'Poppins', sans-serif;
}

/* ── Members page tweaks ────────────────────────────────────────────── */

/* Taller panels */
.salos-members-panel { padding: 2.75rem 2.25rem; }

/* More visible border on white panel */
.salos-members-panel--new {
    border: 1.5px solid #d0d0d0;
    box-shadow: 0 4px 16px rgba(10,20,50,0.07);
}

/* Force Poppins on hero h1 */
.salos-members-hero-text h1 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* CURRENT MEMBERS PAGE                                                    */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-cm-body .neve-main,
.salos-cm-body #content,
.salos-cm-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-cm-page { background: #f4f4f2; min-height: 60vh; }

.salos-cm-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

/* ── Header ─────────────────────────────────────────────────────────── */
.salos-cm-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.salos-cm-header-icon {
    width: 56px;
    height: 56px;
    background: #0a1432;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 4px;
}

.salos-cm-eyebrow {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #c0392b !important;
    margin: 0 0 0.3rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-cm-header h1 {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.4rem !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.2 !important;
}

.salos-cm-intro {
    font-size: 0.9375rem !important;
    color: #666 !important;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.6 !important;
}

/* ── Links ──────────────────────────────────────────────────────────── */
.salos-cm-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.salos-cm-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #0a1432;
    border-radius: 0 8px 8px 0;
    text-decoration: none !important;
    color: #111;
    transition: background 0.15s, border-left-color 0.15s, transform 0.15s;
    font-family: 'Poppins', sans-serif;
}

.salos-cm-link:hover {
    background: #f8f9ff;
    border-left-color: #c0392b;
    transform: translateX(3px);
}

.salos-cm-link-icon {
    flex-shrink: 0;
    color: #0a1432;
    display: flex;
    align-items: center;
}

.salos-cm-link-label {
    flex: 1;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

.salos-cm-link-arrow {
    flex-shrink: 0;
    color: #999;
    display: flex;
    align-items: center;
    transition: color 0.15s, transform 0.15s;
}

.salos-cm-link:hover .salos-cm-link-arrow {
    color: #c0392b;
    transform: translateX(3px);
}

/* ── Footer note ────────────────────────────────────────────────────── */
.salos-cm-footer-note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.salos-cm-footer-note a {
    font-size: 0.875rem;
    color: #888;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.salos-cm-footer-note a:hover { color: #0a1432; }

/* ═══════════════════════════════════════════════════════════════════════ */
/* PASSWORD PROMPT                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */
.salos-password-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: #f4f4f2;
}

.salos-password-box {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #0a1432;
    padding: 2.5rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(10,20,50,0.1);
}

.salos-password-icon {
    width: 64px;
    height: 64px;
    background: #0a1432;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 1.25rem;
}

.salos-password-box h2 {
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-password-box > p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 1.75rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.salos-password-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.salos-password-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    color: #111;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.salos-password-input:focus {
    border-color: #0a1432;
}

.salos-password-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: #0a1432;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.15s;
}

.salos-password-btn:hover { background: #c0392b; }

.salos-password-help {
    font-size: 0.8125rem !important;
    color: #888 !important;
    margin: 1rem 0 0 !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-password-help a {
    color: #c0392b;
    text-decoration: none;
}
.salos-password-help a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════════ */
/* CONTACT US PAGE                                                          */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-contact-body .neve-main,
.salos-contact-body #content,
.salos-contact-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-contact-page { background: #f4f4f2; }

.salos-contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ── Hero ───────────────────────────────────────────────────────────── */
.salos-contact-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.salos-contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.45);
}

.salos-contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,20,50,0.1) 0%,
        rgba(10,20,50,0.6) 50%,
        rgba(10,20,50,0.88) 100%
    );
}

.salos-contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.salos-contact-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.salos-contact-hero-inner h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 0.75rem !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.1 !important;
}

.salos-contact-intro {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    max-width: 480px;
}

/* ── Sections ───────────────────────────────────────────────────────── */
.salos-contact-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.salos-contact-section:last-child { border-bottom: none; }

/* ── Contact cards grid ─────────────────────────────────────────────── */
.salos-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.salos-contact-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #0a1432;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.salos-contact-card-icon {
    width: 48px;
    height: 48px;
    background: #f4f4f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1432;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.salos-contact-card h3 {
    font-size: 0.9375rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.25rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-contact-card a {
    font-size: 0.9rem;
    color: #c0392b;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}

.salos-contact-card a:hover { text-decoration: underline; }

.salos-contact-card p {
    font-size: 0.8125rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.salos-contact-card address {
    font-style: normal;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
}

/* ── Social links in contact card ───────────────────────────────────── */
.salos-contact-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.salos-contact-social-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem !important;
    font-weight: 600;
    text-decoration: none !important;
    padding: 0.4rem 0;
    font-family: 'Poppins', sans-serif;
    color: #333 !important;
    transition: color 0.15s;
}

.salos-contact-social-link--fb:hover { color: #1877f2 !important; }
.salos-contact-social-link--yt:hover { color: #ff0000 !important; }
.salos-contact-social-link--ig:hover { color: #e1306c !important; }

/* ── Map section ────────────────────────────────────────────────────── */
.salos-contact-map-header {
    margin-bottom: 1.5rem;
}

.salos-contact-map-header h2 {
    font-size: 1.375rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.375rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-contact-map-header p {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.salos-contact-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10,20,50,0.1);
    border: 1px solid #e5e5e5;
}

.salos-contact-map iframe {
    display: block;
    width: 100%;
}

/* ── Contact card padding tweak ─────────────────────────────────────── */
.salos-contact-card { padding: 2rem 1.75rem; }

/* ── Contact card email overflow fix ────────────────────────────────── */
.salos-contact-card a {
    overflow-wrap: break-word;
    word-break: break-word;
}


/* ═══════════════════════════════════════════════════════════════════════ */
/* ABOUT US PAGES (main + sub-pages)                                       */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-about-body .neve-main,
.salos-about-body #content,
.salos-about-body .nv-content-wrap {
    background: #f4f4f2;
    padding: 0 !important;
    max-width: 100% !important;
}

.salos-about-page { background: #f4f4f2; }

.salos-about-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem 5rem;
}

/* ── Shared hero ────────────────────────────────────────────────────── */
.salos-about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.salos-about-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.45);
}

.salos-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,50,0.1) 0%, rgba(10,20,50,0.6) 50%, rgba(10,20,50,0.88) 100%);
}

.salos-about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.salos-about-hero-inner h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 1rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-about-hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.salos-about-hero-stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: #c0392b;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.salos-about-hero-stat-label {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
}

/* ── Plain header (sub-pages) ───────────────────────────────────────── */
.salos-about-header-plain {
    background: #0a1432;
    border-bottom: 4px solid #c0392b;
    padding: 2rem 0 2.5rem;
}

.salos-about-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.salos-about-header-plain h1 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0.25rem 0 0.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-about-page-intro {
    font-size: 0.9375rem !important;
    color: rgba(255,255,255,0.75) !important;
    max-width: 600px;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    line-height: 1.65 !important;
}

.salos-about-photo-credit {
    font-size: 0.8125rem !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0.5rem 0 0 !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-back-link-dark {
    display: inline-block;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.15s;
}
.salos-back-link-dark:hover { color: #ffffff; }

/* ── Shared eyebrows ────────────────────────────────────────────────── */
.salos-about-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

.salos-about-eyebrow-dark {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 0.4rem;
    font-family: 'Poppins', sans-serif;
}

/* ── Sections ───────────────────────────────────────────────────────── */
.salos-about-section {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}
.salos-about-section:last-child { border-bottom: none; }

.salos-about-section h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 1.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ── Intro + NODA grid ──────────────────────────────────────────────── */
.salos-about-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 640px) {
    .salos-about-intro-grid { grid-template-columns: 1fr; }
}

.salos-about-intro-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.salos-about-noda-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #0a1432;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    min-width: 220px;
    transition: background 0.15s;
}
.salos-about-noda-badge:hover { background: #f8f9ff; }

.salos-about-noda-icon {
    width: 44px;
    height: 44px;
    background: #0a1432;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.salos-about-noda-badge > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.salos-about-noda-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-family: 'Poppins', sans-serif;
}

.salos-about-noda-badge strong {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1432;
    font-family: 'Poppins', sans-serif;
}

.salos-about-noda-sub {
    font-size: 0.75rem;
    color: #666;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* ── History timeline ───────────────────────────────────────────────── */
.salos-about-history-header {
    margin-bottom: 2.5rem;
}

.salos-about-history-intro {
    font-size: 0.9375rem !important;
    color: #666 !important;
    font-family: 'Poppins', sans-serif !important;
    margin: 0.5rem 0 0 !important;
}

.salos-about-timeline {
    position: relative;
    padding-left: 3rem;
}

.salos-about-timeline::before {
    content: '';
    position: absolute;
    left: 1.125rem;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 2px;
    background: linear-gradient(to bottom, #0a1432 0%, #c0392b 100%);
    border-radius: 2px;
}

.salos-about-chapter {
    position: relative;
    padding-bottom: 2.5rem;
}

.salos-about-chapter:last-child { padding-bottom: 0; }

.salos-about-chapter-marker {
    position: absolute;
    left: -2.875rem;
    top: 0.125rem;
    width: 28px;
    height: 28px;
    background: #0a1432;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: 3px solid #f4f4f2;
    box-shadow: 0 0 0 2px #0a1432;
}

.salos-about-chapter-content h3 {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.625rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-about-chapter-content p {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.75;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* ── Sub-page cards ─────────────────────────────────────────────────── */
.salos-about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 720px) { .salos-about-cards { grid-template-columns: 1fr; } }

.salos-about-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 3px solid #0a1432;
    border-radius: 0 0 8px 8px;
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    color: #111;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.salos-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,20,50,0.12);
}

.salos-about-card-icon {
    width: 52px;
    height: 52px;
    background: #f4f4f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1432;
    margin-bottom: 1.25rem;
}

.salos-about-card h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 0.5rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-about-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin: 0 0 1rem;
    font-family: 'Poppins', sans-serif;
}

.salos-about-card-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: #c0392b;
    font-family: 'Poppins', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* COMMITTEE PAGE                                                           */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-committee-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.salos-committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.salos-committee-card {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    background: #ffffff;
}

.salos-committee-card:hover,
.salos-committee-card--active {
    border-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(10,20,50,0.14);
}

.salos-committee-photo {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #0a1432;
}

.salos-committee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(30%);
    transition: filter 0.3s, transform 0.3s;
}

.salos-committee-card:hover .salos-committee-photo img,
.salos-committee-card--active .salos-committee-photo img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.salos-committee-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
}

.salos-committee-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,50,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.salos-committee-card:hover .salos-committee-photo-overlay { opacity: 1; }

.salos-committee-photo-overlay span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.06em;
}

.salos-committee-card-info {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.salos-committee-card-info strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0a1432;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.salos-committee-card-info span {
    font-size: 0.6875rem;
    color: #888;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* ── Bio panel ──────────────────────────────────────────────────────── */
.salos-committee-bio-panel {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #c0392b;
    padding: 2rem;
    margin-top: 1rem;
    position: relative;
    animation: salos-bio-fade-in 0.25s ease;
}

@keyframes salos-bio-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.salos-committee-bio-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f4f4f2;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.salos-committee-bio-close:hover { background: #e0e0e0; }

.salos-committee-bio-inner {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 600px) { .salos-committee-bio-inner { grid-template-columns: 1fr; } }

.salos-committee-bio-photo {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #0a1432;
}

.salos-committee-bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.salos-committee-bio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}

#salos-bio-name {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0.25rem 0 1rem !important;
    font-family: 'Poppins', sans-serif !important;
}

#salos-bio-bio {
    font-size: 0.9375rem !important;
    color: #444 !important;
    line-height: 1.75 !important;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif !important;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* OUR MEMBERS PAGE                                                         */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-members-photo-grid {
    columns: 3;
    column-gap: 12px;
}

@media (max-width: 720px) { .salos-members-photo-grid { columns: 2; } }
@media (max-width: 480px) { .salos-members-photo-grid { columns: 1; } }

.salos-members-photo-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.salos-members-photo-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.salos-members-photo-item:hover img { transform: scale(1.02); }

.salos-members-join-cta {
    border-bottom: none !important;
}

.salos-members-join-inner {
    background: #0a1432;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.salos-members-join-inner p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/* GRAHAM HILL AWARD PAGE                                                   */
/* ═══════════════════════════════════════════════════════════════════════ */

.salos-gha-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 720px) { .salos-gha-intro-grid { grid-template-columns: 1fr; } }

.salos-gha-photo {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(10,20,50,0.12);
}

.salos-gha-photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.salos-gha-description {
    font-size: 1rem !important;
    color: #444 !important;
    line-height: 1.75 !important;
    font-family: 'Poppins', sans-serif !important;
    margin-bottom: 2rem !important;
}

.salos-gha-latest {
    background: #0a1432;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.salos-gha-latest-winner {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: 0.5rem;
}

.salos-gha-latest-year {
    font-size: 2rem;
    font-weight: 800;
    color: #c0392b;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.salos-gha-latest-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.salos-gha-winners-heading {
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    color: #0a1432 !important;
    margin: 0 0 1.25rem !important;
    font-family: 'Poppins', sans-serif !important;
}

.salos-gha-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px;
}

.salos-gha-winner-row {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0.875rem;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #ebebeb;
    font-family: 'Poppins', sans-serif;
    transition: background 0.15s;
}

.salos-gha-winner-row:hover { background: #f8f9ff; }

.salos-gha-winner-row--latest {
    border-color: #c0392b;
    background: #fff8f7;
}

.salos-gha-winner-year {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #c0392b;
    min-width: 36px;
}

.salos-gha-winner-name {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}
