* {
    box-sizing: border-box
}

:root {
    /* --ff-base: 'Segoe UI', sans-serif; */
    --ff-base: "Inter", sans-serif;
    /* --ff-base: "Lora", system-ui; */
    --color-white: #fff;
    --color-body-bg: #f4f1eb;
    --color-body-text: #4a5568;
    --color-navy: #1a3f70;
    --color-navy-soft: #2a5082;
    --color-navy-dark: #0f2440;
    --color-accent: #ffbe30;
    --color-accent-soft: #e8b84b;
    --color-muted: #718096;
    --color-nav-link: #1c2b3a;
    --color-nav-hover-bg: rgba(26, 58, 92, .1);
    --color-section-bg: #f8f9fc;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 14px;
    --radius-pill: 20px;
    --radius-pill-lg: 25px;
    --shadow-sm: 0 2px 8px rgba(26, 58, 92, .1);
    --shadow-md: 0 8px 24px rgba(26, 58, 92, .1);
    --shadow-lg: 0 12px 40px rgba(26, 58, 92, .1);
    --box-shadow-dark: 0 8px 20px rgba(0, 0, 0, .2);
    --color-border: rgb(225, 225, 225);
    --color-border-navy-dark: rgba(26, 58, 92, .15);
    --color-border-navy: #ffbe30;
    --color-border-accent: #ffbe30;
    --color-btn-hover: linear-gradient(to bottom right, #ff3e00, #ffbe30);
    --color-btn-accent: linear-gradient(to bottom right, #ffbe30, #ff3e00);
    --color-transparent: transparent;
}

body.frontend-page {
    font-family: var(--ff-base);
    font-size: 16px;
    font-weight: normal;
    background: var(--color-body-bg);
    color: var(--color-body-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 12px;
    font-family: var(--ff-base);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 42px
}

h2 {
    font-size: 36px
}

h3 {
    font-size: 30px
}

h4 {
    font-size: 24px
}

h5 {
    font-size: 20px
}

h6 {
    font-size: 15px
}

a {
    font-family: var(--ff-base);
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

/* -----All buttons ----------*/
/* join button */
.btn-join {
    background: var(--color-btn-accent);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all .25s ease;
    cursor: pointer
}
.btn-join:hover {
    background: var(--color-btn-primary);
    transform: translateY(-1px)
}

.btn-custom {
    font-size: 14px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--radius-pill-lg);
    transition: all .25s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* button accent */
.btn-accent {
    background: var(--color-btn-accent);
    color: var(--color-white);
}

.btn-accent:hover {
    background: var(--color-btn-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-dark);
}

/* button navy */
.btn-navy {
    background: var(--color-transparent);
    color: var(--color-accent);
    border: 1.5px solid var(--color-border-accent);
}

.btn-navy:hover {
    background: var(--color-btn-accent);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--color-border-accent);
}

/* button transparent */
.btn-transparent {
    background: var(--color-transparent);
    color: var(--color-accent);
    border: 1.5px solid var(--color-border-accent);
}

.btn-transparent:hover {
    background: var(--color-btn-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-dark);
    border: 1.5px solid #ffbe30;
}

.btn-border-navy {
    background: var(--color-transparent);
    color: var(--color-accent);
    border: 1.5px solid var(--color-border-navy);
}
.btn-border-accent {
    background: var(--color-transparent);
    color: var(--color-accent);
    border: 1px solid var(--color-border-accent);
}
.btn-border-navy:hover {
    background: var(--color-btn-accent);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: var(--box-shadow-dark);
    border: 1.5px solid var(--color-border-accent);
}

.btn-border-accent:hover {
    background: var(--color-btn-accent);
    color: var(--color-white);
    border: 1.5px solid var(--color-border-accent);
}

.btn-custom.btn-back {
    background: #d5d5d5;
    padding: 12px 20px;
    border: 2px solid;
}

.btn-small {
    font-size: 12px !important;
    padding: 5px 14px !important;
}

.nav-link,
.act-card,
.ev-card,
.news-card,
.comm-card,
.sp-item,
.sp-slide-btn,
.social-sm,
.f-social-item {
    transition: all .25s ease
}

.mdi {
    line-height: 1;
    vertical-align: middle;
    font-size: 19px;
}

.nb {
    background: var(--color-navy-dark);
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-white)
}

.nb-icons {
    display: flex;
    align-items: center;
    gap: 10px
}

.social-sm {
    font-size: 15px;
    cursor: pointer
}

.social-sm .mdi {
    font-size: 18px
}

.login-pill {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    padding: 3px 0;
    border-radius: var(--radius-md);
}
.login-pill .mdi {
    font-size: 16px
}

.login-pill:hover {
    /* background: var(--color-accent); */
    color: var(--color-accent);
    font-weight: 600;
    padding: 3px 0;
    border-radius: var(--radius-md);
    cursor: pointer
}

.login-pill a,
.social-sm a {
    color: inherit;
    text-decoration: none;
    font-family: system-ui;
}

.main-nav,
.nav {
    background: var(--color-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px
}

.bamssa-toggler {
    border: 1px solid var(--color-border);
    padding: 4px 8px;
    color: var(--color-navy);
    line-height: 1
}

.bamssa-toggler .mdi {
    font-size: 24px
}

.bamssa-toggler:focus {
    box-shadow: none
}

.nav-collapse {
    flex-grow: 0
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px
}

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

.nav-logo .mdi {
    font-size: 22px
}

.brand-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-navy-dark);
    letter-spacing: .5px
}

.brand-sub {
    font-size: 12px;
    color: var(--color-muted)
}

.nav-links {
    display: flex;
    gap: 3px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end
}

.main-nav-link,
.nav-link {
    font-size: 14px;
    color: var(--color-nav-link);
    padding: 7px 10px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer
}

.main-nav-link.active,
.nav-link.active,
.dropdown-menu-custom a.active {
    background: rgba(26, 58, 92, .08);
    font-weight: 600;
    color: var(--color-accent)
}

.main-nav-link:hover,
.nav-link:hover {
    background: var(--color-nav-hover-bg);
    color: var(--color-accent)
}

/* --------- Dropdown ------- */
.dropdown-menu-custom {
    position: absolute;
    top: 137%;
    left: 0;
    min-width: 260px;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    border-top: 2px solid var(--color-navy-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
    list-style: none;
    margin: 0;
    padding: 14px;
}

.dropdown-menu-custom a {
    display: block;
    padding: 7px 14px;
    font-size: 14px;
    color: var(--color-navy-dark);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu-custom a:hover {
    background: rgba(26, 58, 92, .08);
    color: var(--color-accent);
}
.dropdown-menu-custom a:active {
    background: rgba(26, 58, 92, .08);
    color: var(--color-accent);
}

.dropdown-menu-custom .dropdown-submenu-item a {
    padding-left: 28px;
    font-size: 13px;
    position: relative;
}

.dropdown-menu-custom .dropdown-submenu-item a::before {
    content: "—";
    position: absolute;
    left: 12px;
    color: var(--color-muted, #6c757d);
    font-size: 12px;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 991.98px) {

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu-custom {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 10px;
        margin-bottom: 10px;
        display: none;
        background: transparent;
    }

    .dropdown-menu-custom li {
        list-style: none;
        width: 100%;
    }

    .nav-dropdown.active .dropdown-menu-custom {
        display: block;
    }
}

/* ================================================
   HERO — FULL-PAGE SLIDER 
   ================================================ */

/* ── Wrapper ── */
.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 580px;
    max-height: 860px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Owl Carousel slides ── */
.hero-slides-wrap,
.hero-slides-wrap.owl-carousel {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100%;
    z-index: 0;
}

.hero-slides-wrap .owl-stage-outer,
.hero-slides-wrap.owl-carousel .owl-stage-outer {
    height: 100%;
    border-radius: 0 !important;
    max-height: none !important;
}

.hero-slides-wrap .owl-stage {
    height: 100%;
}

.hero-slides-wrap .owl-item {
    height: 100%;
}

.hero-slide-bundle {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(5, 18, 40, .78) 0%,
        rgba(5, 18, 40, .55) 50%,
        rgba(5, 18, 40, .28) 100%
    );
}

.hero-slide-front {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-slide-front .hero-content-new,
.hero-slide-front .hero-content-new a {
    pointer-events: auto;
}

.hero-slides-wrap.owl-carousel .owl-item .hero-slide-item {
    display: block;
    width: 100%;
}

/* ── Each slide ── */
.hero-slide-item {
    height: 100%;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: none;
}

.hero-slides-wrap.owl-carousel .owl-item.active .hero-slide-item {
    animation: heroKenBurns 5.5s ease forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1);    }
    to   { transform: scale(1.07); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slides-wrap.owl-carousel .owl-item.active .hero-slide-item {
        animation: none;
    }
}

/* ── Dark gradient overlay ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(5, 18, 40, .78) 0%,
        rgba(5, 18, 40, .55) 50%,
        rgba(5, 18, 40, .28) 100%
    );
}

/* ── Gold accent bar at bottom ── */
.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-soft) 50%, var(--color-accent) 100%);
}

/* ── Content layer ── */
.hero-front {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-front .hero-content-new,
.hero-front .hero-content-new a {
    pointer-events: auto;
}

.hero-front-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding-bottom: 60px;
}

/* ── Hero text content ── */
.hero-content-new {
    max-width: 620px;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(200, 151, 42, .35);
    border-radius: var(--radius-pill);
    background: rgba(200, 151, 42, .1);
    backdrop-filter: blur(4px);
}

.hero-badge-new .mdi {
    font-size: 15px;
}

.hero-title-new {
    font-size: 50px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.hero-title-new span {
    color: var(--color-accent-soft);
    position: relative;
}

.hero-desc-new {
    font-size: 17px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
    text-shadow: 0 1px 6px rgba(0,0,0,.2);
}

.hero-btns-new {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── Stats block ── */
.hero-stats-block {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    flex-shrink: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
    min-width: 80px;
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent-soft);
    text-transform: uppercase;
    letter-spacing: .8px;
    white-space: nowrap;
}

.hero-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, .55);
    font-size: 22px;
    animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── Hero prev/next + dots (above overlay) ── */
.hero-owl-nav {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    cursor: pointer;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, .3);
    color: var(--color-white);
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-nav-btn .mdi {
    font-size: 28px;
    line-height: 1;
}

.hero-nav-btn:hover,
.hero-nav-btn:focus-visible {
    background: rgba(200, 151, 42, .6);
    border-color: var(--color-accent);
    color: var(--color-white);
    outline: none;
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

.hero-owl-dots {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: auto;
}

.hero-owl-dots .owl-dots {
    display: flex;
    gap: 8px;
    margin: 0;
}

.hero-owl-dots .owl-dots .owl-dot span {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .4);
    margin: 0;
    transition: all .3s ease;
}

.hero-owl-dots .owl-dots .owl-dot.active span {
    background: var(--color-accent-soft);
    width: 44px;
}

/* ── Act card as link ── */
.act-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 992px) {
    .hero-front-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding-bottom: 50px;
        gap: 28px;
    }

    .hero-stats-block {
        padding: 14px 18px;
    }

    .hero-stat {
        padding: 0 16px;
        min-width: 64px;
    }

    .hero-stat-num { font-size: 22px; }
    .hero-stat-lbl { font-size: 10px; }
}

@media (max-width: 768px) {
    .hero-full {
        height: 100svh;
        min-height: 520px;
    }

    .hero-title-new {
        font-size: 30px;
    }

    .hero-desc-new {
        font-size: 15px;
    }

    .hero-stats-block {
        width: 100%;
        justify-content: space-around;
        padding: 12px 10px;
    }

    .hero-stat {
        padding: 0 10px;
        min-width: unset;
    }

    .hero-stat-div { height: 30px; }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
    }

    .hero-nav-btn .mdi {
        font-size: 22px;
    }

    .hero-nav-prev { left: 10px; }
    .hero-nav-next { right: 10px; }

    .hero-owl-dots {
        bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero-btns-new {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns-new .btn-custom {
        text-align: center;
        justify-content: center;
        display: flex;
    }
}


.bubble {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
}

.bubble.tr {
    top: -10px;
    right: -14px;
    z-index: 1;
}

.bubble.bl {
    bottom: 10px;
    left: -14px;
    z-index: 1;
}

.bnum {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1
}

.blbl {
    display: block;
    font-size: 12px;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

/* .stats {
    background: var(--color-section-bg);
    padding: 0 20px 30px
} */

.stats-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    transform: translateY(-28px);
    overflow: hidden
}

.stat-item {
    padding: 20px 12px;
    text-align: center;
    border-right: 1px solid var(--color-border)
}

.stat-item:last-child {
    border-right: none
}

.s-icon {
    font-size: 20px;
    color: var(--color-accent);
    margin-bottom: 6px
}

.s-icon .mdi {
    font-size: 24px
}

.s-num {
    font-size: 25px;
    font-weight: 800;
    color: var(--color-navy-dark);
    line-height: 1;
    margin-bottom: 8px
}

.s-lbl {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px
}

.section {
    padding: 50px 0;
}

.section>.container,
.stats>.container,
.footer>.container {
    width: 100%
}

.cream-bg {
    background: var(--color-body-bg)
}

.sec-label {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px
}

.sec-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--color-accent)
}

.committee .sec-title {
    color: var(--color-navy);
}

.committee .sec-label::before,
.membership-content .sec-label::before  {
    content: '';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--color-accent)
}

.sec-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 30px
}

.about-row .sec-title {
    margin-bottom: 20px
}

.sec-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.about-img-wrap {
    position: relative
}

.about-img-wrap.owl-carousel {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-img-wrap.owl-carousel .owl-stage-outer {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap.owl-carousel .owl-item .about-img {
    display: block;
    width: 100%;
}

.about-img-wrap.owl-carousel .owl-dots {
    margin-top: 12px;
    text-align: center;
}

.about-img-wrap.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: rgba(0, 48, 87, .25);
    border-radius: 50%;
}

.about-img-wrap.owl-carousel .owl-dots .owl-dot.active span,
.about-img-wrap.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--color-accent);
}

.owl-theme .owl-nav{
    margin-top: 0!important;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-badge {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: var(--color-navy-dark);
    color: var(--color-white);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2)
}

.about-check {
    color: var(--color-accent);
    font-size: 18px
}

.about-copy {
    font-size: 15px;
    color: var(--color-body-text);
    line-height: 1.75;
    margin-bottom: 14px
}

.obj-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-body-text)
}

.obj-icon {
    color: var(--color-accent);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px
}

.story-wrap {
    margin-top: 20px
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

.act-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 23px;
    border: 1px solid var(--color-border)
}

.act-card.c1 {
    background: linear-gradient(135deg, #e0f0ff 0%, #fff 100%);
    border-top: 3px solid #1a3f70;
}

.act-card.c2 {
    background: linear-gradient(135deg, #fdf3de 0%, #fff 100%);
    border-top: 3px solid #c8972a;
}

.act-card.c3 {
    background: linear-gradient(135deg, #e4f4ec 0%, #fff 100%);
    border-top: 3px solid #2e7d52;
}

.act-card.c4 {
    background: linear-gradient(135deg, #faeae8 0%, #fff 100%);
    border-top: 3px solid #c0392b;
}

.act-icon {
    width: 60px;
    height: 55px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 12px
}

.act-icon .mdi {
    font-size: 30px
}

.act-icon-edu {
    background: rgba(26, 58, 92, .1);
    color: #1a3a5c
}

.act-icon-culture {
    background: rgba(200, 151, 42, .1);
    color: #c8972a
}

.act-icon-research {
    background: rgba(46, 125, 82, .1);
    color: #2e7d52
}

.act-icon-charity {
    background: rgba(139, 26, 26, .1);
    color: #8b1a1a
}

.act-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 6px
}

.act-card p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 10px
}

.act-lnk {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    cursor: pointer
}

.act-lnk:hover,
.news-lnk:hover,
.f-link:hover {
    color: var(--color-accent)
}

/* Event frontend styles
   ================================================ */

.ev-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border)
}

.ev-img {
    width: 100%;
    max-height: 230px;
    object-fit: contain
}

.ev-img-wrap {
    position: relative
}

.ev-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: .5px
}

.ev-badge.fam { background: #8a750d }
.ev-badge.sem { background: #7c3aed }
.ev-badge.web { background: #6b46c1 }
.ev-badge.sci { background: #07b47b }
.ev-badge.cult { background: #9a39ad }
.ev-badge.wel { background: #2c1bc7 }
.ev-badge.oth { background: #8fa2bd }

.ev-body {
    padding: 20px
}

.ev-date-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

.ev-date-box {
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 6px;
    padding: 6px 15px;
    text-align: center;
    flex-shrink: 0
}

.ev-day {
    display: block;
    font-size: 15px;
    font-weight: 800;
    line-height: 1
}

.ev-mon {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent-soft);
    letter-spacing: .5px;
    margin: 2px 0 0
}

.ev-meta {
    font-size: 13px;
    color: var(--color-accent);
    line-height: 1.5;
    font-weight: 500;
}

.ev-meta .mdi {
    margin-right: 2px
}

.ev-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 6px;
    line-height: 1.3
}

.ev-exc {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 10px;
    line-height: 1.55
}

/* ================================================
   EVENTS PAGES — styles
   ================================================ */

/* ---- Existing ev-badge colour additions ---- */
.ev-badge.cult { background: #7c3aed; }
.ev-badge.wel  { background: #dc2626; }

/* ---- Event type filter chips ---- */
.ev-filter-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.ev-filter-scroll {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
}

.ev-filter-chip {
    padding: 6px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-body-text);
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

.ev-filter-chip:hover,
.ev-filter-chip.active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

/* ---- Upcoming Events layout wrapper ---- */
.ev-upcoming-wrap {
    margin-bottom: 0;
}

/* Reuse .ev-grid for placeholder cards */
.ev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

/* ---- Upcoming event card (list style) ---- */
.ev-upcoming-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all .25s ease;
}

.ev-upcoming-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy-soft);
}

.ev-img-upcoming {
    height: 100%;
    min-height: 220px;
}

.ev-img-upcoming .ev-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ev-upcoming-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ev-title-lg {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
}

/* ---- Registration status tags ---- */
.ev-reg-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    align-self: flex-start;
}

.ev-reg-open {
    background: rgba(56,161,105,.12);
    color: #276749;
    border: 1px solid rgba(56,161,105,.25);
}

.ev-reg-closed {
    background: rgba(229,62,62,.1);
    color: #c53030;
    border: 1px solid rgba(229,62,62,.2);
}

/* ---- Fee chips ---- */
.ev-fees-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.ev-fee-chip {
    font-size: 12px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    background: rgba(26,63,112,.08);
    color: var(--color-navy);
    border: 1px solid rgba(26,63,112,.15);
}

/* ---- Card action buttons ---- */
.ev-card-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ---- Past Events list ---- */
.past-ev-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.past-ev-card {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    align-items: stretch;
    transition: all .25s ease;
}

.past-ev-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy-soft);
}

.past-ev-img-wrap {
    overflow: hidden;
    height: 100%;
    min-height: 160px;
}

.past-ev-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.past-ev-card:hover .past-ev-img {
    transform: scale(1.04);
}

.past-ev-body {
    padding: 18px 20px;
}

.past-ev-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.past-ev-date {
    font-size: 12px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.past-ev-date .mdi {
    font-size: 14px;
}

.past-ev-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.past-ev-desc {
    font-size: 13px;
    color: var(--color-body-text);
    line-height: 1.6;
    margin-bottom: 10px;
}

.past-ev-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--color-muted);
}

.past-ev-meta .mdi {
    font-size: 14px;
    color: var(--color-navy-soft);
}

.past-ev-actions {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    border-left: 1px solid var(--color-border);
    min-width: 140px;
}

/* ---- Event Detail Layout ---- */
.evd-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.evd-hero-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.evd-hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.evd-hero-img-wrap .ev-badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

.evd-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.evd-meta-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--color-section-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.evd-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.evd-meta-item > .mdi {
    font-size: 20px;
    color: var(--color-navy);
    flex-shrink: 0;
    margin-top: 2px;
}

.evd-meta-item strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-muted);
    margin-bottom: 2px;
}

.evd-meta-item span {
    font-size: 14px;
    color: var(--color-body-text);
    font-weight: 600;
}

.evd-overview {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-body-text);
    margin-bottom: 32px;
}

.evd-section-block {
    margin-bottom: 32px;
}

.evd-section-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-border);
}

/* ---- Sponsors grid ---- */
.evd-sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.evd-sponsor-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}

.evd-sponsor-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.evd-sponsor-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy-dark);
}

.evd-sponsor-type {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
}

.evd-sp-platinum { background: #e5e7eb; color: #374151; }
.evd-sp-gold     { background: rgba(200,151,42,.15); color: #9b6e1a; }
.evd-sp-silver   { background: rgba(156,163,175,.2); color: #4b5563; }
.evd-sp-bronze   { background: rgba(180,120,60,.12); color: #7c4a00; }

/* ---- Photo gallery grid ---- */
.evd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
}

.evd-gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
}

.evd-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.evd-gallery-item:hover .evd-gallery-img {
    transform: scale(1.08);
}

.evd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
    color: #fff;
    font-size: 28px;
}

.evd-gallery-item:hover .evd-gallery-overlay {
    opacity: 1;
}

/* ---- Sidebar ---- */
.evd-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.evd-sidebar-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
}
.evd-sidebar-card {
    border-top: 4px solid var(--color-accent);
}

.evd-reg-card {
    border-top: 4px solid var(--color-accent);
}

.evd-reg-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.evd-reg-header .mdi {
    font-size: 22px;
    color: var(--color-accent);
}

.evd-reg-header h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin: 0;
}

.evd-reg-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.evd-reg-date-item {
    background: var(--color-section-bg);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
}

.evd-reg-date-item span {
    display: block;
    font-size: 11px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 2px;
}

.evd-reg-date-item strong {
    font-size: 13px;
    color: var(--color-navy-dark);
}

.evd-fees-table {
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.evd-fees-heading {
    background: var(--color-section-bg);
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

.evd-early-tag {
    color: var(--color-accent);
}

.evd-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--color-body-text);
    border-top: 1px solid var(--color-border);
}

.evd-fee-row strong {
    font-weight: 700;
    color: var(--color-navy-dark);
}

.evd-fee-early {
    background: rgba(200,151,42,.04);
}

.evd-family-note {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 14px;
    padding: 8px 12px;
    background: rgba(26,63,112,.04);
    border-radius: var(--radius-sm);
}

.evd-reg-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    padding: 12px;
}

.evd-reg-closed-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(229,62,62,.06);
    border: 1px solid rgba(229,62,62,.2);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: #c53030;
}

.evd-sidebar-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-border);
}

.evd-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evd-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.evd-info-list li > .mdi {
    font-size: 18px;
    color: var(--color-navy);
    flex-shrink: 0;
    margin-top: 1px;
}

.evd-info-list li > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.evd-info-list li span {
    font-size: 11px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
}

.evd-info-list li strong {
    font-size: 13px;
    color: var(--color-body-text);
}

.evd-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .ev-upcoming-card {
        grid-template-columns: 260px 1fr;
    }

    .evd-layout {
        grid-template-columns: 1fr;
    }

    .evd-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .ev-upcoming-card {
        grid-template-columns: 1fr;
    }

    .ev-img-upcoming {
        height: 200px;
    }

    .past-ev-card {
        grid-template-columns: 1fr;
    }

    .past-ev-img-wrap {
        height: 180px;
    }

    .past-ev-actions {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding: 12px 18px;
        min-width: unset;
    }

    .evd-reg-dates {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   NEWS PAGES — styles
   ================================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.news-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border)
}

.news-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover
}

.news-body {
    padding: 12px
}

.news-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 6px
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy-dark);
    line-height: 1.2;
    margin-bottom: 6px
}

.news-exc {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 10px;
    line-height: 1.55
}

.news-lnk {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    cursor: pointer;
}

.comm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.comm-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--color-border)
}

.comm-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comm-card-link:hover {
    color: inherit;
}

.comm-card-link .comm-name {
    color: var(--color-navy-dark);
}

/* Member public profile */
.member-detail-section {
    padding: 48px 0 56px;
}

.member-detail-photo {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.member-detail-photo img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
    aspect-ratio: 1;
}

.member-detail-info {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.member-detail-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}

.member-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.member-detail-meta:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.member-detail-label {
    min-width: 140px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
}

.member-detail-value {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy-dark);
    text-transform: capitalize;
}

.member-detail-value a {
    color: var(--color-accent);
    text-decoration: none;
}

.member-detail-value a:hover {
    text-decoration: underline;
}

.member-detail-block {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.member-detail-block-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-detail-block-body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-body-text);
}

.member-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.member-detail-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(26, 58, 92, 0.08);
    color: var(--color-navy-dark);
    font-size: 13px;
    font-weight: 600;
}

.member-detail-practices {
    display: grid;
    gap: 16px;
}

.member-detail-practice-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    background: var(--color-section-bg, #f8f9fa);
}

.member-detail-practice-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 12px;
}

@media (max-width: 767.98px) {
    .member-detail-name {
        font-size: 22px;
    }

    .member-detail-label {
        min-width: 100%;
    }
}

.act-card:hover,
.ev-card:hover,
.news-card:hover,
.comm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.comm-av {
    /* background: linear-gradient(135deg, #1a3a5c, #2a5082); */
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-av img {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
}

.comm-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
    line-height: 1.3
}

.comm-role {
    font-size: 14px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .5px
}

.committee-cta {
    text-align: center;
    margin-top: 2.comm-role0px
}

.cta {
    background: linear-gradient(135deg, var(--color-navy-dark), var(--color-navy));
    padding: 35px 20px 50px;
    text-align: center
}

.cta-icon {
    font-size: 32px;
    color: var(--color-accent);
    margin-bottom: 10px
}

.cta-icon .mdi {
    font-size: 40px
}

.cta h3 {
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 10px
}

.cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    padding:0 40px;
    margin: 0 auto 20px;
    line-height: 1.7
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap
}

.sponsors {
    background: var(--color-white);
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--color-border)
}

.sp-label {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-navy-dark);
    margin-bottom: 25px
}

.sp-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    margin: 0 auto
}

.sp-viewport {
    overflow: hidden;
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(100%, calc(5 * 200px + 4 * 16px));
    border-radius: var(--radius-sm)
}

.sp-track {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.sp-track.is-jumping {
    transition: none
}

.sp-slide-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1.5px solid var(--color-navy-soft);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 22px;
    line-height: 0;
    cursor: pointer
}

.sp-slide-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent)
}

.sp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 200px;
    height: 100px;
    margin: 0 auto;
    padding: 10px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    text-decoration: none;
    color: inherit
}

.sp-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center
}

.sp-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}

.footer {
    /* background: var(--color-navy-dark); */
    background: linear-gradient(to bottom right, #001e52, #001691);
    padding: 60px 20px  15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 20px
}
.f-bottom a:hover {
    color: var(--color-accent)
}
.f-bottom a {
    font-weight: 600;
}

.f-logo {
    margin-bottom: 10px;
    max-height: 35px;
    width: auto;
}

.f-logo img {
    width: 60%;
    background: white;
}


.f-logo-icon {
    height: 35px;
    background: rgb(255 255 255);
}


.f-logo-icon .mdi {
    font-size: 18px
}

.f-brand {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-white)
}

.f-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .45)
}

.f-desc {
    font-size: 14px;
    color: #ffffffeb;
    line-height: 1.7
}

.f-social {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.f-social-item {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffffffeb;
    cursor: pointer
}

.f-social-item .mdi {
    font-size: 18px
}

.f-social-item:hover,
.social-sm:hover {
    transform: translateY(-2px);
    color: var(--color-accent-soft)
}

.f-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.f-link {
    font-size: 14px;
   color: #ffffffeb;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    cursor: pointer
}

.f-contact {
    padding: 0;
    margin: 0 0 20px;
}

.f-contact li {
    font-size: 14px;
    color: #ffffffeb;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    list-style: none
}

.f-contact i {
    color: var(--color-accent)
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #ffffffeb;
}

@media (max-width: 1199.98px) {

    .cards-grid,
    .comm-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ev-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 991.98px) {

    .about-row {
        grid-template-columns: 1fr;
        display: grid
    }

    .hero-img-card {
        max-width: 280px
    }

    .hero-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 20px
    }

    .nav .container {
        align-items: center
    }

    .nav-collapse {
        width: 100%
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 3px;
        width: 100%;
        padding-top: 12px
    }

    .nav-link,
    .btn-join {
        width: 100%;
        text-align: left
    }

    .nav-mobile-auth {
        display: flex;
        gap: 10px;
        /* width: 100%; */
        margin-top: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--color-border)
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 767.98px) {
    .nb .container {
        flex-direction: column;
        gap: 8px;
        text-align: center
    }

    .sec-row {
        flex-direction: column;
        align-items: flex-start
    }

    .cards-grid,
    .comm-grid,
    .ev-grid,
    .news-grid,
    .footer-grid,
    .stats-card {
        grid-template-columns: 1fr
    }

    .f-bottom {
        flex-direction: column
    }
}

.inner-banner {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    padding: 56px 0 54px;
    /* background:
        linear-gradient(90deg, rgba(6, 26, 117, 0.96) 0%, rgba(6, 26, 117, 0.92) 38%, rgba(6, 26, 117, 0.45) 62%, rgba(6, 26, 117, 0.12) 100%),
        url("../img/page-banner.png") no-repeat center center/cover; */
    background: linear-gradient(90deg, rgb(16 28 81 / 76%) 0%, rgb(38 49 98 / 96%) 38%, rgb(23 35 89 / 78%) 62%, rgb(35 55 97 / 67%) 100%),
    url(../img/page-banner.png) no-repeat center center / cover;
    background-size: cover;
    background-position: center right;
}
.inner-banner::before {
    content: none;
}

.inner-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.container.inner-banner-content h2 {
    margin: 0 0 5px;
}
.inner-banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
}

.inner-banner-breadcrumb a {
    color: var(--color-white);
    text-decoration: none;
}

.inner-banner-breadcrumb span {
    opacity: .95;
}

.inner-banner h1 {
    font-size: 56px;
    line-height: 1.14;
    margin-bottom: 0;
    color: var(--color-white);
}

.inner-banner p {
    max-width: 720px;
    margin: 12px 0 0;
    opacity: .9;
}

@media (max-width: 991.98px) {
    .inner-banner h1 {
        font-size: 40px;
    }
    .inner-banner-breadcrumb {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .inner-banner {
        padding: 44px 0;
    }
    .inner-banner h1 {
        font-size: 32px;
    }
}

.inner-timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    border: 1px solid #dce7f2;
    border-radius: 12px;
    padding: 18px;
    background: #fff;
}

.timeline-item h6 {
    margin-bottom: 8px;
    color: #0f4b81;
}

.inner-gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.inner-gallery img,
.news-details-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.news-details-card {
    border: 1px solid #dce7f2;
    border-radius: 16px;
    padding: 30px;
    background: #fff;
    border-top: 4px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
}




/* ================================================
   ABOUT PAGES — shared styles
   Append to: public/frontend_assets/css/style.css
   ================================================ */

.about-page-left-img {
    float: left;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin: 20px 30px 20px 0;
}
.about-page-right-img {
    float: right;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin: 20px 0 20px 30px;
}

.about-img-badge {
    position: absolute;
    bottom: -14px;
    left: 20px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
}

.about-img-badge .mdi {
    font-size: 16px;
}

.about-text {
    padding-top: 8px;
}

section.page-section {
    padding: 50px 0 30px;
}

/* ---- Leadership Grid ---- */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.leader-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    transition: all .25s ease;
    box-shadow: var(--shadow-sm);
}

.leader-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy-soft);
    transform: translateY(-3px);
}

.leader-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    border: 3px solid var(--color-border);
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}

.leader-role {
    display: block;
    font-size: 12px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.leader-qual {
    display: block;
    font-size: 12px;
    color: var(--color-muted);
    margin-top: 4px;
}

/* ---- Advisory List ---- */
.advisory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advisor-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    transition: all .25s ease;
}

.advisor-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-navy-soft);
}

.advisor-img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border);
    flex-shrink: 0;
}

.advisor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor-bio {
    font-size: 13px;
    color: var(--color-muted);
    margin: 4px 0 0;
}

/* ---- Vision & Mission blocks ---- */
.vm-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 18px;
    background: var(--color-section-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-navy-soft);
}

.vm-icon {
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
}

.vm-icon .mdi {
    font-size: 22px;
}

.vm-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 6px;
}

/* ---- Values Grid ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: all .25s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(26, 63, 112, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--color-navy);
}

.value-icon .mdi {
    font-size: 26px;
}

.value-card h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* ---- Goals List ---- */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all .25s ease;
}

.goal-item:hover {
    border-color: var(--color-navy-soft);
    box-shadow: var(--shadow-sm);
}

.goal-icon {
    width: 44px;
    height: 44px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goal-icon .mdi {
    font-size: 22px;
}

.goal-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 4px;
}

.goal-desc {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---- History Timeline ---- */
.history-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.history-item {
    display: grid;
    grid-template-columns: 80px 30px 1fr;
    gap: 0 16px;
    align-items: flex-start;
    padding-bottom: 24px;
}

.history-year {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-accent);
    text-align: right;
    padding-top: 2px;
}

.history-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.history-connector::after {
    content: '';
    position: absolute;
    top: 20px;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: var(--color-border);
}

.history-item:last-child .history-connector::after {
    display: none;
}

.history-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-navy);
    border: 3px solid var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
    z-index: 1;
}

.history-content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.history-content h6 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy-dark);
    margin-bottom: 6px;
}

.history-content p {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---- Document Actions ---- */
.doc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
    align-items: center;
}

.doc-unavailable {
    font-size: 14px;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---- By Laws Accordion ---- */
.bylaws-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bylaw-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bylaw-toggle {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy-dark);
    cursor: pointer;
    text-align: left;
    transition: all .2s ease;
}

.bylaw-toggle:hover,
.bylaw-toggle.active {
    background: rgba(26, 63, 112, .04);
    color: var(--color-navy);
}

.bylaw-toggle.active .bylaw-chevron {
    transform: rotate(180deg);
}

.bylaw-chevron {
    font-size: 20px;
    color: var(--color-muted);
    transition: transform .25s ease;
    flex-shrink: 0;
}

.bylaw-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 20px;
}

.bylaw-body.open {
    max-height: 200px;
    padding: 0 20px 16px;
}

.bylaw-body p {
    font-size: 14px;
    color: var(--color-body-text);
    line-height: 1.7;
    margin: 0;
}

/* ---- Responsive: About pages ---- */
@media (max-width: 1024px) {
    .about-main-row {
        grid-template-columns: 420px 1fr;
        gap: 32px;
    }

    .about-img {
        width: 420px;
        height: 336px;
    }
}

@media (max-width: 768px) {
    .about-main-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        width: 100%;
        height: 280px;
    }

    .about-img-wrap {
        width: 100%;
    }

    .history-item {
        grid-template-columns: 60px 24px 1fr;
    }

    .history-year {
        font-size: 13px;
    }
}

/* Owl Carousel (home hero + sponsors) */
.hero-slider.owl-carousel .owl-stage-outer {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 360px;
}

.hero-slider.owl-carousel .owl-item .hero-img {
    display: block;
}

.hero-slider.owl-carousel .owl-item.active .hero-img {
    animation: heroZoomSlow 4.75s cubic-bezier(.22, .61, .36, 1) forwards;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider.owl-carousel .owl-item.active .hero-img {
        animation: none;
        will-change: auto;
    }
}

.hero-slider.owl-carousel .owl-nav {
    margin-top: 0;
}

.hero-slider.owl-carousel .owl-nav button.owl-prev,
.hero-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: var(--color-white);
    font-size: 22px;
    line-height: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider.owl-carousel .owl-nav button.owl-prev:hover,
.hero-slider.owl-carousel .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, .6);
}

.hero-slider.owl-carousel .owl-nav button.owl-prev {
    left: 14px;
}

.hero-slider.owl-carousel .owl-nav button.owl-next {
    right: 14px;
}

.hero-slider.owl-carousel .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    margin: 0;
    width: auto;
}

.hero-slider.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: rgba(255, 255, 255, .55);
    border-radius: 50%;
}

.hero-slider.owl-carousel .owl-dots .owl-dot.active span,
.hero-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--color-white);
}

.sp-carousel.owl-carousel {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 46px;
    overflow: hidden;
}

.sp-carousel.owl-carousel .owl-stage-outer {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.sp-carousel.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.sp-carousel.owl-carousel .owl-nav {
    margin-top: 0;
}

.sp-carousel.owl-carousel .owl-nav button.owl-prev,
.sp-carousel.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1.5px solid var(--color-navy-soft);
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 22px;
    line-height: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-carousel.owl-carousel .owl-nav button.owl-prev:hover,
.sp-carousel.owl-carousel .owl-nav button.owl-next:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.sp-carousel.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.sp-carousel.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

/* Sponsors carousel — mobile */
@media (max-width: 991.98px) {
    .sponsors {
        padding: 32px 20px;
    }

    .sp-carousel.owl-carousel .owl-stage-outer {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .sponsors {
        padding: 28px 16px;
    }

    .sp-label {
        font-size: 15px;
        letter-spacing: 1.5px;
        margin-bottom: 18px;
    }

    .sp-carousel.owl-carousel {
        padding: 0 40px;
    }

    .sp-item {
        height: 88px;
        padding: 8px 10px;
    }
}

@media (max-width: 575.98px) {
    .sponsors {
        padding: 24px 12px;
    }

    .sp-label {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 14px;
        padding: 0 4px;
    }

    .sp-carousel.owl-carousel {
        padding: 0 34px;
    }

    .sp-carousel.owl-carousel .owl-nav button.owl-prev,
    .sp-carousel.owl-carousel .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .sp-item {
        max-width: none;
        height: 76px;
        padding: 6px 8px;
    }

    .sp-logo {
        max-height: 56px;
    }
}

@media (max-width: 399.98px) {
    .sp-carousel.owl-carousel {
        padding: 0 30px;
    }

    .sp-item {
        height: 70px;
    }
}

/* Membership plans */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.membership-card {
    background: var(--color-white);
    border: 1px solid rgba(15, 42, 68, .1);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 24px rgba(15, 42, 68, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 42, 68, .1);
}

.membership-card-featured {
    border-color: var(--color-accent);
    box-shadow: 0 12px 28px rgba(196, 30, 58, .12);
}

.membership-card-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 42, 68, .08);
}

.membership-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 6px;
}

.membership-card-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bs-primary);
    margin: 0;
}

.membership-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}

.membership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: .95rem;
    color: var(--color-text);
}

.membership-benefits li i {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-top: 2px;
}
