/* =========================================================
   MATANG JAGRUTI ABHIYAN
   Main Website Stylesheet
   ========================================================= */


/* ---------------------------------------------------------
   ROOT BRAND COLORS
--------------------------------------------------------- */

:root {
    --mja-primary: #f28c00;
    --mja-primary-dark: #d96f00;
    --mja-maroon: #7b1e1e;
    --mja-maroon-dark: #561313;
    --mja-gold: #d7a928;
    --mja-cream: #fff9ef;
    --mja-light: #fffdf8;
    --mja-dark: #1f1f1f;
    --mja-gray: #666666;
    --mja-border: #eadfce;
    --mja-white: #ffffff;
    --mja-success: #198754;

    --mja-shadow:
        0 10px 30px rgba(64, 36, 11, 0.10);

    --mja-radius: 18px;
}


/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Mukta", "Hind", Arial, sans-serif;
    background: var(--mja-light);
    color: var(--mja-dark);
    font-size: 17px;
    line-height: 1.6;
}

body,
button,
input,
select,
textarea {
    font-family: "Mukta", "Hind", Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--mja-maroon);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--mja-primary-dark);
}

section {
    position: relative;
}

#main-content {
    min-height: 60vh;
}

.container {
    max-width: 1240px;
}


/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--mja-maroon-dark);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--mja-maroon-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--mja-gray);
    font-size: 1.1rem;
    max-width: 760px;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: inline-block;
    color: var(--mja-primary-dark);
    background: rgba(242, 140, 0, 0.10);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.text-maroon {
    color: var(--mja-maroon) !important;
}

.text-primary-mja {
    color: var(--mja-primary) !important;
}

.text-gold {
    color: var(--mja-gold) !important;
}


/* ---------------------------------------------------------
   TOP CONTACT BAR
--------------------------------------------------------- */

.top-contact-bar {
    background:
        linear-gradient(
            90deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    color: var(--mja-white);
    padding: 7px 0;
    font-size: 0.9rem;
}

.top-contact-link,
.top-social-link {
    color: var(--mja-white);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-contact-link:hover,
.top-social-link:hover {
    color: #ffd991;
}

.top-president-text {
    color: #fff2d7;
    font-weight: 500;
}

.top-social-link {
    font-size: 1rem;
}


/* ---------------------------------------------------------
   MAIN HEADER
--------------------------------------------------------- */

.main-header {
    background: var(--mja-white);
    border-bottom: 1px solid var(--mja-border);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.main-header .navbar {
    padding: 8px 0;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: 20px;
}

.site-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-content {
    line-height: 1.15;
}

.brand-title {
    color: var(--mja-maroon-dark);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
}

.brand-subtitle {
    color: var(--mja-primary-dark);
    font-weight: 600;
    font-size: 0.75rem;
    margin-top: 4px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 600;
    padding: 14px 9px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--mja-primary-dark);
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 7px;
    height: 2px;
    border-radius: 2px;
    background: var(--mja-primary);
}

.dropdown-menu {
    border: 1px solid var(--mja-border);
    border-radius: 12px;
    padding: 8px;
    box-shadow: var(--mja-shadow);
}

.dropdown-item {
    padding: 9px 13px;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--mja-cream);
    color: var(--mja-maroon);
}

.language-switcher {
    gap: 5px;
    font-size: 0.92rem;
    font-weight: 700;
}

.language-switcher a {
    color: #7f7f7f;
}

.language-switcher a.active {
    color: var(--mja-maroon);
}

.mobile-language {
    font-size: 0.9rem;
    font-weight: 700;
}

.mobile-language a {
    color: #777;
}

.mobile-language a.active {
    color: var(--mja-primary-dark);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.btn-join-now {
    background:
        linear-gradient(
            135deg,
            var(--mja-primary),
            var(--mja-primary-dark)
        );
    color: #fff !important;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow:
        0 5px 15px rgba(242, 140, 0, 0.25);
}

.btn-join-now:hover {
    transform: translateY(-1px);
    color: #fff !important;
    box-shadow:
        0 8px 20px rgba(242, 140, 0, 0.32);
}


/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */

.hero-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 186, 68, 0.24),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #fff7e7 0%,
            #fffdf8 48%,
            #fdf3e3 100%
        );
    padding: 65px 0 45px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    background: rgba(123, 30, 30, 0.08);
    color: var(--mja-maroon);
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.08;
    font-weight: 800;
    color: var(--mja-maroon-dark);
    margin-bottom: 18px;
}

.hero-title span {
    color: var(--mja-primary-dark);
}

.hero-subtitle {
    font-size: 1.24rem;
    color: #4c4c4c;
    max-width: 650px;
    margin-bottom: 25px;
}

.hero-tagline {
    color: var(--mja-maroon);
    font-weight: 700;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.btn-mja-primary {
    background:
        linear-gradient(
            135deg,
            var(--mja-primary),
            var(--mja-primary-dark)
        );
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 23px;
    font-weight: 700;
    box-shadow:
        0 8px 22px rgba(242, 140, 0, 0.22);
}

.btn-mja-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--mja-primary-dark),
            #c45f00
        );
    color: #fff;
    transform: translateY(-2px);
}

.btn-mja-outline {
    border: 2px solid var(--mja-maroon);
    color: var(--mja-maroon);
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 700;
    background: #fff;
}

.btn-mja-outline:hover {
    background: var(--mja-maroon);
    color: #fff;
}

.hero-image-wrap {
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image-bg {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            rgba(242, 140, 0, 0.28),
            rgba(123, 30, 30, 0.14)
        );
    top: 45px;
    right: 25px;
}

.hero-ramesh-img {
    position: relative;
    z-index: 2;
    max-height: 485px;
    width: auto;
    object-fit: contain;
    filter:
        drop-shadow(
            0 18px 20px rgba(65, 29, 16, 0.20)
        );
}

.hero-leader-card {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 25px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: var(--mja-shadow);
    border-left: 5px solid var(--mja-primary);
}

.hero-leader-card strong {
    display: block;
    color: var(--mja-maroon-dark);
    font-size: 1.1rem;
}

.hero-leader-card span {
    color: var(--mja-gray);
    font-size: 0.93rem;
}


/* ---------------------------------------------------------
   COMMON SECTION SPACING
--------------------------------------------------------- */

.section-padding {
    padding: 75px 0;
}

.section-padding-sm {
    padding: 55px 0;
}

.bg-cream {
    background: var(--mja-cream);
}

.bg-light-mja {
    background: #fffdf8;
}

.bg-maroon {
    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    color: #fff;
}

.bg-orange-soft {
    background:
        linear-gradient(
            135deg,
            #fff6e4,
            #fffaf0
        );
}


/* ---------------------------------------------------------
   ABOUT SECTION
--------------------------------------------------------- */

.about-card {
    background: #fff;
    border-radius: var(--mja-radius);
    padding: 30px;
    box-shadow: var(--mja-shadow);
    height: 100%;
    border: 1px solid #f1e6d5;
}

.about-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(242, 140, 0, 0.16),
            rgba(215, 169, 40, 0.14)
        );
    color: var(--mja-primary-dark);
    font-size: 1.8rem;
    margin-bottom: 18px;
}


/* ---------------------------------------------------------
   MISSION CARDS
--------------------------------------------------------- */

.mission-card {
    height: 100%;
    background: #fff;
    padding: 26px 22px;
    border-radius: var(--mja-radius);
    border: 1px solid #f1e5d2;
    transition: all 0.25s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mja-shadow);
    border-color: rgba(242, 140, 0, 0.35);
}

.mission-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--mja-primary),
            var(--mja-maroon)
        );
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.mission-card h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.mission-card p {
    color: var(--mja-gray);
    margin: 0;
}


/* ---------------------------------------------------------
   LEADERSHIP SECTION
--------------------------------------------------------- */

.leadership-section {
    background:
        linear-gradient(
            120deg,
            #fffdf8,
            #fff4df
        );
}

.leader-image-box {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #fbe4b8,
            #fff9ef
        );
    border-radius: 28px;
    min-height: 480px;
    overflow: hidden;
    box-shadow: var(--mja-shadow);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.leader-image-box img {
    max-height: 470px;
    object-fit: contain;
}

.leader-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(91, 21, 21, 0.94);
    color: #fff;
}

.leader-badge h4 {
    color: #fff;
    margin: 0;
    font-size: 1.25rem;
}

.leader-badge p {
    margin: 2px 0 0;
    color: #ffe5bb;
}

.leader-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.leader-quote {
    margin: 24px 0;
    padding: 18px 22px;
    border-left: 5px solid var(--mja-primary);
    background: #fff;
    border-radius: 12px;
    color: #555;
    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   ANNABHAU SATHE SECTION
--------------------------------------------------------- */

.annabhau-section {
    background:
        linear-gradient(
            135deg,
            #5c1717,
            #821f1f
        );
    color: #fff;
    overflow: hidden;
}

.annabhau-section h2,
.annabhau-section h3,
.annabhau-section h4 {
    color: #fff;
}

.annabhau-image-wrap {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    padding: 7px;
    max-width: 360px;
    margin: auto;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22);
}

.annabhau-image-wrap img {
    width: 100%;
    border-radius: 16px;
}

.annabhau-content p {
    color: #f7e7df;
}

.annabhau-highlight {
    display: inline-block;
    background: rgba(255, 188, 70, 0.16);
    color: #ffd27e;
    border: 1px solid rgba(255, 210, 126, 0.25);
    border-radius: 30px;
    padding: 7px 15px;
    font-weight: 700;
    margin-bottom: 15px;
}


/* ---------------------------------------------------------
   STATISTICS COUNTERS
--------------------------------------------------------- */

.stats-section {
    background:
        linear-gradient(
            135deg,
            var(--mja-primary),
            #e77b00
        );
}

.stat-card {
    text-align: center;
    color: #fff;
    padding: 20px 10px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.6rem;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff7eb;
}


/* ---------------------------------------------------------
   CONTENT CARDS
--------------------------------------------------------- */

.content-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee3d5;
    transition: all 0.25s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mja-shadow);
}

.content-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.content-card-body {
    padding: 20px;
}

.content-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #8b7c71;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.content-card-title {
    font-size: 1.3rem;
    margin-bottom: 9px;
}

.content-card-text {
    color: var(--mja-gray);
    margin-bottom: 14px;
}

.read-more-link {
    font-weight: 700;
    color: var(--mja-primary-dark);
}

.read-more-link:hover {
    color: var(--mja-maroon);
}


/* ---------------------------------------------------------
   EVENT CARD
--------------------------------------------------------- */

.event-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--mja-border);
    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.05);
}

.event-date-box {
    width: 72px;
    min-width: 72px;
    text-align: center;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #efcf9e;
}

.event-date-month {
    background: var(--mja-maroon);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px;
}

.event-date-day {
    padding: 8px 4px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   YOUTH CONNECT
--------------------------------------------------------- */

.youth-card {
    height: 100%;
    border-radius: 18px;
    padding: 25px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff8ed
        );
    border: 1px solid #f0dec3;
    transition: all 0.25s ease;
}

.youth-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mja-shadow);
}

.youth-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mja-maroon);
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
}


/* ---------------------------------------------------------
   ISSUE CTA
--------------------------------------------------------- */

.issue-cta {
    background:
        linear-gradient(
            120deg,
            #fff1d5,
            #fff9ed
        );
    border: 1px solid #efcf99;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--mja-shadow);
}

.issue-cta-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mja-maroon);
    color: #fff;
    font-size: 2rem;
}


/* ---------------------------------------------------------
   CALL TO ACTION
--------------------------------------------------------- */

.join-cta-section {
    background:
        radial-gradient(
            circle at right,
            rgba(255, 189, 74, 0.30),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    color: #fff;
}

.join-cta-section h2 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
}

.join-cta-section p {
    color: #f5ded6;
    font-size: 1.12rem;
}

.btn-white-mja {
    background: #fff;
    color: var(--mja-maroon);
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 700;
}

.btn-white-mja:hover {
    background: #fff2d8;
    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   PAGE HEADER / INNER BANNER
--------------------------------------------------------- */

.page-header {
    background:
        linear-gradient(
            135deg,
            #fff3dd,
            #fffaf1
        );
    padding: 50px 0;
    border-bottom: 1px solid var(--mja-border);
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
}

.page-breadcrumb {
    margin-top: 12px;
    color: var(--mja-gray);
}

.page-breadcrumb a {
    color: var(--mja-primary-dark);
    font-weight: 600;
}


/* ---------------------------------------------------------
   FORMS
--------------------------------------------------------- */

.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--mja-shadow);
    border: 1px solid #eee1d0;
}

.form-label {
    font-weight: 600;
    color: #3c3027;
}

.form-control,
.form-select {
    border-radius: 11px;
    border: 1px solid #dbcdbb;
    min-height: 48px;
    padding: 10px 13px;
    font-size: 1rem;
}

textarea.form-control {
    min-height: 130px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--mja-primary);
    box-shadow:
        0 0 0 0.2rem rgba(242, 140, 0, 0.12);
}

.form-check-input:checked {
    background-color: var(--mja-primary);
    border-color: var(--mja-primary);
}

.required {
    color: #cc1f1f;
}

.form-section-title {
    border-bottom: 1px solid #eadbc8;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


/* ---------------------------------------------------------
   MEMBERSHIP CARD
--------------------------------------------------------- */

.membership-card-preview {
    max-width: 560px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 16px 40px rgba(53, 29, 13, 0.16);
    border: 1px solid #ead5b5;
}

.membership-card-header {
    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.membership-card-header img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.membership-card-title {
    font-size: 1.25rem;
    font-weight: 800;
}

.membership-card-body {
    padding: 25px;
}

.member-photo {
    width: 115px;
    height: 135px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid #f0d09a;
}

.member-id-text {
    color: var(--mja-primary-dark);
    font-weight: 800;
    font-size: 1.15rem;
}


/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
    min-height: 260px;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 18px 17px;
    color: #fff;
    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.82)
        );
}

.gallery-overlay h4 {
    color: #fff;
    margin: 0;
}


/* ---------------------------------------------------------
   STORY PROFILE
--------------------------------------------------------- */

.story-person-img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.story-profession {
    color: var(--mja-primary-dark);
    font-weight: 700;
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.sidebar-card {
    background: #fff;
    padding: 22px;
    border-radius: 17px;
    border: 1px solid #eee0ce;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 22px;
}

.sidebar-card h4 {
    border-bottom: 2px solid #f1d3a5;
    padding-bottom: 10px;
    margin-bottom: 15px;
}


/* ---------------------------------------------------------
   TABLES
--------------------------------------------------------- */

.table-mja {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.table-mja thead th {
    background: var(--mja-maroon);
    color: #fff;
    border: 0;
}

.table-mja td,
.table-mja th {
    vertical-align: middle;
}


/* ---------------------------------------------------------
   BADGES
--------------------------------------------------------- */

.badge-mja {
    background: rgba(242, 140, 0, 0.12);
    color: var(--mja-primary-dark);
    border: 1px solid rgba(242, 140, 0, 0.20);
    border-radius: 30px;
    padding: 6px 12px;
    font-weight: 700;
}


/* ---------------------------------------------------------
   PAGINATION
--------------------------------------------------------- */

.pagination .page-link {
    color: var(--mja-maroon);
    border-color: #ead8c3;
}

.pagination .page-item.active .page-link {
    background: var(--mja-maroon);
    border-color: var(--mja-maroon);
    color: #fff;
}

.pagination .page-link:focus {
    box-shadow: none;
}


/* ---------------------------------------------------------
   EMPTY STATE
--------------------------------------------------------- */

.empty-state {
    text-align: center;
    padding: 45px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1px dashed #ddc6aa;
}

.empty-state i {
    font-size: 3rem;
    color: var(--mja-primary);
    display: block;
    margin-bottom: 10px;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
    background:
        linear-gradient(
            135deg,
            #341010,
            #5b1717
        );
    color: #f3dfda;
    padding: 55px 0 0;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
}

.footer-brand-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
}

.footer-brand-subtitle {
    color: #f1bd73;
    font-size: 0.88rem;
}

.site-footer h5 {
    color: #fff;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #ead7d0;
}

.footer-links a:hover {
    color: #ffd78b;
    padding-left: 3px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: #f7b145;
    margin-top: 4px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-socials a:hover {
    background: var(--mja-primary);
    color: #fff;
}

.footer-bottom {
    margin-top: 38px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #d6c1bb;
    font-size: 0.9rem;
}


/* ---------------------------------------------------------
   MOBILE QUICK ACTION BAR
--------------------------------------------------------- */

.mobile-quick-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    background: #fff;
    border-top: 1px solid #eadccc;
    z-index: 1080;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    box-shadow:
        0 -5px 18px rgba(0, 0, 0, 0.08);
}

.mobile-quick-bar a {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #654f45;
    font-size: 0.73rem;
    font-weight: 600;
}

.mobile-quick-bar a i {
    font-size: 1.15rem;
    color: var(--mja-primary-dark);
    margin-bottom: 2px;
}

.mobile-quick-bar a:hover {
    background: var(--mja-cream);
}


/* ---------------------------------------------------------
   WHATSAPP FLOAT BUTTON
--------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    z-index: 1060;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.19);
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   BACK TO TOP
--------------------------------------------------------- */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 50%;
    background: var(--mja-maroon);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1055;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.16);
}

.back-to-top.show {
    display: flex;
}


/* ---------------------------------------------------------
   ALERTS
--------------------------------------------------------- */

.alert {
    border-radius: 12px;
    border: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1199.98px) {

    .navbar-nav {
        padding: 15px 0 20px;
    }

    .navbar-nav .nav-link {
        padding: 9px 5px !important;
    }

    .navbar-nav .nav-link.active::after {
        display: none;
    }

    .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding-left: 15px;
    }

    .btn-join-now {
        display: inline-block;
    }

    .hero-title {
        font-size: 3rem;
    }

}


@media (max-width: 991.98px) {

    body {
        padding-bottom: 62px;
    }

    .top-president-text {
        display: none;
    }

    .hero-section {
        padding-top: 45px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-image-wrap {
        min-height: 440px;
        margin-top: 30px;
    }

    .hero-image-bg {
        width: 340px;
        height: 340px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero-ramesh-img {
        max-height: 425px;
    }

    .leader-content {
        margin-top: 30px;
    }

    .join-cta-section {
        text-align: center;
    }

    .whatsapp-float {
        display: none;
    }

}


@media (max-width: 767.98px) {

    body {
        font-size: 16px;
    }

    .top-contact-bar {
        font-size: 0.82rem;
    }

    .site-logo {
        width: 47px;
        height: 47px;
    }

    .brand-title {
        font-size: 0.9rem;
    }

    .brand-subtitle {
        display: none;
    }

    .hero-section {
        padding: 38px 0 25px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-image-wrap {
        min-height: 390px;
    }

    .hero-image-bg {
        width: 290px;
        height: 290px;
    }

    .hero-ramesh-img {
        max-height: 375px;
    }

    .hero-leader-card {
        left: 10px;
        right: 10px;
        bottom: 12px;
    }

    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .leader-content h2 {
        font-size: 2rem;
    }

    .leader-image-box {
        min-height: 400px;
    }

    .page-header {
        padding: 35px 0;
    }

    .page-header h1 {
        font-size: 2.15rem;
    }

    .form-card {
        padding: 22px 18px;
    }

    .issue-cta {
        padding: 25px 20px;
        text-align: center;
    }

    .issue-cta-icon {
        margin: 0 auto 18px;
    }

    .join-cta-section h2 {
        font-size: 2rem;
    }

}


@media (max-width: 575.98px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-contact-link {
        font-size: 0.78rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-image-wrap {
        min-height: 350px;
    }

    .hero-ramesh-img {
        max-height: 330px;
    }

    .hero-image-bg {
        width: 250px;
        height: 250px;
    }

    .hero-leader-card {
        padding: 11px 14px;
    }

    .hero-leader-card strong {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .content-card-image {
        height: 210px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

}


/* ---------------------------------------------------------
   PRINT
--------------------------------------------------------- */

@media print {

    .top-contact-bar,
    .main-header,
    .mobile-quick-bar,
    .site-footer,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }

    body {
        background: #fff;
        padding-bottom: 0;
    }

}

:root {

    /* Primary Matang Identity */
    --mja-yellow: #f4c430;
    --mja-yellow-light: #fff3b0;
    --mja-yellow-soft: #fff9df;
    --mja-yellow-deep: #d9a600;

    /* Premium Supporting Gold */
    --mja-gold: #c99a2e;
    --mja-gold-light: #e5c76b;

    /* Premium Maroon */
    --mja-maroon: #751f24;
    --mja-maroon-dark: #4d1116;
    --mja-maroon-soft: #9a3439;

    /* Supporting Saffron */
    --mja-primary: #ef9d20;
    --mja-primary-dark: #cf7605;

    /* Neutral Premium Backgrounds */
    --mja-cream: #fffaf0;
    --mja-light: #fffdf8;
    --mja-dark: #211c18;
    --mja-gray: #6f675f;
    --mja-border: #eadfca;
    --mja-white: #ffffff;

    --mja-success: #198754;

    --mja-shadow:
        0 12px 35px rgba(77, 17, 22, 0.10);

    --mja-radius: 18px;
}

.top-contact-bar {
    background:
        linear-gradient(
            90deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-white);

    padding: 7px 0;

    font-size: 0.9rem;

    border-bottom: 3px solid var(--mja-yellow);
}

.main-header {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffdf5 100%
        );

    border-bottom: 1px solid var(--mja-border);

    position: sticky;

    top: 0;

    z-index: 1050;

    box-shadow:
        0 6px 20px rgba(77, 17, 22, 0.05);
}

.navbar-nav .nav-link.active::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 7px;

    height: 3px;

    border-radius: 4px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold)
        );
}

.btn-join-now {
    background:
        linear-gradient(
            135deg,
            var(--mja-yellow),
            #e2a817
        );

    color: var(--mja-maroon-dark) !important;

    border: 1px solid rgba(117, 31, 36, 0.10);

    padding: 10px 20px;

    border-radius: 30px;

    font-weight: 800;

    box-shadow:
        0 7px 20px rgba(244, 196, 48, 0.30);
}

.btn-join-now:hover {
    background:
        linear-gradient(
            135deg,
            #ffd854,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark) !important;

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(244, 196, 48, 0.38);
}

.hero-section {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 18%,
            rgba(244, 196, 48, 0.30),
            transparent 32%
        ),
        radial-gradient(
            circle at 5% 80%,
            rgba(117, 31, 36, 0.06),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #fffaf0 0%,
            #fffef9 48%,
            #fff5ce 100%
        );

    padding: 65px 0 45px;
}

.hero-image-bg {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(255, 226, 100, 0.72),
            rgba(244, 196, 48, 0.30),
            rgba(117, 31, 36, 0.10)
        );

    border:
        1px solid rgba(201, 154, 46, 0.22);

    box-shadow:
        inset 0 0 45px rgba(255, 255, 255, 0.55);

    top: 45px;
    right: 25px;
}
.hero-title {
    font-size: 3.5rem;

    line-height: 1.08;

    font-weight: 800;

    color: var(--mja-maroon-dark);

    margin-bottom: 18px;
}

.hero-title span {
    color: var(--mja-yellow-deep);
}
.btn-mja-primary {
    background:
        linear-gradient(
            135deg,
            var(--mja-yellow),
            #dfa915
        );

    color: var(--mja-maroon-dark);

    border: none;

    border-radius: 30px;

    padding: 12px 24px;

    font-weight: 800;

    box-shadow:
        0 8px 24px rgba(244, 196, 48, 0.28);
}

.btn-mja-primary:hover {
    background:
        linear-gradient(
            135deg,
            #ffdc62,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    transform: translateY(-2px);
}
.mission-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    color: var(--mja-maroon-dark);

    background:
        linear-gradient(
            145deg,
            #ffe26a,
            var(--mja-yellow)
        );

    border:
        1px solid rgba(117, 31, 36, 0.08);

    box-shadow:
        0 8px 18px rgba(244, 196, 48, 0.20);

    font-size: 1.55rem;

    margin-bottom: 18px;
}
.stats-section {
    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
}

.stat-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    margin: 0 auto 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(244, 196, 48, 0.14);

    border:
        1px solid rgba(244, 196, 48, 0.28);

    color: var(--mja-yellow);

    font-size: 1.6rem;
}

.stat-number {
    font-size: 2.3rem;

    font-weight: 800;

    line-height: 1;

    color: var(--mja-yellow);
}

.stat-label {
    margin-top: 8px;

    color: #fff5d6;

    font-size: 1rem;

    font-weight: 600;
}
.annabhau-section {
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244, 196, 48, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #431014,
            #751f24
        );

    color: #fff;

    overflow: hidden;
}

.annabhau-highlight {
    display: inline-block;

    background:
        rgba(244, 196, 48, 0.13);

    color: #ffe88b;

    border:
        1px solid rgba(244, 196, 48, 0.30);

    border-radius: 30px;

    padding: 7px 15px;

    font-weight: 700;

    margin-bottom: 15px;
}
.leader-image-box {
    position: relative;

    background:
        radial-gradient(
            circle at 50% 30%,
            #ffef9d,
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #ffe68a,
            #fff8dc
        );

    border-radius: 28px;

    min-height: 480px;

    overflow: hidden;

    box-shadow: var(--mja-shadow);

    border:
        1px solid rgba(201, 154, 46, 0.22);

    display: flex;

    align-items: flex-end;

    justify-content: center;
}
.leader-badge {
    position: absolute;


    bottom: 18px;
    left: 18px;
    right: 18px;


    padding: 14px 18px;


    border-radius: 14px;


    background:
        linear-gradient(
            135deg,
            rgba(77, 17, 22, 0.96),
            rgba(117, 31, 36, 0.96)
        );


    color: #fff;


    border-bottom:
        3px solid var(--mja-yellow);


    backdrop-filter: blur(8px);
}

/* =========================================================
   PREMIUM YELLOW FOOTER ENHANCEMENTS
   ========================================================= */

.site-footer {
    position: relative;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(244, 196, 48, 0.10),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(244, 196, 48, 0.07),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #351014 0%,
            #56161b 45%,
            #701e24 100%
        );

    color: #f4e7df;

    padding: 60px 0 0;

    border-top: 5px solid var(--mja-yellow);
}


.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--mja-gold-light),
            transparent
        );
}


.footer-logo {
    width: 68px;
    height: 68px;

    object-fit: contain;

    background: #fff;

    border-radius: 50%;

    padding: 5px;

    border: 3px solid var(--mja-yellow);

    box-shadow:
        0 7px 22px rgba(0, 0, 0, 0.18);
}


.footer-brand-title {
    color: var(--mja-yellow);

    font-size: 1.18rem;

    font-weight: 800;
}


.footer-brand-subtitle {
    color: #f6df9b;

    font-size: 0.88rem;
}


.site-footer h5 {
    color: var(--mja-yellow);

    font-weight: 700;

    margin-bottom: 18px;

    position: relative;

    padding-bottom: 10px;
}


.site-footer h5::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold)
        );

    border-radius: 5px;
}


.footer-links a {
    color: #eadbd4;

    display: inline-flex;

    align-items: center;
}


.footer-links a:hover {
    color: var(--mja-yellow);

    padding-left: 4px;
}


.footer-contact-item i {
    color: var(--mja-yellow);

    margin-top: 4px;
}


.footer-contact-link {
    color: #f4e7df;
}


.footer-contact-link:hover {
    color: var(--mja-yellow);
}


/* President */

.footer-president-box {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 5px;

    padding: 10px 15px;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(244, 196, 48, 0.18);
}


.footer-president-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe167,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);
}


.footer-president-box small {
    display: block;

    color: #e8cfa9;

    line-height: 1.1;
}


.footer-president-box strong {
    display: block;

    color: #fff;

    margin-top: 3px;
}


/* Social icons */

.footer-socials a {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(244, 196, 48, 0.15);

    color: #fff;
}


.footer-socials a:hover {
    background:
        linear-gradient(
            145deg,
            #ffe16a,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    border-color: var(--mja-yellow);

    transform: translateY(-3px);
}


/* Join card */

.footer-join-card {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 15px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(244, 196, 48, 0.14),
            rgba(244, 196, 48, 0.05)
        );

    border:
        1px solid rgba(244, 196, 48, 0.22);
}


.footer-join-card > i {
    font-size: 1.8rem;

    color: var(--mja-yellow);
}


.footer-join-card strong {
    display: block;

    color: #fff;

    font-size: 0.95rem;
}


.footer-join-card a {
    color: var(--mja-yellow);

    font-weight: 700;

    font-size: 0.9rem;
}


/* Contact button */

.footer-contact-btn {
    background:
        linear-gradient(
            135deg,
            var(--mja-yellow),
            #dba717
        );

    color: var(--mja-maroon-dark);

    border: none;

    border-radius: 30px;

    font-weight: 800;

    padding: 9px 18px;
}


.footer-contact-btn:hover {
    background: #ffe06a;

    color: var(--mja-maroon-dark);

    transform: translateY(-2px);
}


/* Policy area */

.footer-policy-area {
    margin-top: 45px;

    padding: 18px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}


.footer-policy-area a {
    color: #dfcec7;

    font-size: 0.9rem;
}


.footer-policy-area a:hover {
    color: var(--mja-yellow);
}


.footer-divider {
    color: rgba(244, 196, 48, 0.45);

    margin: 0 8px;
}


.footer-language-switch {
    font-size: 0.9rem;

    color: #e6d2c9;
}


.footer-language-switch i {
    color: var(--mja-yellow);
}


.footer-language-switch a {
    margin: 0 3px;
}


.footer-language-switch a.active {
    color: var(--mja-yellow);

    font-weight: 700;
}


/* Copyright */

.footer-bottom {
    margin-top: 0;

    padding: 17px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #cdbbb5;

    font-size: 0.9rem;
}


.footer-unity-message {
    color: #efd88d;

    font-weight: 600;
}


.footer-unity-message i {
    color: var(--mja-yellow);
}


/* Mobile */

@media (max-width: 767.98px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-policy-area {
        text-align: center;
    }

    .footer-bottom {
        text-align: center;
    }

}

/* =========================================================
   HOMEPAGE PREMIUM YELLOW ENHANCEMENTS
   ========================================================= */


/* ---------------------------------------------------------
   HERO MINI STATS
--------------------------------------------------------- */

.hero-trust-strip {
    max-width: 620px;
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
    padding-left: 14px;
    border-left: 3px solid var(--mja-yellow);
}

.hero-mini-stat strong {
    color: var(--mja-maroon-dark);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-mini-stat span {
    color: var(--mja-gray);
    font-size: 0.88rem;
    margin-top: 3px;
}

.hero-leader-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--mja-maroon-dark);

    background:
        linear-gradient(
            145deg,
            #ffe36a,
            var(--mja-yellow)
        );

    box-shadow:
        0 5px 15px rgba(244, 196, 48, 0.22);
}


/* ---------------------------------------------------------
   COMMUNITY IDENTITY STRIP
--------------------------------------------------------- */

.identity-strip {
    position: relative;

    padding: 19px 0;

    background:
        linear-gradient(
            90deg,
            #f2c12c 0%,
            #ffd75a 50%,
            #efbd24 100%
        );

    border-top:
        1px solid rgba(77, 17, 22, 0.08);

    border-bottom:
        1px solid rgba(77, 17, 22, 0.10);
}

.identity-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.identity-dot {
    width: 13px;
    height: 13px;

    flex: 0 0 13px;

    border-radius: 50%;

    background:
        var(--mja-maroon-dark);

    box-shadow:
        0 0 0 7px rgba(77, 17, 22, 0.10);
}

.identity-content strong {
    color: var(--mja-maroon-dark);
    font-size: 1.05rem;
}

.identity-content p {
    color: #624a22;
    margin: 1px 0 0;
}

.identity-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--mja-maroon-dark);

    font-weight: 800;
}

.identity-link:hover {
    color: #2f0b0e;
    gap: 12px;
}


/* ---------------------------------------------------------
   EYEBROW - YELLOW IDENTITY
--------------------------------------------------------- */

.section-eyebrow {
    background:
        linear-gradient(
            145deg,
            rgba(244, 196, 48, 0.20),
            rgba(244, 196, 48, 0.08)
        );

    border:
        1px solid rgba(201, 154, 46, 0.18);

    color: #9a7005;
}


/* ---------------------------------------------------------
   ABOUT CARD YELLOW DETAILS
--------------------------------------------------------- */

.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold)
        );
}

.about-icon {
    color: var(--mja-maroon-dark);

    background:
        linear-gradient(
            145deg,
            #ffe877,
            #f4c430
        );
}


/* ---------------------------------------------------------
   CTA YELLOW LABEL
--------------------------------------------------------- */

.cta-yellow-label {
    display: inline-flex;

    align-items: center;

    padding: 6px 13px;

    margin-bottom: 12px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.13);

    border:
        1px solid rgba(244, 196, 48, 0.23);

    color: #ffe582;

    font-weight: 700;
}


/* ---------------------------------------------------------
   YOUTH CARDS
--------------------------------------------------------- */

.youth-card {
    position: relative;
    overflow: hidden;
}

.youth-card::after {
    content: "";

    position: absolute;

    right: -25px;
    bottom: -25px;

    width: 85px;
    height: 85px;

    border-radius: 50%;

    background:
        rgba(244, 196, 48, 0.10);
}

.youth-icon {
    background:
        linear-gradient(
            145deg,
            var(--mja-yellow),
            #d8a515
        );

    color: var(--mja-maroon-dark);

    box-shadow:
        0 7px 17px rgba(244, 196, 48, 0.20);
}


/* ---------------------------------------------------------
   CONTENT CARDS PREMIUM TOP ACCENT
--------------------------------------------------------- */

.content-card {
    position: relative;
}

.content-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            transparent 70%
        );

    z-index: 2;
}


/* ---------------------------------------------------------
   EVENT DATE
--------------------------------------------------------- */

.event-date-box {
    background: #fffdf5;
}

.event-date-month {
    background:
        var(--mja-maroon-dark);

    color:
        var(--mja-yellow);
}


/* ---------------------------------------------------------
   ISSUE CTA PREMIUM
--------------------------------------------------------- */

.issue-cta {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(244, 196, 48, 0.22),
            transparent 27%
        ),
        linear-gradient(
            125deg,
            #fff9e4,
            #fffdf8
        );

    border:
        1px solid rgba(201, 154, 46, 0.32);
}

.issue-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 7px;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            var(--mja-yellow),
            var(--mja-gold)
        );
}

.issue-cta-icon {
    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border:
        4px solid var(--mja-yellow-soft);

    box-shadow:
        0 8px 20px rgba(77, 17, 22, 0.18);
}


/* ---------------------------------------------------------
   FINAL HOMEPAGE CTA
--------------------------------------------------------- */

.homepage-final-cta {
    padding: 75px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff7de
        );
}

.final-cta-card {
    position: relative;

    overflow: hidden;

    padding: 42px;

    border-radius: 27px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(244, 196, 48, 0.21),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #451217,
            #731f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 50px rgba(77, 17, 22, 0.15);
}

.final-cta-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 7%;

    width: 150px;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold)
        );
}

.final-cta-small {
    color: #ffe58a;

    font-weight: 700;
}

.final-cta-card h2 {
    color: #fff;

    font-size: 2.4rem;

    margin-top: 8px;

    margin-bottom: 10px;
}

.final-cta-card p {
    color: #ead8d2;

    margin-bottom: 0;
}

.btn-final-yellow {
    background:
        linear-gradient(
            145deg,
            #ffe06b,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    border: 0;

    padding: 11px 22px;

    border-radius: 30px;

    font-weight: 800;
}

.btn-final-yellow:hover {
    background: #ffe985;
    color: var(--mja-maroon-dark);
    transform: translateY(-2px);
}

.btn-final-outline {
    border:
        1px solid rgba(255, 255, 255, 0.45);

    color: #fff;

    padding: 10px 22px;

    border-radius: 30px;

    font-weight: 700;
}

.btn-final-outline:hover {
    background: #fff;

    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   MOBILE HOMEPAGE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .identity-strip {
        text-align: center;
    }

    .identity-content {
        justify-content: center;
        text-align: left;
    }

    .final-cta-card {
        padding: 32px;
    }

}


@media (max-width: 767.98px) {

    .hero-mini-stat {
        padding: 10px 12px;

        border-left: 0;

        border-top:
            3px solid var(--mja-yellow);

        background:
            rgba(255, 255, 255, 0.55);

        border-radius: 10px;
    }

    .identity-content {
        align-items: flex-start;
    }

    .identity-dot {
        margin-top: 6px;
    }

    .final-cta-card {
        padding: 28px 22px;

        text-align: center;
    }

    .final-cta-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   ABOUT PAGE
   ========================================================= */


/* ---------------------------------------------------------
   ABOUT HIGHLIGHT
--------------------------------------------------------- */

.about-highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #fff6c9,
            #fffdf3
        );

    border:
        1px solid rgba(201, 154, 46, 0.26);
}

.about-highlight-box > i {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            var(--mja-yellow),
            #d6a014
        );

    color: var(--mja-maroon-dark);

    font-size: 1.35rem;
}

.about-highlight-box strong {
    display: block;

    color: var(--mja-maroon-dark);

    font-size: 1.05rem;
}

.about-highlight-box p {
    color: var(--mja-gray);

    margin-top: 3px;
}


/* ---------------------------------------------------------
   ABOUT RAMESH VISUAL
--------------------------------------------------------- */

.about-visual-card {
    position: relative;

    min-height: 510px;

    overflow: hidden;

    border-radius: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 32%,
            #fff0a4,
            transparent 39%
        ),
        linear-gradient(
            145deg,
            #ffe374,
            #fff7d8 60%,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 20px 45px rgba(77, 17, 22, 0.12);
}

.about-visual-circle {
    position: absolute;

    top: 70px;
    left: 50%;

    width: 330px;
    height: 330px;

    transform: translateX(-50%);

    border-radius: 50%;

    border:
        1px solid rgba(117, 31, 36, 0.10);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.50),
            rgba(244, 196, 48, 0.15)
        );
}

.about-ramesh-image {
    position: relative;

    z-index: 2;

    max-height: 495px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 17px 20px rgba(60, 20, 20, 0.17)
        );
}

.about-visual-overlay {
    position: absolute;

    z-index: 3;

    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 15px 18px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(69, 18, 23, 0.97),
            rgba(117, 31, 36, 0.95)
        );

    border-bottom:
        3px solid var(--mja-yellow);

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.18);
}

.about-visual-overlay span {
    display: block;

    color: #e9d4cc;

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.about-visual-overlay strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.28rem;
}

.about-visual-overlay small {
    color: #fff0d2;
}


/* ---------------------------------------------------------
   PREMIUM FEATURE CARDS
--------------------------------------------------------- */

.premium-feature-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 28px 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffaf0
        );

    border:
        1px solid #eedfc9;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.premium-feature-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            transparent 85%
        );
}

.premium-feature-card::after {
    content: "";

    position: absolute;

    right: -45px;
    bottom: -45px;

    width: 110px;
    height: 110px;

    border-radius: 50%;

    background:
        rgba(244, 196, 48, 0.07);
}

.premium-feature-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(201, 154, 46, 0.38);

    box-shadow:
        0 14px 35px rgba(77, 17, 22, 0.09);
}

.premium-feature-icon {
    position: relative;

    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #ffe470,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.55rem;

    box-shadow:
        0 8px 20px rgba(244, 196, 48, 0.22);
}

.premium-feature-card h4 {
    position: relative;

    z-index: 2;

    font-size: 1.25rem;
}

.premium-feature-card p {
    position: relative;

    z-index: 2;

    color: var(--mja-gray);

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   OBJECTIVES
--------------------------------------------------------- */

.objectives-heading {
    position: sticky;

    top: 120px;
}

.objective-list {
    display: grid;

    gap: 12px;
}

.objective-item {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 16px 18px;

    border-radius: 16px;

    background: #fff;

    border:
        1px solid #ebdfcf;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.objective-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(201, 154, 46, 0.35);

    box-shadow:
        0 8px 20px rgba(77, 17, 22, 0.06);
}

.objective-number {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-weight: 800;
}

.objective-item strong {
    color: var(--mja-maroon-dark);

    font-size: 1.02rem;
}


/* ---------------------------------------------------------
   CORE VALUES
--------------------------------------------------------- */

.values-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(244, 196, 48, 0.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #451217,
            #711f25
        );
}

.values-section .section-title {
    color: #fff;
}

.values-section .section-eyebrow {
    color: #ffe88d;

    background:
        rgba(244, 196, 48, 0.10);

    border-color:
        rgba(244, 196, 48, 0.20);
}

.value-card {
    height: 100%;

    min-height: 145px;

    padding: 22px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(244, 196, 48, 0.16);

    backdrop-filter: blur(5px);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.value-card:hover {
    transform: translateY(-5px);

    background:
        rgba(244, 196, 48, 0.09);
}

.value-icon {
    width: 54px;
    height: 54px;

    margin-bottom: 12px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ffe474,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.35rem;
}

.value-card strong {
    color: #fff;

    font-size: 1rem;
}


/* ---------------------------------------------------------
   DIGITAL NETWORK VISUAL
--------------------------------------------------------- */

.digital-network-visual {
    position: relative;

    min-height: 450px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            #fff6c8,
            #fffdf7 68%
        );

    border:
        1px solid #ecddc6;

    overflow: hidden;

    box-shadow:
        0 18px 42px rgba(77, 17, 22, 0.08);
}

.digital-network-visual::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 270px;
    height: 270px;

    transform:
        translate(-50%, -50%);

    border:
        2px dashed rgba(201, 154, 46, 0.30);

    border-radius: 50%;
}

.network-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    transform:
        translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff3bd
        );

    border:
        5px solid var(--mja-yellow);

    box-shadow:
        0 12px 30px rgba(77, 17, 22, 0.13);

    z-index: 3;
}

.network-center img {
    width: 82px;
    height: 82px;

    object-fit: contain;
}

.network-node {
    position: absolute;

    width: 105px;
    min-height: 82px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 10px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: #fff;

    border:
        2px solid var(--mja-yellow);

    box-shadow:
        0 10px 25px rgba(77, 17, 22, 0.14);
}

.network-node i {
    color: var(--mja-yellow);

    font-size: 1.35rem;

    margin-bottom: 3px;
}

.network-node span {
    font-size: 0.9rem;

    font-weight: 700;
}

.node-state {
    top: 35px;
    left: 50%;

    transform: translateX(-50%);
}

.node-district {
    right: 35px;
    top: 50%;

    transform: translateY(-50%);
}

.node-taluka {
    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);
}

.node-village {
    left: 35px;
    top: 50%;

    transform: translateY(-50%);
}


/* ---------------------------------------------------------
   PREMIUM CHECK LIST
--------------------------------------------------------- */

.premium-check-list {
    list-style: none;

    padding: 0;

    margin: 25px 0 0;
}

.premium-check-list li {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    padding: 11px 0;

    border-bottom:
        1px solid #eee2d3;

    color: #4f4943;
}

.premium-check-list li:last-child {
    border-bottom: 0;
}

.premium-check-list i {
    color: #c28d00;

    margin-top: 4px;
}


/* ---------------------------------------------------------
   LEADERSHIP MESSAGE
--------------------------------------------------------- */

.leadership-message-section {
    background:
        linear-gradient(
            180deg,
            #fffaf0,
            #fffdf8
        );
}

.leadership-message-card {
    position: relative;

    overflow: hidden;

    padding: 34px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(244, 196, 48, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #441116,
            #751f25
        );

    box-shadow:
        0 20px 45px rgba(77, 17, 22, 0.14);

    border:
        1px solid rgba(201, 154, 46, 0.24);
}

.message-leader-image {
    width: 190px;
    height: 220px;

    margin: auto;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffe27b,
            #fff7da
        );

    border:
        3px solid var(--mja-yellow);

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.message-leader-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.leadership-message-label {
    display: inline-block;

    padding: 5px 12px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.12);

    color: #ffe487;

    border:
        1px solid rgba(244, 196, 48, 0.22);

    font-weight: 700;
}

.leadership-message-card h2 {
    color: var(--mja-yellow);

    margin-top: 10px;

    margin-bottom: 0;
}

.leadership-designation {
    color: #f0d9ce;

    font-weight: 600;
}

.leadership-message-card blockquote {
    color: #fff;

    font-size: 1.18rem;

    margin: 20px 0;

    padding-left: 20px;

    border-left:
        4px solid var(--mja-yellow);
}


/* ---------------------------------------------------------
   ABOUT FINAL CTA
--------------------------------------------------------- */

.about-final-cta {
    padding: 75px 0;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(244, 196, 48, 0.16),
            transparent 35%
        ),
        #fffaf0;
}

.about-final-cta h2 {
    font-size: 2.5rem;

    font-weight: 800;

    margin-bottom: 14px;
}

.about-final-cta p {
    max-width: 760px;

    margin:
        0 auto 25px;

    color: var(--mja-gray);

    font-size: 1.08rem;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .objectives-heading {
        position: static;
    }

    .about-visual-card {
        min-height: 460px;
    }

    .digital-network-visual {
        min-height: 420px;
    }

}


@media (max-width: 575.98px) {

    .about-visual-card {
        min-height: 390px;
    }

    .about-ramesh-image {
        max-height: 380px;
    }

    .about-visual-circle {
        width: 250px;
        height: 250px;
    }

    .objective-item {
        align-items: flex-start;
    }

    .digital-network-visual {
        min-height: 360px;
    }

    .network-center {
        width: 90px;
        height: 90px;
    }

    .network-center img {
        width: 60px;
        height: 60px;
    }

    .network-node {
        width: 82px;
        min-height: 66px;

        font-size: 0.75rem;
    }

    .network-node i {
        font-size: 1rem;
    }

    .node-state {
        top: 25px;
    }

    .node-taluka {
        bottom: 25px;
    }

    .node-district {
        right: 15px;
    }

    .node-village {
        left: 15px;
    }

    .leadership-message-card {
        padding: 25px 18px;

        text-align: center;
    }

    .leadership-message-card blockquote {
        text-align: left;
    }

    .about-final-cta h2 {
        font-size: 2rem;
    }

}

/* =========================================================
   LEADERSHIP PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */

.leadership-hero {
    position: relative;
    overflow: hidden;

    padding: 70px 0 45px;

    background:
        radial-gradient(
            circle at 86% 20%,
            rgba(244, 196, 48, 0.30),
            transparent 31%
        ),
        radial-gradient(
            circle at 4% 90%,
            rgba(117, 31, 36, 0.06),
            transparent 27%
        ),
        linear-gradient(
            125deg,
            #fffaf0,
            #fffef8 50%,
            #fff3c7
        );
}

.leadership-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-maroon-dark),
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-maroon-dark)
        );
}

.leadership-hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 8px 15px;

    border-radius: 30px;

    margin-bottom: 17px;

    background:
        rgba(244, 196, 48, 0.17);

    border:
        1px solid rgba(201, 154, 46, 0.22);

    color: #986d00;

    font-weight: 800;
}

.leadership-hero-content h1 {
    font-size: 4rem;

    line-height: 1;

    margin-bottom: 14px;

    color: var(--mja-maroon-dark);

    font-weight: 800;
}

.leadership-role {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;

    color: #a67a05;

    font-size: 1.15rem;

    font-weight: 800;
}

.leadership-role span {
    color: var(--mja-maroon);
}

.leadership-hero-text {
    max-width: 650px;

    margin: 23px 0;

    color: #514943;

    font-size: 1.16rem;
}


/* ---------------------------------------------------------
   PORTRAIT
--------------------------------------------------------- */

.leadership-portrait-card {
    position: relative;

    min-height: 550px;

    overflow: hidden;

    border-radius: 34px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #fff4bd,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 24px 55px rgba(77, 17, 22, 0.14);
}

.leadership-yellow-orb {
    position: absolute;

    top: 55px;
    left: 50%;

    width: 350px;
    height: 350px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 40% 35%,
            #fff7bd,
            #f4c430
        );

    box-shadow:
        inset 0 0 45px rgba(255, 255, 255, 0.35);
}

.leadership-maroon-ring {
    position: absolute;

    top: 95px;
    left: 50%;

    width: 270px;
    height: 270px;

    transform: translateX(-50%);

    border:
        2px solid rgba(117, 31, 36, 0.18);

    border-radius: 50%;
}

.leadership-main-photo {
    position: relative;

    z-index: 2;

    max-height: 535px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 24px rgba(60, 20, 20, 0.17)
        );
}

.leadership-photo-caption {
    position: absolute;

    z-index: 3;

    left: 22px;
    right: 22px;
    bottom: 22px;

    padding: 15px 18px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(69, 18, 23, 0.97),
            rgba(117, 31, 36, 0.96)
        );

    border-bottom:
        4px solid var(--mja-yellow);

    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.17);
}

.leadership-photo-caption span {
    display: block;

    color: #ead7cf;

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.leadership-photo-caption strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.35rem;
}

.leadership-photo-caption small {
    color: #fff3d5;
}


/* ---------------------------------------------------------
   PROFILE CARD
--------------------------------------------------------- */

.leadership-profile-card {
    overflow: hidden;

    border-radius: 22px;

    background: #fff;

    border:
        1px solid #eadcc8;

    box-shadow:
        0 15px 35px rgba(77, 17, 22, 0.08);
}

.leadership-profile-top {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
}

.leadership-profile-top > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-yellow);

    color:
        var(--mja-maroon-dark);

    font-size: 1.35rem;
}

.leadership-profile-top small {
    display: block;

    color: #ead5cf;
}

.leadership-profile-top strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.2rem;
}

.leadership-profile-list {
    padding: 8px 20px 15px;
}

.leadership-profile-row {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee3d5;
}

.leadership-profile-row:last-child {
    border-bottom: 0;
}

.leadership-profile-row span {
    color: #766c63;
}

.leadership-profile-row strong {
    text-align: right;

    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   VISION
--------------------------------------------------------- */

.leadership-vision-section {
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(244, 196, 48, 0.07),
            transparent 25%
        ),
        #fffaf0;
}

.leadership-vision-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 28px 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fffaf0
        );

    border:
        1px solid #eadcc8;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.leadership-vision-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -35px;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
        rgba(244, 196, 48, 0.08);
}

.leadership-vision-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 36px rgba(77, 17, 22, 0.09);
}

.leadership-vision-icon {
    position: relative;

    z-index: 2;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffe26b,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.leadership-vision-card h4,
.leadership-vision-card p {
    position: relative;

    z-index: 2;
}

.leadership-vision-card p {
    color: var(--mja-gray);

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   PRINCIPLES
--------------------------------------------------------- */

.leadership-side-photo {
    position: relative;

    min-height: 450px;

    overflow: hidden;

    border-radius: 28px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ffe77f,
            #fff9df
        );

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 16px 38px rgba(77, 17, 22, 0.10);
}

.leadership-side-bg {
    position: absolute;

    top: 65px;
    left: 50%;

    width: 285px;
    height: 285px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.50);

    border:
        1px solid rgba(117, 31, 36, 0.10);
}

.leadership-side-photo img {
    position: relative;

    z-index: 2;

    max-height: 435px;

    object-fit: contain;
}

.leadership-principles {
    display: grid;

    gap: 12px;

    margin-top: 25px;
}

.leadership-principle-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 17px;

    border-radius: 15px;

    background: #fff;

    border:
        1px solid #eadfce;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.leadership-principle-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(201, 154, 46, 0.40);
}

.leadership-principle-number {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-weight: 800;
}

.leadership-principle-item strong {
    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   YOUTH MESSAGE
--------------------------------------------------------- */

.leadership-youth-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(244, 196, 48, 0.15),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #441116,
            #731f25
        );

    color: #fff;
}

.leadership-youth-section h2 {
    color: #fff;

    font-size: 2.5rem;
}

.leadership-youth-section p {
    color: #eeded8;
}

.leadership-yellow-label {
    display: inline-block;

    padding: 6px 13px;

    margin-bottom: 12px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.12);

    border:
        1px solid rgba(244, 196, 48, 0.22);

    color: #ffe688;

    font-weight: 800;
}

.leadership-youth-symbol {
    min-height: 280px;

    padding: 35px;

    border-radius: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(244, 196, 48, 0.20);

    backdrop-filter: blur(6px);
}

.leadership-youth-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36a,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.leadership-youth-symbol strong {
    color: #fff;

    font-size: 1.25rem;
}

.leadership-youth-symbol > span {
    color: var(--mja-yellow);

    font-weight: 800;

    font-size: 1.25rem;

    margin: 2px 0;
}


/* ---------------------------------------------------------
   MAIN MESSAGE
--------------------------------------------------------- */

.leadership-message-main {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff7dd
        );
}

.leadership-main-message-card {
    position: relative;

    overflow: hidden;

    padding: 48px;

    border-radius: 30px;

    text-align: center;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.30);

    box-shadow:
        0 20px 50px rgba(77, 17, 22, 0.10);
}

.leadership-main-message-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-maroon),
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-maroon)
        );
}

.leadership-message-quote-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36a,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2.2rem;
}

.leadership-message-overline {
    color: #a27600;

    font-weight: 800;
}

.leadership-main-message-card h2 {
    max-width: 850px;

    margin:
        12px auto 18px;

    font-size: 2.4rem;
}

.leadership-main-message-card p {
    max-width: 870px;

    margin:
        0 auto 25px;

    color: var(--mja-gray);

    font-size: 1.12rem;
}

.leadership-signoff strong {
    display: block;

    color: var(--mja-maroon-dark);

    font-size: 1.2rem;
}

.leadership-signoff span {
    color: #8d8176;
}


/* ---------------------------------------------------------
   ANNABHAU
--------------------------------------------------------- */

.leadership-annabhau {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(244, 196, 48, 0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #411015,
            #701e24
        );

    color: #fff;
}

.leadership-annabhau h2 {
    color: #fff;
}

.leadership-annabhau p {
    color: #eeded7;
}

.leadership-annabhau-image {
    max-width: 360px;

    margin: auto;

    padding: 7px;

    border-radius: 22px;

    background: #fff;

    border:
        4px solid var(--mja-yellow);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.20);
}

.leadership-annabhau-image img {
    width: 100%;

    border-radius: 15px;
}

.leadership-annabhau-label {
    display: inline-block;

    padding: 6px 13px;

    margin-bottom: 12px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.12);

    border:
        1px solid rgba(244, 196, 48, 0.24);

    color: #ffe68a;

    font-weight: 800;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.leadership-final-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d9
        );
}

.leadership-final-card {
    padding: 40px;

    border-radius: 27px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #461217,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.26);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.leadership-final-card > .row > div:first-child > span {
    color: #ffe687;

    font-weight: 800;
}

.leadership-final-card h2 {
    color: #fff;

    margin-top: 6px;

    font-size: 2.35rem;
}

.leadership-final-card p {
    color: #ead8d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .leadership-hero {
        padding-top: 50px;
    }

    .leadership-hero-content h1 {
        font-size: 3.2rem;
    }

    .leadership-portrait-card {
        min-height: 500px;
    }

    .leadership-youth-section {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .leadership-hero-content h1 {
        font-size: 2.7rem;
    }

    .leadership-portrait-card {
        min-height: 430px;
    }

    .leadership-main-photo {
        max-height: 415px;
    }

    .leadership-yellow-orb {
        width: 280px;
        height: 280px;
    }

    .leadership-main-message-card {
        padding: 35px 23px;
    }

    .leadership-main-message-card h2 {
        font-size: 2rem;
    }

    .leadership-final-card {
        padding: 30px 22px;

        text-align: center;
    }

}


@media (max-width: 575.98px) {

    .leadership-hero-content h1 {
        font-size: 2.35rem;
    }

    .leadership-role {
        font-size: 1rem;
    }

    .leadership-portrait-card {
        min-height: 390px;
    }

    .leadership-main-photo {
        max-height: 380px;
    }

    .leadership-yellow-orb {
        width: 240px;
        height: 240px;
    }

    .leadership-side-photo {
        min-height: 380px;
    }

    .leadership-side-photo img {
        max-height: 370px;
    }

    .leadership-youth-section h2 {
        font-size: 2rem;
    }

    .leadership-main-message-card h2 {
        font-size: 1.75rem;
    }

    .leadership-final-card h2 {
        font-size: 1.9rem;
    }

}


/* =========================================================
   VISION & MISSION PAGE
   ========================================================= */

.vision-main-card {
    position: relative;
    overflow: hidden;

    padding: 38px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #fff9e5
        );

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 18px 42px rgba(77, 17, 22, 0.08);
}

.vision-main-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-maroon)
        );
}

.vision-number {
    position: absolute;

    top: 15px;
    right: 24px;

    color: rgba(117, 31, 36, 0.06);

    font-size: 6rem;

    line-height: 1;

    font-weight: 800;
}

.vision-main-card p {
    color: #5e554d;
}


/* Vision Visual */

.vision-visual {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            #fff4ab,
            #fffdf6 63%
        );

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 18px 42px rgba(77, 17, 22, 0.09);
}

.vision-glow {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 310px;
    height: 310px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 196, 48, 0.32),
            transparent 68%
        );
}

.vision-logo-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 125px;
    height: 125px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    border:
        5px solid var(--mja-yellow);

    box-shadow:
        0 14px 34px rgba(77, 17, 22, 0.14);

    z-index: 4;
}

.vision-logo-circle img {
    width: 85px;
    height: 85px;

    object-fit: contain;
}

.vision-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border:
        2px dashed rgba(201, 154, 46, 0.26);
}

.orbit-1 {
    width: 260px;
    height: 260px;
}

.orbit-2 {
    width: 380px;
    height: 380px;
}

.vision-point {
    position: absolute;

    width: 110px;
    min-height: 85px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border:
        2px solid var(--mja-yellow);

    color: #fff;

    text-align: center;

    box-shadow:
        0 10px 24px rgba(77, 17, 22, 0.15);

    z-index: 5;
}

.vision-point i {
    color: var(--mja-yellow);

    font-size: 1.35rem;

    margin-bottom: 3px;
}

.vision-point span {
    font-size: 0.9rem;
    font-weight: 700;
}

.point-1 {
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.point-2 {
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
}

.point-3 {
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
}

.point-4 {
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
}


/* Mission Cards */

.vm-mission-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 28px 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fffaf0
        );

    border:
        1px solid #ebdfcd;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.vm-mission-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            transparent 80%
        );
}

.vm-mission-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 35px rgba(77, 17, 22, 0.09);
}

.vm-mission-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffe46e,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;

    box-shadow:
        0 8px 18px rgba(244, 196, 48, 0.20);
}

.vm-mission-card p {
    color: var(--mja-gray);
    margin-bottom: 0;
}


/* Priority Section */

.vm-priority-section {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(244, 196, 48, 0.08),
            transparent 25%
        ),
        #fffdf8;
}

.vm-priority-list {
    display: grid;
    gap: 12px;
}

.vm-priority-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border-radius: 16px;

    background: #fff;

    border:
        1px solid #eadfce;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.vm-priority-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(201, 154, 46, 0.38);
}

.vm-priority-number {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-weight: 800;
}

.vm-priority-item strong {
    color: var(--mja-maroon-dark);
}


/* Roadmap */

.vm-roadmap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #461217,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 18px 40px rgba(77, 17, 22, 0.13);
}

.vm-roadmap-step {
    position: relative;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.vm-roadmap-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36c,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.45rem;
}

.vm-roadmap-step > span {
    color: #fff;
    font-weight: 700;
}

.vm-roadmap-arrow {
    position: absolute;

    right: -16px;
    top: 22px;

    color: var(--mja-yellow);

    font-size: 1.2rem;
}


/* Network */

.vm-network-section {
    background:
        linear-gradient(
            180deg,
            #fffaf0,
            #fffdf8
        );
}

.vm-network-card {
    position: relative;

    min-height: 460px;

    border-radius: 28px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #fff2a8,
            #fffdf6 68%
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 18px 40px rgba(77, 17, 22, 0.09);
}

.vm-network-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    border:
        5px solid var(--mja-yellow);

    box-shadow:
        0 12px 30px rgba(77, 17, 22, 0.14);

    z-index: 5;
}

.vm-network-center img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.vm-network-layer {
    position: absolute;

    min-width: 110px;

    padding: 9px 14px;

    border-radius: 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border:
        2px solid var(--mja-yellow);

    color: #fff;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(77, 17, 22, 0.14);
}

.layer-state {
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.layer-division {
    right: 35px;
    top: 125px;
}

.layer-district {
    right: 35px;
    bottom: 90px;
}

.layer-taluka {
    left: 35px;
    bottom: 90px;
}

.layer-local {
    left: 35px;
    top: 125px;
}


/* Values */

.vm-values-section {
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(244, 196, 48, 0.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #421015,
            #701e24
        );
}

.vm-values-section .section-title {
    color: #fff;
}

.vm-values-section .section-eyebrow {
    color: #ffe68c;

    background:
        rgba(244, 196, 48, 0.10);

    border-color:
        rgba(244, 196, 48, 0.20);
}

.vm-value-card {
    min-height: 145px;

    padding: 22px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(244, 196, 48, 0.16);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.vm-value-card:hover {
    transform: translateY(-5px);

    background:
        rgba(244, 196, 48, 0.08);
}

.vm-value-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 11px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe474,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.35rem;
}

.vm-value-card strong {
    color: #fff;
}


/* Final CTA */

.vm-final-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.vm-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.vm-final-card > .row > div:first-child > span {
    color: #ffe687;
    font-weight: 800;
}

.vm-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.35rem;
}

.vm-final-card p {
    color: #ebdad3;
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 991.98px) {

    .vm-roadmap {
        flex-wrap: wrap;
    }

    .vm-roadmap-step {
        min-width: 30%;
    }

    .vm-roadmap-arrow {
        display: none;
    }

}


@media (max-width: 767.98px) {

    .vision-main-card {
        padding: 28px 22px;
    }

    .vision-visual {
        min-height: 390px;
    }

    .orbit-2 {
        width: 300px;
        height: 300px;
    }

    .vision-point {
        width: 90px;
        min-height: 72px;
    }

    .vm-roadmap-step {
        min-width: 45%;
    }

    .vm-network-card {
        min-height: 390px;
    }

    .vm-final-card {
        padding: 30px 22px;
        text-align: center;
    }

}


@media (max-width: 575.98px) {

    .vision-visual {
        min-height: 350px;
    }

    .vision-logo-circle {
        width: 95px;
        height: 95px;
    }

    .vision-logo-circle img {
        width: 65px;
        height: 65px;
    }

    .orbit-1 {
        width: 210px;
        height: 210px;
    }

    .orbit-2 {
        width: 285px;
        height: 285px;
    }

    .vision-point {
        width: 78px;
        min-height: 65px;
        font-size: 0.75rem;
    }

    .point-2 {
        right: 10px;
    }

    .point-4 {
        left: 10px;
    }

    .vm-roadmap {
        padding: 22px 14px;
    }

    .vm-roadmap-step {
        min-width: 100%;
    }

    .vm-network-layer {
        min-width: 90px;
        font-size: 0.8rem;
    }

    .layer-division,
    .layer-district {
        right: 15px;
    }

    .layer-taluka,
    .layer-local {
        left: 15px;
    }

    .vm-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   ACTIVITIES LISTING PAGE
   ========================================================= */


/* ---------------------------------------------------------
   FILTER AREA
--------------------------------------------------------- */

.activities-filter-section {
    position: relative;

    z-index: 3;

    margin-top: -1px;

    padding: 30px 0;

    background:
        linear-gradient(
            180deg,
            #fff9e6,
            #fffdf8
        );

    border-bottom:
        1px solid #eee1ce;
}


.activities-filter-card {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 12px 30px rgba(77, 17, 22, 0.07);
}


.activity-search-box {
    position: relative;
}


.activity-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #ad850b;

    z-index: 2;
}


.activity-search-box .form-control {
    padding-left: 42px;
}


/* ---------------------------------------------------------
   RESULT HEADER
--------------------------------------------------------- */

.activities-result-header {
    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 15px;

    margin-bottom: 30px;
}


.activities-result-header h2 {
    margin-bottom: 2px;

    font-size: 2rem;
}


.activities-result-header p {
    margin-bottom: 0;

    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   ACTIVITY CARD
--------------------------------------------------------- */

.activity-list-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.activity-list-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(201, 154, 46, 0.35);

    box-shadow:
        0 16px 38px rgba(77, 17, 22, 0.10);
}


.activity-list-image-wrap {
    position: relative;

    display: block;

    overflow: hidden;

    height: 245px;

    background: #f4efe8;
}


.activity-list-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.activity-list-card:hover
.activity-list-image {
    transform: scale(1.045);
}


/* Date badge */

.activity-date-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    min-width: 58px;

    overflow: hidden;

    text-align: center;

    border-radius: 12px;

    background:
        rgba(69, 18, 23, 0.96);

    border:
        2px solid var(--mja-yellow);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.17);
}


.activity-date-badge span {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.45rem;

    line-height: 1;

    padding-top: 8px;

    font-weight: 800;
}


.activity-date-badge small {
    display: block;

    color: #fff;

    padding:
        3px 6px 7px;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.5px;
}


/* Body */

.activity-list-body {
    padding: 22px;
}


.activity-location {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 10px;

    color: #a57b08;

    font-size: 0.88rem;

    font-weight: 700;
}


.activity-location i {
    color: var(--mja-yellow-deep);
}


.activity-list-body h3 {
    font-size: 1.35rem;

    line-height: 1.3;

    margin-bottom: 10px;
}


.activity-list-body h3 a {
    color: var(--mja-maroon-dark);
}


.activity-list-body h3 a:hover {
    color: var(--mja-primary-dark);
}


.activity-list-body p {
    color: var(--mja-gray);

    margin-bottom: 18px;
}


.activity-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
}


.activity-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}


.activity-read-more:hover {
    color: #a47800;

    gap: 10px;
}


.activity-video-indicator {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244, 196, 48, 0.12);

    color: var(--mja-maroon);

    border:
        1px solid rgba(201, 154, 46, 0.22);
}


/* ---------------------------------------------------------
   EMPTY STATE
--------------------------------------------------------- */

.activities-empty {
    max-width: 700px;

    margin: auto;

    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}


.activities-empty-icon {
    width: 85px;
    height: 85px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe577,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}


.activities-empty p {
    max-width: 570px;

    margin:
        0 auto 22px;

    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   PURPOSE CTA
--------------------------------------------------------- */

.activity-purpose-section {
    padding:
        30px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}


.activity-purpose-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}


.activity-purpose-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}


.activity-purpose-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}


.activity-purpose-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .activity-purpose-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .activities-filter-card {
        padding: 18px;
    }

    .activity-list-image-wrap {
        height: 230px;
    }

    .activity-purpose-card {
        padding: 30px 22px;
    }

    .activity-purpose-card h2 {
        font-size: 1.95rem;
    }

}


@media (max-width: 575.98px) {

    .activities-result-header h2 {
        font-size: 1.65rem;
    }

    .activity-list-image-wrap {
        height: 215px;
    }

}

/* =========================================================
   ACTIVITY DETAIL PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.activity-detail-header {
    position: relative;

    padding: 55px 0 80px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(244, 196, 48, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #431015,
            #731f25
        );

    color: #fff;
}

.activity-detail-header::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-yellow)
        );
}

.activity-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 18px;

    color: #d9c6bf;

    font-size: 0.9rem;
}

.activity-detail-breadcrumb a {
    color: #ffe48a;
}

.activity-detail-breadcrumb a:hover {
    color: #fff;
}

.activity-detail-label {
    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.12);

    border:
        1px solid rgba(244, 196, 48, 0.23);

    color: #ffe68c;

    font-weight: 800;
}

.activity-detail-header h1 {
    color: #fff;

    max-width: 950px;

    margin: 14px 0;

    font-size: 3rem;

    line-height: 1.15;
}

.activity-detail-intro {
    max-width: 850px;

    color: #eadad4;

    font-size: 1.13rem;
}

.activity-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 24px;

    margin-top: 22px;
}

.activity-detail-meta > div {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #f3e7e1;

    font-weight: 600;
}

.activity-detail-meta i {
    color: var(--mja-yellow);
}


/* ---------------------------------------------------------
   FEATURED IMAGE
--------------------------------------------------------- */

.activity-featured-section {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.activity-featured-wrap {
    overflow: hidden;

    border-radius: 26px;

    background: #fff;

    padding: 7px;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 48px rgba(77, 17, 22, 0.16);
}

.activity-featured-image {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 20px;
}


/* ---------------------------------------------------------
   ARTICLE
--------------------------------------------------------- */

.activity-detail-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.activity-article-card {
    padding: 34px;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 12px 32px rgba(77, 17, 22, 0.06);
}

.activity-rich-content {
    color: #4f4842;

    line-height: 1.8;

    font-size: 1.05rem;
}

.activity-rich-content h2,
.activity-rich-content h3,
.activity-rich-content h4 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.activity-rich-content img {
    max-width: 100%;

    border-radius: 16px;

    margin: 18px 0;
}

.activity-rich-content blockquote {
    padding: 18px 22px;

    margin: 22px 0;

    border-left:
        4px solid var(--mja-yellow);

    border-radius: 10px;

    background:
        #fff8df;

    color: #5a4c35;
}


/* ---------------------------------------------------------
   VIDEO BOX
--------------------------------------------------------- */

.activity-video-box {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 32px;

    padding: 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #fff5c5,
            #fffdf4
        );

    border:
        1px solid rgba(201, 154, 46, 0.27);
}

.activity-video-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-size: 1.6rem;
}

.activity-video-box strong {
    color: var(--mja-maroon-dark);
}

.activity-video-box p {
    margin: 2px 0 0;

    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   SHARE
--------------------------------------------------------- */

.activity-share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 32px;

    padding-top: 24px;

    border-top:
        1px solid #eadfce;
}

.activity-share-section > strong {
    color: var(--mja-maroon-dark);
}

.activity-share-buttons {
    display: flex;

    gap: 8px;
}

.activity-share-btn {
    width: 42px;
    height: 42px;

    border: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #fff8de;

    border:
        1px solid rgba(201, 154, 46, 0.25);

    color: var(--mja-maroon);

    font-size: 1.05rem;

    cursor: pointer;
}

.activity-share-btn:hover {
    background:
        linear-gradient(
            145deg,
            #ffe36d,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    transform: translateY(-2px);
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.activity-sidebar-card {
    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);

    margin-bottom: 22px;
}

.activity-sidebar-title {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.activity-sidebar-title i {
    color: var(--mja-yellow);
}

.activity-sidebar-title h4 {
    color: #fff;

    margin: 0;

    font-size: 1.1rem;
}

.activity-info-list {
    padding: 10px 20px;
}

.activity-info-row {
    display: flex;

    gap: 13px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee4d6;
}

.activity-info-row:last-child {
    border-bottom: 0;
}

.activity-info-row > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #fff6d6;

    color: #a47600;
}

.activity-info-row small {
    display: block;

    color: #8a8179;
}

.activity-info-row strong {
    display: block;

    color: var(--mja-maroon-dark);
}


/* Join Sidebar */

.activity-sidebar-join {
    padding: 25px;

    text-align: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 14px 34px rgba(77, 17, 22, 0.12);
}

.activity-sidebar-join-icon {
    width: 65px;
    height: 65px;

    margin:
        0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36e,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.activity-sidebar-join h4 {
    color: #fff;
}

.activity-sidebar-join p {
    color: #e8d5ce;
}


/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */

.activity-gallery-section {
    background:
        linear-gradient(
            180deg,
            #fff7dd,
            #fffdf8
        );
}

.activity-gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    height: 280px;

    background: #eee;

    box-shadow:
        0 8px 24px rgba(77, 17, 22, 0.07);
}

.activity-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.activity-gallery-item:hover img {
    transform: scale(1.05);
}

.activity-gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px 16px 14px;

    color: #fff;

    background:
        linear-gradient(
            transparent,
            rgba(69, 18, 23, 0.93)
        );

    font-weight: 600;
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.activity-detail-final-cta {
    padding:
        30px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.activity-detail-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.activity-detail-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.activity-detail-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.activity-detail-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .activity-featured-image {
        height: 430px;
    }

    .activity-detail-final-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .activity-detail-header {
        padding:
            45px 0 70px;
    }

    .activity-detail-header h1 {
        font-size: 2.3rem;
    }

    .activity-featured-image {
        height: 320px;
    }

    .activity-article-card {
        padding: 24px 20px;
    }

    .activity-video-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .activity-video-box .btn {
        width: 100%;
    }

    .activity-gallery-item {
        height: 250px;
    }

    .activity-detail-final-card {
        padding: 30px 22px;
    }

}


@media (max-width: 575.98px) {

    .activity-detail-header h1 {
        font-size: 2rem;
    }

    .activity-featured-image {
        height: 245px;
    }

    .activity-detail-meta {
        flex-direction: column;

        gap: 8px;
    }

    .activity-share-section {
        align-items: flex-start;

        flex-direction: column;
    }

    .activity-gallery-item {
        height: 220px;
    }

    .activity-detail-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   NEWS LISTING PAGE
   ========================================================= */


/* ---------------------------------------------------------
   FEATURED NEWS
--------------------------------------------------------- */

.news-featured-section {
    padding: 45px 0 25px;

    background:
        linear-gradient(
            180deg,
            #fff7da,
            #fffdf8
        );
}

.news-featured-card {
    overflow: hidden;

    border-radius: 26px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 18px 42px rgba(77, 17, 22, 0.10);
}

.news-featured-image-wrap {
    display: block;

    height: 100%;

    min-height: 390px;

    overflow: hidden;
}

.news-featured-image {
    width: 100%;
    height: 100%;

    min-height: 390px;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.news-featured-card:hover
.news-featured-image {
    transform: scale(1.035);
}

.news-featured-content {
    height: 100%;

    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-category {
    align-self: flex-start;

    padding: 6px 13px;

    border-radius: 30px;

    margin-bottom: 13px;

    background:
        linear-gradient(
            145deg,
            #ffe575,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-weight: 800;

    font-size: 0.85rem;
}

.news-featured-content h2 {
    font-size: 2.2rem;

    line-height: 1.2;
}

.news-featured-content h2 a {
    color: var(--mja-maroon-dark);
}

.news-featured-content h2 a:hover {
    color: #a27600;
}

.news-featured-content p {
    color: var(--mja-gray);

    font-size: 1.05rem;
}

.news-featured-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    color: #81766d;

    font-size: 0.9rem;
}

.news-featured-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.news-featured-meta i {
    color: #a47800;
}


/* ---------------------------------------------------------
   FILTER
--------------------------------------------------------- */

.news-filter-section {
    padding: 25px 0 5px;

    background: #fffdf8;
}

.news-filter-card {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.news-search-box {
    position: relative;
}

.news-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #a27700;

    z-index: 2;
}

.news-search-box .form-control {
    padding-left: 42px;
}


/* ---------------------------------------------------------
   LIST HEADING
--------------------------------------------------------- */

.news-list-heading {
    margin-bottom: 25px;
}

.news-list-heading h2 {
    margin-bottom: 2px;

    font-size: 2rem;
}

.news-list-heading p {
    color: var(--mja-gray);

    margin: 0;
}


/* ---------------------------------------------------------
   NEWS CARDS
--------------------------------------------------------- */

.news-list-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.news-list-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 38px rgba(77, 17, 22, 0.10);
}

.news-list-image-wrap {
    position: relative;

    display: block;

    height: 220px;

    overflow: hidden;

    background: #eee;
}

.news-list-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.news-list-card:hover
.news-list-image {
    transform: scale(1.045);
}

.news-card-category {
    position: absolute;

    left: 14px;
    bottom: 14px;

    padding: 5px 11px;

    border-radius: 30px;

    background:
        rgba(69, 18, 23, 0.95);

    border:
        1px solid rgba(244, 196, 48, 0.55);

    color: var(--mja-yellow);

    font-size: 0.78rem;

    font-weight: 800;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.16);
}

.news-list-body {
    padding: 20px;
}

.news-list-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 9px;

    color: #8a7f75;

    font-size: 0.85rem;
}

.news-list-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.news-list-meta i {
    color: #a77a00;
}

.news-list-body h3 {
    font-size: 1.3rem;

    line-height: 1.3;
}

.news-list-body h3 a {
    color: var(--mja-maroon-dark);
}

.news-list-body h3 a:hover {
    color: #a47800;
}

.news-list-body p {
    color: var(--mja-gray);
}

.news-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}

.news-read-more:hover {
    gap: 10px;

    color: #a47800;
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.news-sidebar-card {
    overflow: hidden;

    margin-bottom: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.news-sidebar-heading {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.news-sidebar-heading i {
    color: var(--mja-yellow);
}

.news-sidebar-heading h4 {
    margin: 0;

    color: #fff;

    font-size: 1.1rem;
}

.news-category-list {
    padding: 9px 14px 14px;
}

.news-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding: 11px 9px;

    border-bottom:
        1px solid #eee4d6;

    color: #554d46;
}

.news-category-list a:last-child {
    border-bottom: 0;
}

.news-category-list a:hover,
.news-category-list a.active {
    color: var(--mja-maroon);

    padding-left: 13px;
}

.news-category-list a.active {
    font-weight: 800;
}

.news-category-list strong {
    min-width: 30px;

    padding: 2px 7px;

    border-radius: 20px;

    text-align: center;

    background:
        #fff5c9;

    color: #9f7300;

    font-size: 0.78rem;
}


/* ---------------------------------------------------------
   UPDATES CTA
--------------------------------------------------------- */

.news-updates-card {
    margin-bottom: 22px;

    padding: 25px;

    text-align: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 14px 34px rgba(77, 17, 22, 0.12);
}

.news-updates-icon {
    width: 65px;
    height: 65px;

    margin:
        0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36f,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.news-updates-card h4 {
    color: #fff;
}

.news-updates-card p {
    color: #ead8d2;
}


/* ---------------------------------------------------------
   YOUTH SIDEBAR CTA
--------------------------------------------------------- */

.news-youth-card {
    padding: 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff1a8,
            #fff9dd
        );

    border:
        1px solid rgba(201, 154, 46, 0.30);
}

.news-youth-card span {
    color: #997000;

    font-size: 0.85rem;

    font-weight: 800;
}

.news-youth-card h4 {
    margin:
        6px 0 12px;

    font-size: 1.25rem;
}

.news-youth-card a {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}


/* ---------------------------------------------------------
   EMPTY
--------------------------------------------------------- */

.news-empty-state {
    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}

.news-empty-icon {
    width: 82px;
    height: 82px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe473,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}

.news-empty-state p {
    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.news-final-cta {
    padding:
        30px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.news-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.news-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.news-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.news-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .news-featured-image-wrap,
    .news-featured-image {
        min-height: 340px;
    }

    .news-final-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .news-featured-content {
        padding: 28px 22px;
    }

    .news-featured-content h2 {
        font-size: 1.8rem;
    }

    .news-list-image-wrap {
        height: 215px;
    }

    .news-final-card {
        padding: 30px 22px;
    }

}


@media (max-width: 575.98px) {

    .news-featured-image-wrap,
    .news-featured-image {
        min-height: 250px;
    }

    .news-featured-content h2 {
        font-size: 1.6rem;
    }

    .news-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   NEWS DETAIL PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.news-detail-header {
    position: relative;

    padding: 55px 0 82px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 86% 18%,
            rgba(244, 196, 48, 0.18),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #421015,
            #721f25
        );

    color: #fff;
}

.news-detail-header::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-yellow)
        );
}

.news-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 18px;

    color: #dac6bf;

    font-size: 0.9rem;
}

.news-detail-breadcrumb a {
    color: #ffe58a;
}

.news-detail-breadcrumb a:hover {
    color: #fff;
}

.news-detail-category {
    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.12);

    border:
        1px solid rgba(244, 196, 48, 0.23);

    color: #ffe68a;

    font-weight: 800;
}

.news-detail-header h1 {
    max-width: 950px;

    margin: 14px 0;

    color: #fff;

    font-size: 3.1rem;

    line-height: 1.14;
}

.news-detail-intro {
    max-width: 860px;

    color: #ead9d3;

    font-size: 1.14rem;
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 24px;

    margin-top: 20px;
}

.news-detail-meta > div {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #f3e7e2;
}

.news-detail-meta i {
    color: var(--mja-yellow);
}


/* ---------------------------------------------------------
   FEATURED IMAGE
--------------------------------------------------------- */

.news-detail-featured {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.news-detail-featured-wrap {
    overflow: hidden;

    padding: 7px;

    border-radius: 27px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 48px rgba(77, 17, 22, 0.16);
}

.news-detail-featured-image {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 20px;
}


/* ---------------------------------------------------------
   ARTICLE
--------------------------------------------------------- */

.news-detail-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.news-article-card {
    padding: 36px;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 12px 32px rgba(77, 17, 22, 0.06);
}

.news-rich-content {
    color: #4d4640;

    line-height: 1.82;

    font-size: 1.07rem;
}

.news-rich-content p {
    margin-bottom: 1.15rem;
}

.news-rich-content h2 {
    font-size: 1.9rem;

    margin-top: 30px;
    margin-bottom: 13px;
}

.news-rich-content h3 {
    font-size: 1.55rem;

    margin-top: 26px;
    margin-bottom: 11px;
}

.news-rich-content h4 {
    margin-top: 23px;
}

.news-rich-content ul,
.news-rich-content ol {
    padding-left: 22px;

    margin-bottom: 20px;
}

.news-rich-content img {
    max-width: 100%;

    height: auto;

    border-radius: 16px;

    margin: 18px 0;
}

.news-rich-content blockquote {
    margin: 25px 0;

    padding: 20px 23px;

    background:
        linear-gradient(
            145deg,
            #fff4bf,
            #fffaf0
        );

    border-left:
        5px solid var(--mja-yellow);

    border-radius: 12px;

    color: #5b4d38;

    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   SHARE
--------------------------------------------------------- */

.news-share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 34px;

    padding-top: 24px;

    border-top:
        1px solid #eadfce;
}

.news-share-section strong {
    display: block;

    color: var(--mja-maroon-dark);
}

.news-share-section small {
    display: block;

    color: #887e75;

    margin-top: 2px;
}

.news-share-buttons {
    display: flex;

    gap: 8px;
}

.news-share-btn {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(201, 154, 46, 0.26);

    background: #fff8dc;

    color: var(--mja-maroon);

    cursor: pointer;

    transition: all 0.2s ease;
}

.news-share-btn:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            145deg,
            #ffe46f,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   SIDEBAR
--------------------------------------------------------- */

.news-detail-sidebar-card {
    overflow: hidden;

    margin-bottom: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.news-detail-sidebar-heading {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.news-detail-sidebar-heading i {
    color: var(--mja-yellow);
}

.news-detail-sidebar-heading h4 {
    margin: 0;

    color: #fff;

    font-size: 1.1rem;
}

.news-detail-info-list {
    padding: 9px 20px;
}

.news-detail-info-row {
    display: flex;

    gap: 13px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee4d6;
}

.news-detail-info-row:last-child {
    border-bottom: 0;
}

.news-detail-info-row > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff6d5;

    color: #a37600;
}

.news-detail-info-row small {
    display: block;

    color: #887e75;
}

.news-detail-info-row strong {
    display: block;

    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   RECENT NEWS
--------------------------------------------------------- */

.recent-news-list {
    padding: 7px 16px 12px;
}

.recent-news-item {
    display: flex;

    gap: 12px;

    padding: 12px 0;

    border-bottom:
        1px solid #eee4d6;
}

.recent-news-item:last-child {
    border-bottom: 0;
}

.recent-news-item img {
    width: 82px;
    height: 68px;

    flex: 0 0 82px;

    object-fit: cover;

    border-radius: 10px;
}

.recent-news-item strong {
    display: block;

    color: var(--mja-maroon-dark);

    font-size: 0.94rem;

    line-height: 1.25;
}

.recent-news-item:hover strong {
    color: #9f7500;
}

.recent-news-item small {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    margin-top: 5px;

    color: #8a7e75;

    font-size: 0.8rem;
}

.recent-news-item small i {
    color: #a37600;
}


/* ---------------------------------------------------------
   JOIN CTA
--------------------------------------------------------- */

.news-detail-join-card {
    padding: 25px;

    text-align: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 14px 34px rgba(77, 17, 22, 0.12);
}

.news-detail-join-icon {
    width: 65px;
    height: 65px;

    margin:
        0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36f,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.news-detail-join-card h4 {
    color: #fff;
}

.news-detail-join-card p {
    color: #ead8d2;
}


/* ---------------------------------------------------------
   RELATED NEWS
--------------------------------------------------------- */

.news-related-section {
    background:
        linear-gradient(
            180deg,
            #fff7db,
            #fffdf8
        );
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.news-detail-final-cta {
    padding:
        30px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.news-detail-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.news-detail-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.news-detail-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.news-detail-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .news-detail-featured-image {
        height: 430px;
    }

    .news-detail-final-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .news-detail-header {
        padding:
            45px 0 70px;
    }

    .news-detail-header h1 {
        font-size: 2.35rem;
    }

    .news-detail-featured-image {
        height: 320px;
    }

    .news-article-card {
        padding: 25px 20px;
    }

    .news-detail-final-card {
        padding: 30px 22px;
    }

}


@media (max-width: 575.98px) {

    .news-detail-header h1 {
        font-size: 2rem;
    }

    .news-detail-featured-image {
        height: 245px;
    }

    .news-detail-meta {
        flex-direction: column;

        gap: 8px;
    }

    .news-share-section {
        flex-direction: column;

        align-items: flex-start;
    }

    .recent-news-item img {
        width: 72px;
        height: 62px;

        flex-basis: 72px;
    }

    .news-detail-final-card h2 {
        font-size: 1.9rem;
    }

}
/* =========================================================
   COMMUNITY STORIES PAGE
   ========================================================= */


/* ---------------------------------------------------------
   FEATURED STORY
--------------------------------------------------------- */

.story-featured-section {
    padding: 45px 0 30px;

    background:
        linear-gradient(
            180deg,
            #fff6d2,
            #fffdf8
        );
}

.story-featured-card {
    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 45px rgba(77, 17, 22, 0.10);
}

.story-featured-image-wrap {
    position: relative;

    display: block;

    height: 100%;

    min-height: 480px;

    overflow: hidden;

    background: #eee;
}

.story-featured-image {
    width: 100%;
    height: 100%;

    min-height: 480px;

    object-fit: cover;

    object-position: top center;

    transition:
        transform 0.45s ease;
}

.story-featured-card:hover
.story-featured-image {
    transform: scale(1.035);
}

.story-featured-yellow-bar {
    position: absolute;

    top: 0;
    bottom: 0;
    right: 0;

    width: 6px;

    background:
        linear-gradient(
            180deg,
            var(--mja-yellow),
            var(--mja-gold)
        );
}

.story-featured-content {
    height: 100%;

    padding: 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-featured-label {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    margin-bottom: 12px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #ffe577,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 0.84rem;

    font-weight: 800;
}

.story-featured-content h2 {
    font-size: 2.6rem;

    margin-bottom: 3px;
}

.story-featured-profession {
    color: #a27700;

    font-size: 1.12rem;

    font-weight: 800;
}

.story-featured-location {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 5px;

    color: #81756c;

    font-size: 0.9rem;
}

.story-featured-location i {
    color: #aa7c00;
}

.story-featured-content h3 {
    margin-top: 21px;

    font-size: 1.35rem;
}

.story-featured-content p {
    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   PEOPLE TYPES
--------------------------------------------------------- */

.story-types-section {
    padding: 15px 0 30px;

    background: #fffdf8;
}

.story-types-wrap {
    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    gap: 10px;
}

.story-type-item {
    min-height: 100px;

    padding: 14px 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e9
        );

    border:
        1px solid #eadfcd;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.story-type-item:hover {
    transform: translateY(-4px);

    border-color:
        rgba(201, 154, 46, 0.38);

    box-shadow:
        0 8px 20px rgba(77, 17, 22, 0.06);
}

.story-type-item i {
    color: var(--mja-maroon);

    font-size: 1.45rem;

    margin-bottom: 5px;
}

.story-type-item span {
    color: #61564e;

    font-size: 0.85rem;

    font-weight: 700;
}


/* ---------------------------------------------------------
   FILTER
--------------------------------------------------------- */

.story-filter-section {
    padding: 20px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff9e8
        );

    border-top:
        1px solid #eee2d1;
}

.story-filter-card {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.story-search-box {
    position: relative;
}

.story-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #a47800;

    z-index: 2;
}

.story-search-box .form-control {
    padding-left: 42px;
}


/* ---------------------------------------------------------
   RESULT HEADING
--------------------------------------------------------- */

.story-result-heading {
    margin-bottom: 30px;
}

.story-result-heading h2 {
    margin-bottom: 3px;

    font-size: 2rem;
}

.story-result-heading p {
    color: var(--mja-gray);

    margin: 0;
}


/* ---------------------------------------------------------
   STORY CARDS
--------------------------------------------------------- */

.community-story-card {
    height: 100%;

    overflow: hidden;

    border-radius: 21px;

    background: #fff;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.community-story-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 17px 39px rgba(77, 17, 22, 0.10);
}

.community-story-image-wrap {
    position: relative;

    display: block;

    height: 310px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #ffe67e,
            #fff8dc
        );
}

.community-story-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: top center;

    transition:
        transform 0.4s ease;
}

.community-story-card:hover
.community-story-image {
    transform: scale(1.04);
}

.community-story-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        38px 15px 13px;

    background:
        linear-gradient(
            transparent,
            rgba(68, 16, 21, 0.90)
        );
}

.community-story-overlay span {
    display: inline-block;

    padding: 4px 10px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.15);

    border:
        1px solid rgba(244, 196, 48, 0.35);

    color: #ffe688;

    font-size: 0.76rem;

    font-weight: 800;
}

.community-story-body {
    padding: 21px;
}

.community-story-body h3 {
    margin-bottom: 4px;

    font-size: 1.45rem;
}

.community-story-body h3 a {
    color: var(--mja-maroon-dark);
}

.community-story-body h3 a:hover {
    color: #a27600;
}

.community-story-profession,
.community-story-location {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #8d7f73;

    font-size: 0.88rem;
}

.community-story-profession {
    color: #9d7506;

    font-weight: 700;
}

.community-story-location {
    margin-top: 3px;
}

.community-story-body h4 {
    margin-top: 15px;
    margin-bottom: 8px;

    font-size: 1.12rem;
}

.community-story-body p {
    color: var(--mja-gray);
}

.community-story-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}

.community-story-read-more:hover {
    gap: 10px;

    color: #a47800;
}


/* ---------------------------------------------------------
   EMPTY STATE
--------------------------------------------------------- */

.story-empty-state {
    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}

.story-empty-icon {
    width: 82px;
    height: 82px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe474,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}

.story-empty-state p {
    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   COMMUNITY CTA
--------------------------------------------------------- */

.story-community-cta {
    padding:
        35px 0 45px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d7
        );
}

.story-community-card {
    padding: 36px;

    border-radius: 27px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.26);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.story-community-icon {
    width: 85px;
    height: 85px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe36f,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}

.story-community-card
.row
.col-lg-7
> span {
    color: #ffe687;

    font-weight: 800;
}

.story-community-card h2 {
    color: #fff;

    margin-top: 6px;

    font-size: 2rem;
}

.story-community-card p {
    color: #ead8d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   CONSENT NOTE
--------------------------------------------------------- */

.story-consent-section {
    padding:
        0 0 75px;

    background:
        #fff6d7;
}

.story-consent-note {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 20px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.70);

    border:
        1px solid rgba(201, 154, 46, 0.25);
}

.story-consent-note > i {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #fff2b9;

    color: #9e7200;

    font-size: 1.2rem;
}

.story-consent-note strong {
    display: block;

    color: var(--mja-maroon-dark);
}

.story-consent-note p {
    margin: 3px 0 0;

    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1199.98px) {

    .story-types-wrap {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


@media (max-width: 991.98px) {

    .story-featured-image-wrap,
    .story-featured-image {
        min-height: 420px;
    }

    .story-community-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .story-featured-image-wrap,
    .story-featured-image {
        min-height: 340px;
    }

    .story-featured-content {
        padding: 28px 22px;
    }

    .story-featured-content h2 {
        font-size: 2rem;
    }

    .story-types-wrap {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .story-community-card {
        padding: 28px 21px;
    }

}


@media (max-width: 575.98px) {

    .story-featured-image-wrap,
    .story-featured-image {
        min-height: 290px;
    }

    .community-story-image-wrap {
        height: 280px;
    }

    .story-community-card h2 {
        font-size: 1.8rem;
    }

    .story-consent-note {
        flex-direction: column;
    }

}

/* =========================================================
   COMMUNITY STORY DETAIL PAGE
   ========================================================= */

.story-detail-hero {
    padding: 65px 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(244, 196, 48, 0.25),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            #fffaf0,
            #fffdf8,
            #fff3c8
        );
}

.story-detail-photo-card {
    position: relative;

    min-height: 520px;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            #ffe676,
            #fff8dc
        );

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 45px rgba(77, 17, 22, 0.12);
}

.story-detail-photo-bg {
    position: absolute;

    width: 330px;
    height: 330px;

    top: 70px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.45);

    border:
        1px solid rgba(117, 31, 36, 0.10);
}

.story-detail-photo {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 510px;

    object-fit: cover;

    object-position: top center;
}

.story-detail-photo-caption {
    position: absolute;

    z-index: 3;

    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 14px 17px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(69, 18, 23, 0.97),
            rgba(117, 31, 36, 0.95)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.story-detail-photo-caption strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.2rem;
}

.story-detail-photo-caption span {
    color: #f2ddd6;
}

.story-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 17px;

    color: #83786f;

    font-size: 0.9rem;
}

.story-detail-breadcrumb a {
    color: #9e7300;

    font-weight: 700;
}

.story-detail-label {
    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.17);

    border:
        1px solid rgba(201, 154, 46, 0.23);

    color: #987000;

    font-weight: 800;
}

.story-detail-hero-content h1 {
    font-size: 3.6rem;

    margin:
        13px 0 5px;

    color: var(--mja-maroon-dark);
}

.story-detail-profession,
.story-detail-location {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #8f6a00;

    font-weight: 700;

    margin-top: 5px;
}

.story-detail-location {
    color: #81766e;
}

.story-detail-hero-content h2 {
    margin-top: 22px;

    font-size: 1.7rem;
}

.story-detail-intro {
    color: var(--mja-gray);

    font-size: 1.08rem;
}


/* Article */

.story-detail-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.story-detail-article {
    padding: 35px;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 12px 32px rgba(77, 17, 22, 0.06);
}

.story-detail-article-heading {
    margin-bottom: 22px;
}

.story-detail-article-heading h2 {
    font-size: 2rem;
}

.story-rich-content,
.story-achievements-content {
    color: #4d4640;

    line-height: 1.82;

    font-size: 1.06rem;
}

.story-rich-content img,
.story-achievements-content img {
    max-width: 100%;

    border-radius: 15px;

    margin: 18px 0;
}

.story-rich-content blockquote {
    padding: 19px 22px;

    margin: 22px 0;

    border-left:
        5px solid var(--mja-yellow);

    border-radius: 11px;

    background:
        #fff7d5;
}


/* Achievements */

.story-achievements {
    margin-top: 32px;

    padding: 25px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff4bf,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.28);
}

.story-achievements-heading {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 16px;
}

.story-achievements-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-size: 1.4rem;
}

.story-achievements-heading span {
    color: #9c7200;

    font-weight: 800;

    font-size: 0.85rem;
}

.story-achievements-heading h3 {
    margin: 2px 0 0;
}


/* Video */

.story-video-card {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding: 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #fff5c7,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.27);
}

.story-video-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-maroon);

    color: var(--mja-yellow);

    font-size: 1.5rem;
}

.story-video-card p {
    color: var(--mja-gray);

    margin: 2px 0 0;
}


/* Share */

.story-share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 32px;

    padding-top: 24px;

    border-top:
        1px solid #eadfce;
}

.story-share-section strong {
    display: block;

    color: var(--mja-maroon-dark);
}

.story-share-section small {
    color: #81786f;
}

.story-share-buttons {
    display: flex;

    gap: 8px;
}

.story-share-btn {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    border:
        1px solid rgba(201, 154, 46, 0.26);

    background:
        #fff8dc;

    color: var(--mja-maroon);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.story-share-btn:hover {
    background:
        linear-gradient(
            145deg,
            #ffe370,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    transform: translateY(-2px);
}


/* Sidebar Profile */

.story-profile-sidebar {
    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);

    margin-bottom: 22px;
}

.story-profile-sidebar-head {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.story-profile-sidebar-head i {
    color: var(--mja-yellow);
}

.story-profile-sidebar-head h4 {
    color: #fff;

    margin: 0;
}

.story-profile-sidebar-body {
    padding: 10px 20px;
}

.story-profile-row {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee4d6;
}

.story-profile-row:last-child {
    border-bottom: 0;
}

.story-profile-row span {
    color: #81786f;
}

.story-profile-row strong {
    text-align: right;

    color: var(--mja-maroon-dark);
}


/* Sidebar Inspiration */

.story-sidebar-inspire {
    padding: 25px;

    text-align: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    margin-bottom: 22px;
}

.story-sidebar-inspire-icon {
    width: 65px;
    height: 65px;

    margin:
        0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-yellow);

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.story-sidebar-inspire h4 {
    color: #fff;
}

.story-sidebar-inspire p {
    color: #ead8d2;
}


/* Consent */

.story-sidebar-consent {
    display: flex;

    gap: 12px;

    padding: 18px;

    border-radius: 17px;

    background:
        #fff7d6;

    border:
        1px solid rgba(201, 154, 46, 0.26);
}

.story-sidebar-consent > i {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--mja-yellow);

    color: var(--mja-maroon-dark);
}

.story-sidebar-consent strong {
    display: block;

    color: var(--mja-maroon-dark);
}

.story-sidebar-consent p {
    margin: 3px 0 0;

    color: var(--mja-gray);

    font-size: 0.9rem;
}


/* Related */

.story-related-section {
    background:
        linear-gradient(
            180deg,
            #fff7da,
            #fffdf8
        );
}


/* Responsive */

@media (max-width: 991.98px) {

    .story-detail-photo-card {
        min-height: 460px;
    }

    .story-detail-photo {
        height: 450px;
    }

}


@media (max-width: 767.98px) {

    .story-detail-hero {
        padding: 45px 0;
    }

    .story-detail-hero-content h1 {
        font-size: 2.7rem;
    }

    .story-detail-photo-card {
        min-height: 400px;
    }

    .story-detail-photo {
        height: 390px;
    }

    .story-detail-article {
        padding: 25px 20px;
    }

    .story-video-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .story-video-card .btn {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .story-detail-hero-content h1 {
        font-size: 2.3rem;
    }

    .story-detail-photo-card {
        min-height: 360px;
    }

    .story-detail-photo {
        height: 350px;
    }

    .story-share-section {
        align-items: flex-start;

        flex-direction: column;
    }

    .story-achievements {
        padding: 20px 16px;
    }

}

/* =========================================================
   YOUTH CONNECT PAGE
   ========================================================= */

.youth-hero {
    position: relative;
    overflow: hidden;

    padding: 70px 0;

    background:
        radial-gradient(
            circle at 84% 18%,
            rgba(244, 196, 48, 0.30),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #fffaf0,
            #fffef8 50%,
            #fff3c4
        );
}

.youth-hero::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-maroon),
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-maroon)
        );
}

.youth-hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 7px 14px;

    border-radius: 30px;

    background:
        rgba(244, 196, 48, 0.18);

    border:
        1px solid rgba(201, 154, 46, 0.23);

    color: #977000;

    font-weight: 800;
}

.youth-hero h1 {
    margin: 14px 0;

    font-size: 3.8rem;

    font-weight: 800;

    color: var(--mja-maroon-dark);
}

.youth-hero-lead {
    max-width: 720px;

    color: #554d46;

    font-size: 1.18rem;
}


/* Hero Visual */

.youth-hero-visual {
    position: relative;

    min-height: 430px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            #fff0a3,
            #fffdf6 66%
        );

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 18px 42px rgba(77, 17, 22, 0.09);
}

.youth-hero-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 130px;
    height: 130px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border:
        5px solid var(--mja-yellow);

    color: var(--mja-yellow);

    font-size: 2.5rem;

    box-shadow:
        0 15px 35px rgba(77, 17, 22, 0.17);
}

.youth-float-card {
    position: absolute;

    min-width: 125px;

    padding: 12px 15px;

    display: flex;
    align-items: center;

    gap: 8px;

    border-radius: 16px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 10px 24px rgba(77, 17, 22, 0.09);

    color: var(--mja-maroon-dark);

    font-weight: 700;
}

.youth-float-card i {
    color: #a47800;
}

.youth-float-one {
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
}

.youth-float-two {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.youth-float-three {
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
}

.youth-float-four {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}


/* Categories */

.youth-category-card {
    display: block;

    height: 100%;

    padding: 24px;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fffaf0
        );

    border:
        1px solid #eadfcd;

    box-shadow:
        0 8px 24px rgba(77, 17, 22, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.youth-category-card:hover,
.youth-category-card.active {
    transform: translateY(-5px);

    border-color:
        rgba(201, 154, 46, 0.42);

    box-shadow:
        0 15px 35px rgba(77, 17, 22, 0.09);
}

.youth-category-card.active {
    background:
        linear-gradient(
            145deg,
            #fff3b7,
            #fffdf5
        );
}

.youth-category-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #ffe36d,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.45rem;
}

.youth-category-card h4 {
    font-size: 1.16rem;
}

.youth-category-card > span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #997000;

    font-weight: 800;
}


/* Filter */

.youth-filter-section {
    padding: 25px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff8df
        );
}

.youth-filter-card {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.youth-search-box {
    position: relative;
}

.youth-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #a47800;

    z-index: 2;
}

.youth-search-box .form-control {
    padding-left: 42px;
}


/* Resources */

.youth-resource-heading {
    margin-bottom: 30px;
}

.youth-resource-heading h2 {
    margin-bottom: 3px;

    font-size: 2rem;
}

.youth-resource-heading p {
    color: var(--mja-gray);

    margin: 0;
}

.youth-resource-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.youth-resource-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 38px rgba(77, 17, 22, 0.10);
}

.youth-resource-image-wrap {
    position: relative;

    display: block;

    height: 220px;

    overflow: hidden;

    background: #eee;
}

.youth-resource-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.youth-resource-card:hover
.youth-resource-image {
    transform: scale(1.045);
}

.youth-resource-category {
    position: absolute;

    left: 14px;
    bottom: 14px;

    padding: 5px 11px;

    border-radius: 30px;

    background:
        rgba(69, 18, 23, 0.95);

    border:
        1px solid rgba(244, 196, 48, 0.50);

    color: var(--mja-yellow);

    font-size: 0.78rem;

    font-weight: 800;
}

.youth-resource-body {
    padding: 21px;
}

.youth-resource-body h3 {
    font-size: 1.3rem;
}

.youth-resource-body h3 a {
    color: var(--mja-maroon-dark);
}

.youth-resource-body h3 a:hover {
    color: #a47800;
}

.youth-resource-body p {
    color: var(--mja-gray);
}

.youth-resource-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.youth-resource-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}

.youth-resource-read-more:hover {
    gap: 10px;

    color: #a47800;
}

.youth-resource-external {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff6d4;

    color: #9c7200;
}


/* Empty */

.youth-empty-state {
    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}

.youth-empty-icon {
    width: 82px;
    height: 82px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe473,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}


/* Principles */

.youth-principles-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(244, 196, 48, 0.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #421015,
            #701e24
        );
}

.youth-principles-section .section-title {
    color: #fff;
}

.youth-principles-section .section-eyebrow {
    color: #ffe68a;

    background:
        rgba(244, 196, 48, 0.10);

    border-color:
        rgba(244, 196, 48, 0.20);
}

.youth-principle-card {
    min-height: 145px;

    padding: 20px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid rgba(244, 196, 48, 0.16);
}

.youth-principle-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-yellow);

    color: var(--mja-maroon-dark);

    font-size: 1.3rem;
}

.youth-principle-card strong {
    color: #fff;
}


/* Final CTA */

.youth-final-cta {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.youth-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.youth-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.youth-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.youth-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 991.98px) {

    .youth-hero h1 {
        font-size: 3rem;
    }

    .youth-final-card {
        text-align: center;
    }

}


@media (max-width: 767.98px) {

    .youth-hero {
        padding: 50px 0;
    }

    .youth-hero h1 {
        font-size: 2.5rem;
    }

    .youth-hero-visual {
        min-height: 370px;
    }

    .youth-resource-image-wrap {
        height: 210px;
    }

    .youth-final-card {
        padding: 30px 22px;
    }

}


@media (max-width: 575.98px) {

    .youth-hero h1 {
        font-size: 2.2rem;
    }

    .youth-hero-visual {
        min-height: 330px;
    }

    .youth-hero-center {
        width: 100px;
        height: 100px;

        font-size: 2rem;
    }

    .youth-float-card {
        min-width: 95px;

        padding: 9px 10px;

        font-size: 0.76rem;
    }

    .youth-float-two {
        right: 10px;
    }

    .youth-float-four {
        left: 10px;
    }

    .youth-final-card h2 {
        font-size: 1.9rem;
    }

}
/* =========================================================
   YOUTH RESOURCE DETAIL PAGE
   ========================================================= */

.yr-detail-header {
    position: relative;
    padding: 55px 0 82px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 86% 16%,
            rgba(244, 196, 48, 0.19),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #421015,
            #721f25
        );
    color: #fff;
}

.yr-detail-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5px;
    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-yellow)
        );
}

.yr-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    color: #d8c5be;
    font-size: 0.9rem;
}

.yr-detail-breadcrumb a {
    color: #ffe58b;
    font-weight: 700;
}

.yr-detail-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    border-radius: 30px;
    background: rgba(244, 196, 48, 0.12);
    border: 1px solid rgba(244, 196, 48, 0.24);
    color: #ffe68b;
    font-weight: 800;
}

.yr-detail-category:hover {
    color: #fff;
}

.yr-detail-header h1 {
    max-width: 950px;
    margin: 14px 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1.15;
}

.yr-detail-intro {
    max-width: 860px;
    color: #ead9d3;
    font-size: 1.14rem;
}

.yr-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 20px;
}

.yr-detail-meta > div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #f2e5df;
}

.yr-detail-meta i {
    color: var(--mja-yellow);
}


/* Featured */

.yr-featured-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}

.yr-featured-wrap {
    padding: 7px;
    overflow: hidden;
    border-radius: 27px;
    background: #fff;
    border: 1px solid rgba(201, 154, 46, 0.28);
    box-shadow: 0 20px 48px rgba(77, 17, 22, 0.16);
}

.yr-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}


/* Article */

.yr-detail-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.yr-article-card {
    padding: 36px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #eadfce;
    box-shadow: 0 12px 32px rgba(77, 17, 22, 0.06);
}

.yr-rich-content {
    color: #4d4640;
    line-height: 1.82;
    font-size: 1.06rem;
}

.yr-rich-content h2 {
    margin-top: 30px;
    margin-bottom: 13px;
    font-size: 1.9rem;
}

.yr-rich-content h3 {
    margin-top: 26px;
    font-size: 1.5rem;
}

.yr-rich-content ul,
.yr-rich-content ol {
    padding-left: 22px;
}

.yr-rich-content img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 16px;
}

.yr-rich-content blockquote {
    margin: 24px 0;
    padding: 20px 23px;
    border-left: 5px solid var(--mja-yellow);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            #fff3bb,
            #fffaf0
        );
}


/* Official link */

.yr-official-link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 22px;
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            #fff3b8,
            #fffdf5
        );
    border: 1px solid rgba(201, 154, 46, 0.30);
}

.yr-official-link-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    color: var(--mja-yellow);
    font-size: 1.4rem;
}

.yr-official-link-card span {
    color: #9b7200;
    font-size: 0.82rem;
    font-weight: 800;
}

.yr-official-link-card h3 {
    margin: 2px 0 3px;
    font-size: 1.2rem;
}

.yr-official-link-card p {
    margin: 0;
    color: var(--mja-gray);
}


/* Verification */

.yr-verification-notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
    background: #fff9e5;
    border: 1px solid rgba(201, 154, 46, 0.24);
}

.yr-verification-notice > i {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mja-yellow);
    color: var(--mja-maroon-dark);
    font-size: 1.2rem;
}

.yr-verification-notice strong {
    display: block;
    color: var(--mja-maroon-dark);
}

.yr-verification-notice p {
    margin: 3px 0 0;
    color: var(--mja-gray);
}


/* Share */

.yr-share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eadfce;
}

.yr-share-section strong {
    display: block;
    color: var(--mja-maroon-dark);
}

.yr-share-section small {
    color: #81786f;
}

.yr-share-buttons {
    display: flex;
    gap: 8px;
}

.yr-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 154, 46, 0.26);
    background: #fff8dc;
    color: var(--mja-maroon);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.yr-share-btn:hover {
    background:
        linear-gradient(
            145deg,
            #ffe370,
            var(--mja-yellow)
        );
    color: var(--mja-maroon-dark);
    transform: translateY(-2px);
}


/* Sidebar */

.yr-sidebar-card {
    overflow: hidden;
    margin-bottom: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #eadfce;
    box-shadow: 0 10px 28px rgba(77, 17, 22, 0.06);
}

.yr-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 20px;
    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );
    border-bottom: 3px solid var(--mja-yellow);
}

.yr-sidebar-heading i {
    color: var(--mja-yellow);
}

.yr-sidebar-heading h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.yr-info-list {
    padding: 9px 20px;
}

.yr-info-row {
    display: flex;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid #eee4d6;
}

.yr-info-row:last-child {
    border-bottom: 0;
}

.yr-info-row > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff6d5;
    color: #a37600;
}

.yr-info-row small {
    display: block;
    color: #887e75;
}

.yr-info-row strong {
    display: block;
    color: var(--mja-maroon-dark);
}


/* Sidebar CTA */

.yr-sidebar-youth {
    padding: 25px;
    text-align: center;
    margin-bottom: 22px;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );
    border: 1px solid rgba(201, 154, 46, 0.25);
}

.yr-sidebar-youth-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mja-yellow);
    color: var(--mja-maroon-dark);
    font-size: 1.5rem;
}

.yr-sidebar-youth h4 {
    color: #fff;
}

.yr-sidebar-youth p {
    color: #ead8d2;
}

.yr-sidebar-join {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 18px;
    border-radius: 17px;
    background: #fff5c9;
    border: 1px solid rgba(201, 154, 46, 0.27);
}

.yr-sidebar-join > i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mja-maroon);
    color: var(--mja-yellow);
}

.yr-sidebar-join strong {
    display: block;
    color: var(--mja-maroon-dark);
}

.yr-sidebar-join p {
    margin: 3px 0;
    color: var(--mja-gray);
    font-size: 0.9rem;
}

.yr-sidebar-join a {
    color: var(--mja-maroon);
    font-weight: 800;
}


/* Related */

.yr-related-section {
    background:
        linear-gradient(
            180deg,
            #fff6d8,
            #fffdf8
        );
}


/* Final CTA */

.yr-final-cta {
    padding: 35px 0 75px;
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.yr-final-card {
    padding: 40px;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );
    border: 1px solid rgba(201, 154, 46, 0.25);
    box-shadow: 0 20px 46px rgba(77, 17, 22, 0.13);
}

.yr-final-card
> .row
> div:first-child
> span {
    color: #ffe687;
    font-weight: 800;
}

.yr-final-card h2 {
    color: #fff;
    margin-top: 7px;
    font-size: 2.3rem;
}

.yr-final-card p {
    color: #ead9d2;
    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 991.98px) {

    .yr-featured-image {
        height: 410px;
    }

    .yr-official-link-card {
        flex-wrap: wrap;
    }

    .yr-official-link-card .btn {
        width: 100%;
    }

    .yr-final-card {
        text-align: center;
    }

}

@media (max-width: 767.98px) {

    .yr-detail-header {
        padding: 45px 0 70px;
    }

    .yr-detail-header h1 {
        font-size: 2.35rem;
    }

    .yr-featured-image {
        height: 310px;
    }

    .yr-article-card {
        padding: 25px 20px;
    }

    .yr-final-card {
        padding: 30px 22px;
    }

}

@media (max-width: 575.98px) {

    .yr-detail-header h1 {
        font-size: 2rem;
    }

    .yr-featured-image {
        height: 240px;
    }

    .yr-detail-meta {
        flex-direction: column;
        gap: 8px;
    }

    .yr-share-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .yr-verification-notice {
        flex-direction: column;
    }

    .yr-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   EVENTS PAGE
   ========================================================= */


/* ---------------------------------------------------------
   FEATURED EVENT
--------------------------------------------------------- */

.event-featured-section {
    padding: 45px 0 25px;

    background:
        linear-gradient(
            180deg,
            #fff6d3,
            #fffdf8
        );
}

.event-featured-card {
    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 45px rgba(77, 17, 22, 0.10);
}

.event-featured-image-wrap {
    position: relative;

    display: block;

    height: 100%;

    min-height: 430px;

    overflow: hidden;

    background: #eee;
}

.event-featured-image {
    width: 100%;
    height: 100%;

    min-height: 430px;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.event-featured-card:hover
.event-featured-image {
    transform: scale(1.035);
}

.event-featured-badge {
    position: absolute;

    top: 16px;
    left: 16px;

    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    border-radius: 30px;

    background:
        rgba(69, 18, 23, 0.95);

    border:
        1px solid rgba(244, 196, 48, 0.55);

    color: var(--mja-yellow);

    font-weight: 800;

    font-size: 0.85rem;
}

.event-featured-content {
    height: 100%;

    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-featured-date {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 15px;
}

.event-featured-date > div {
    width: 70px;

    text-align: center;

    overflow: hidden;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border:
        2px solid var(--mja-yellow);
}

.event-featured-date strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.8rem;

    line-height: 1.1;

    padding-top: 7px;
}

.event-featured-date span {
    display: block;

    color: #fff;

    font-size: 0.78rem;

    font-weight: 800;

    padding-bottom: 7px;
}

.event-featured-date small {
    color: #9d7500;

    font-weight: 800;
}

.event-featured-content h2 {
    font-size: 2.15rem;

    line-height: 1.2;
}

.event-featured-content h2 a {
    color: var(--mja-maroon-dark);
}

.event-featured-content p {
    color: var(--mja-gray);
}

.event-featured-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 18px;

    color: #7f746a;

    font-size: 0.9rem;
}

.event-featured-meta span {
    display: inline-flex;
    align-items: center;

    gap: 6px;
}

.event-featured-meta i {
    color: #a57900;
}


/* ---------------------------------------------------------
   EVENT TABS
--------------------------------------------------------- */

.event-tabs-section {
    padding: 20px 0 0;

    background: #fffdf8;
}

.event-tabs {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.event-tabs a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 17px;

    border-radius: 30px;

    background: #fff;

    border:
        1px solid #eadfce;

    color: #655a51;

    font-weight: 700;
}

.event-tabs a:hover,
.event-tabs a.active {
    background:
        linear-gradient(
            145deg,
            #ffe470,
            var(--mja-yellow)
        );

    border-color:
        rgba(201, 154, 46, 0.40);

    color: var(--mja-maroon-dark);
}


/* ---------------------------------------------------------
   FILTER
--------------------------------------------------------- */

.event-filter-section {
    padding: 20px 0 25px;

    background: #fffdf8;
}

.event-filter-card {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.24);

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.event-search-box {
    position: relative;
}

.event-search-box > i {
    position: absolute;

    left: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: #a47800;

    z-index: 2;
}

.event-search-box .form-control {
    padding-left: 42px;
}


/* ---------------------------------------------------------
   RESULT HEADING
--------------------------------------------------------- */

.events-result-heading {
    margin-bottom: 30px;
}

.events-result-heading h2 {
    margin-bottom: 3px;

    font-size: 2rem;
}

.events-result-heading p {
    color: var(--mja-gray);

    margin: 0;
}


/* ---------------------------------------------------------
   EVENT LIST CARD
--------------------------------------------------------- */

.event-list-card {
    height: 100%;

    overflow: hidden;

    border-radius: 21px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.event-list-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 36px rgba(77, 17, 22, 0.10);
}

.event-list-image-wrap {
    position: relative;

    display: block;

    height: 100%;

    min-height: 270px;

    overflow: hidden;

    background: #eee;
}

.event-list-image {
    width: 100%;
    height: 100%;

    min-height: 270px;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.event-list-card:hover
.event-list-image {
    transform: scale(1.045);
}

.event-list-date {
    position: absolute;

    top: 15px;
    left: 15px;

    min-width: 58px;

    text-align: center;

    overflow: hidden;

    border-radius: 12px;

    background:
        rgba(69, 18, 23, 0.96);

    border:
        2px solid var(--mja-yellow);

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.16);
}

.event-list-date strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.45rem;

    line-height: 1;

    padding-top: 8px;
}

.event-list-date span {
    display: block;

    color: #fff;

    padding:
        3px 6px 7px;

    font-size: 0.72rem;

    font-weight: 800;
}

.event-list-body {
    height: 100%;

    padding: 22px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-list-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 8px;

    color: #887c73;

    font-size: 0.85rem;
}

.event-list-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.event-list-meta i {
    color: #a47800;
}

.event-list-body h3 {
    font-size: 1.3rem;

    line-height: 1.3;
}

.event-list-body h3 a {
    color: var(--mja-maroon-dark);
}

.event-list-body h3 a:hover {
    color: #9f7500;
}

.event-list-location {
    display: flex;
    align-items: flex-start;

    gap: 6px;

    margin-bottom: 8px;

    color: #9a7205;

    font-size: 0.86rem;

    font-weight: 700;
}

.event-list-body p {
    color: var(--mja-gray);
}

.event-list-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}

.event-list-read-more:hover {
    gap: 10px;

    color: #a47800;
}


/* ---------------------------------------------------------
   EMPTY
--------------------------------------------------------- */

.event-empty-state {
    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}

.event-empty-icon {
    width: 82px;
    height: 82px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe474,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}

.event-empty-state p {
    color: var(--mja-gray);
}


/* ---------------------------------------------------------
   FINAL CTA
--------------------------------------------------------- */

.events-final-cta {
    padding:
        35px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.events-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.events-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.events-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.events-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .event-featured-image-wrap,
    .event-featured-image {
        min-height: 350px;
    }

    .events-final-card {
        text-align: center;
    }

}

@media (max-width: 767.98px) {

    .event-featured-content {
        padding: 28px 22px;
    }

    .event-featured-content h2 {
        font-size: 1.8rem;
    }

    .event-list-image-wrap,
    .event-list-image {
        min-height: 230px;
    }

    .events-final-card {
        padding: 30px 22px;
    }

}

@media (max-width: 575.98px) {

    .event-featured-image-wrap,
    .event-featured-image {
        min-height: 260px;
    }

    .event-list-image-wrap,
    .event-list-image {
        min-height: 220px;
    }

    .events-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   EVENT DETAIL PAGE
   ========================================================= */

.event-detail-header {
    position: relative;
    overflow: hidden;

    padding: 55px 0 82px;

    background:
        radial-gradient(
            circle at 86% 17%,
            rgba(244, 196, 48, 0.19),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #421015,
            #721f25
        );

    color: #fff;
}

.event-detail-header::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            var(--mja-yellow),
            var(--mja-gold),
            var(--mja-yellow)
        );
}

.event-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 18px;

    color: #d9c6bf;

    font-size: 0.9rem;
}

.event-detail-breadcrumb a {
    color: #ffe68b;
    font-weight: 700;
}

.event-detail-label,
.event-status-badge {
    display: inline-flex;
    align-items: center;

    padding: 6px 13px;

    border-radius: 30px;

    font-weight: 800;
}

.event-detail-label {
    background:
        rgba(244, 196, 48, 0.12);

    border:
        1px solid rgba(244, 196, 48, 0.23);

    color: #ffe68b;
}

.event-status-badge.upcoming {
    background:
        rgba(244, 196, 48, 0.18);

    color: #ffe88f;

    border:
        1px solid rgba(244, 196, 48, 0.25);
}

.event-status-badge.past {
    background:
        rgba(255, 255, 255, 0.08);

    color: #e6d5cf;

    border:
        1px solid rgba(255, 255, 255, 0.15);
}

.event-detail-header h1 {
    max-width: 950px;

    margin: 14px 0;

    color: #fff;

    font-size: 3rem;

    line-height: 1.15;
}

.event-detail-intro {
    max-width: 860px;

    color: #ead9d3;

    font-size: 1.14rem;
}

.event-detail-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 24px;

    margin-top: 20px;
}

.event-detail-meta > div {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #f2e6e1;
}

.event-detail-meta i {
    color: var(--mja-yellow);
}


/* Featured */

.event-detail-featured {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.event-detail-featured-wrap {
    position: relative;

    overflow: hidden;

    padding: 7px;

    border-radius: 27px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.28);

    box-shadow:
        0 20px 48px rgba(77, 17, 22, 0.16);
}

.event-detail-featured-image {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 20px;
}

.event-detail-date-overlay {
    position: absolute;

    left: 25px;
    top: 25px;

    min-width: 76px;

    overflow: hidden;

    text-align: center;

    border-radius: 14px;

    background:
        rgba(69, 18, 23, 0.96);

    border:
        2px solid var(--mja-yellow);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.18);
}

.event-detail-date-overlay strong {
    display: block;

    color: var(--mja-yellow);

    font-size: 1.8rem;

    line-height: 1;

    padding-top: 9px;
}

.event-detail-date-overlay span {
    display: block;

    color: #fff;

    font-weight: 800;

    font-size: 0.8rem;
}

.event-detail-date-overlay small {
    display: block;

    padding:
        2px 5px 8px;

    color: #e9d7d0;
}


/* Article */

.event-detail-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.event-detail-article {
    padding: 36px;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 12px 32px rgba(77, 17, 22, 0.06);
}

.event-rich-content {
    color: #4d4640;

    line-height: 1.82;

    font-size: 1.06rem;
}

.event-rich-content h2 {
    margin-top: 30px;
    margin-bottom: 13px;

    font-size: 1.9rem;
}

.event-rich-content h3 {
    margin-top: 26px;

    font-size: 1.5rem;
}

.event-rich-content img {
    max-width: 100%;
    height: auto;

    margin: 18px 0;

    border-radius: 16px;
}

.event-rich-content blockquote {
    margin: 24px 0;

    padding: 20px 23px;

    border-left:
        5px solid var(--mja-yellow);

    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            #fff3bb,
            #fffaf0
        );
}


/* Location */

.event-location-card {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 32px;

    padding: 22px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #fff3b8,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.30);
}

.event-location-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-size: 1.4rem;
}

.event-location-card span {
    color: #9b7200;

    font-size: 0.82rem;

    font-weight: 800;
}

.event-location-card h3 {
    margin: 2px 0;

    font-size: 1.2rem;
}

.event-location-card p {
    margin: 0;

    color: var(--mja-gray);
}


/* Video */

.event-video-card {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 24px;

    padding: 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #fff5c7,
            #fffdf5
        );

    border:
        1px solid rgba(201, 154, 46, 0.27);
}

.event-video-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-maroon);

    color: var(--mja-yellow);

    font-size: 1.5rem;
}

.event-video-card p {
    color: var(--mja-gray);

    margin: 2px 0 0;
}


/* Share */

.event-share-section {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 32px;

    padding-top: 24px;

    border-top:
        1px solid #eadfce;
}

.event-share-section strong {
    display: block;

    color: var(--mja-maroon-dark);
}

.event-share-section small {
    color: #81786f;
}

.event-share-buttons {
    display: flex;

    gap: 8px;
}

.event-share-btn {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid rgba(201, 154, 46, 0.26);

    background: #fff8dc;

    color: var(--mja-maroon);

    cursor: pointer;
}

.event-share-btn:hover {
    background:
        linear-gradient(
            145deg,
            #ffe370,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    transform: translateY(-2px);
}


/* Sidebar */

.event-detail-sidebar-card {
    overflow: hidden;

    margin-bottom: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.event-detail-sidebar-head {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 17px 20px;

    background:
        linear-gradient(
            135deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    border-bottom:
        3px solid var(--mja-yellow);
}

.event-detail-sidebar-head i {
    color: var(--mja-yellow);
}

.event-detail-sidebar-head h4 {
    margin: 0;

    color: #fff;

    font-size: 1.1rem;
}

.event-detail-info-list {
    padding: 9px 20px;
}

.event-detail-info-row {
    display: flex;

    gap: 13px;

    padding: 14px 0;

    border-bottom:
        1px solid #eee4d6;
}

.event-detail-info-row:last-child {
    border-bottom: 0;
}

.event-detail-info-row > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff6d5;

    color: #a37600;
}

.event-detail-info-row small {
    display: block;

    color: #887e75;
}

.event-detail-info-row strong {
    display: block;

    color: var(--mja-maroon-dark);
}


/* Participation */

.event-participation-card {
    padding: 25px;

    text-align: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.19),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);
}

.event-participation-icon {
    width: 65px;
    height: 65px;

    margin:
        0 auto 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--mja-yellow);

    color: var(--mja-maroon-dark);

    font-size: 1.5rem;
}

.event-participation-card h4 {
    color: #fff;
}

.event-participation-card p {
    color: #ead8d2;
}


/* Gallery */

.event-gallery-section {
    background:
        linear-gradient(
            180deg,
            #fff6d7,
            #fffdf8
        );
}

.event-gallery-item {
    position: relative;

    height: 280px;

    overflow: hidden;

    border-radius: 18px;

    background: #eee;

    box-shadow:
        0 8px 24px rgba(77, 17, 22, 0.07);
}

.event-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.event-gallery-item:hover img {
    transform: scale(1.05);
}

.event-gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        30px 16px 14px;

    background:
        linear-gradient(
            transparent,
            rgba(69, 18, 23, 0.93)
        );

    color: #fff;

    font-weight: 600;
}


/* Related */

.event-related-section {
    background:
        #fffdf8;
}

.event-related-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.event-related-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 36px rgba(77, 17, 22, 0.10);
}

.event-related-image-wrap {
    position: relative;

    display: block;

    height: 225px;

    overflow: hidden;
}

.event-related-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.event-related-date {
    position: absolute;

    top: 14px;
    left: 14px;

    min-width: 58px;

    overflow: hidden;

    text-align: center;

    border-radius: 12px;

    background:
        rgba(69, 18, 23, 0.96);

    border:
        2px solid var(--mja-yellow);
}

.event-related-date strong {
    display: block;

    padding-top: 7px;

    color: var(--mja-yellow);

    font-size: 1.4rem;
}

.event-related-date span {
    display: block;

    padding-bottom: 7px;

    color: #fff;

    font-size: 0.75rem;

    font-weight: 800;
}

.event-related-body {
    padding: 20px;
}

.event-related-location {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 7px;

    color: #9c7200;

    font-size: 0.86rem;

    font-weight: 700;
}

.event-related-body h3 {
    font-size: 1.25rem;
}

.event-related-body h3 a {
    color: var(--mja-maroon-dark);
}

.event-related-body p {
    color: var(--mja-gray);
}

.event-related-read-more {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}


/* Final CTA */

.event-detail-final-cta {
    padding:
        35px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.event-detail-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.event-detail-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.event-detail-final-card h2 {
    color: #fff;

    margin-top: 7px;

    font-size: 2.3rem;
}

.event-detail-final-card p {
    color: #ead9d2;

    margin-bottom: 0;
}


/* Responsive */

@media (max-width: 991.98px) {

    .event-detail-featured-image {
        height: 420px;
    }

    .event-location-card {
        flex-wrap: wrap;
    }

    .event-location-card .btn {
        width: 100%;
    }

    .event-detail-final-card {
        text-align: center;
    }

}

@media (max-width: 767.98px) {

    .event-detail-header {
        padding:
            45px 0 70px;
    }

    .event-detail-header h1 {
        font-size: 2.35rem;
    }

    .event-detail-featured-image {
        height: 310px;
    }

    .event-detail-article {
        padding: 25px 20px;
    }

    .event-video-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-video-card .btn {
        width: 100%;
    }

    .event-gallery-item {
        height: 250px;
    }

    .event-detail-final-card {
        padding: 30px 22px;
    }

}

@media (max-width: 575.98px) {

    .event-detail-header h1 {
        font-size: 2rem;
    }

    .event-detail-featured-image {
        height: 240px;
    }

    .event-detail-meta {
        flex-direction: column;

        gap: 8px;
    }

    .event-share-section {
        flex-direction: column;

        align-items: flex-start;
    }

    .event-gallery-item {
        height: 220px;
    }

    .event-detail-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-filter-section {
    padding: 28px 0;
    background:
        linear-gradient(
            180deg,
            #fff8de,
            #fffdf8
        );
}

.gallery-filter-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);
}

.gallery-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;
}

.gallery-filter-group > span {
    margin-right: 5px;

    color: var(--mja-maroon-dark);

    font-weight: 800;
}

.gallery-filter-group a {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    border-radius: 30px;

    background: #fffaf0;

    border:
        1px solid #eadfce;

    color: #665c53;

    font-weight: 700;
}

.gallery-filter-group a:hover,
.gallery-filter-group a.active {
    background:
        linear-gradient(
            145deg,
            #ffe36e,
            var(--mja-yellow)
        );

    border-color:
        rgba(201, 154, 46, 0.40);

    color: var(--mja-maroon-dark);
}


/* Gallery Section */

.gallery-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fffaf0
        );
}

.gallery-result-heading {
    margin-bottom: 30px;
}

.gallery-result-heading h2 {
    margin-bottom: 3px;

    font-size: 2rem;
}

.gallery-result-heading p {
    margin: 0;

    color: var(--mja-gray);
}


/* Cards */

.gallery-card {
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfcd;

    box-shadow:
        0 9px 25px rgba(77, 17, 22, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 16px 38px rgba(77, 17, 22, 0.10);
}

.gallery-image-wrap {
    position: relative;

    width: 100%;
    height: 270px;

    display: block;

    overflow: hidden;

    padding: 0;

    border: 0;

    background: #eee;

    text-align: left;

    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.gallery-card:hover
.gallery-image {
    transform: scale(1.045);
}

.gallery-type-badge {
    position: absolute;

    left: 14px;
    top: 14px;

    display: inline-flex;
    align-items: center;

    gap: 5px;

    padding: 5px 11px;

    border-radius: 30px;

    background:
        rgba(69, 18, 23, 0.94);

    border:
        1px solid rgba(244, 196, 48, 0.50);

    color: var(--mja-yellow);

    font-size: 0.76rem;

    font-weight: 800;
}

.gallery-zoom-button,
.gallery-play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 64px;
    height: 64px;

    transform:
        translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(69, 18, 23, 0.88);

    border:
        3px solid var(--mja-yellow);

    color: var(--mja-yellow);

    font-size: 1.5rem;

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.gallery-play-button {
    opacity: 1;

    font-size: 1.8rem;
}

.gallery-image-wrap:hover
.gallery-zoom-button {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1.05);
}

.gallery-card-body {
    padding: 20px;
}

.gallery-card-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 8px;

    color: #887d73;

    font-size: 0.84rem;
}

.gallery-card-meta span {
    display: inline-flex;
    align-items: center;

    gap: 5px;
}

.gallery-card-meta i {
    color: #a37800;
}

.gallery-card-body h3 {
    font-size: 1.25rem;

    color: var(--mja-maroon-dark);
}

.gallery-card-body p {
    color: var(--mja-gray);
}

.gallery-detail-link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: var(--mja-maroon);

    font-weight: 800;
}

.gallery-detail-link:hover {
    gap: 10px;

    color: #a47800;
}


/* Empty */

.gallery-empty-state {
    padding: 50px 25px;

    text-align: center;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e8
        );

    border:
        1px dashed rgba(201, 154, 46, 0.40);
}

.gallery-empty-icon {
    width: 82px;
    height: 82px;

    margin:
        0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe474,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 2rem;
}


/* Lightbox */

.gallery-lightbox-modal {
    position: relative;

    overflow: hidden;

    border: 0;

    border-radius: 22px;

    background: #1e090b;
}

.gallery-lightbox-close {
    position: absolute;

    z-index: 5;

    top: 15px;
    right: 15px;

    padding: 10px;

    border-radius: 50%;

    background-color: #fff;

    opacity: 1;
}

.gallery-lightbox-image-wrap {
    min-height: 300px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #160708;
}

.gallery-lightbox-image-wrap img {
    display: block;

    max-width: 100%;
    max-height: 78vh;

    object-fit: contain;
}

.gallery-lightbox-content {
    padding: 18px 22px;

    border-top:
        3px solid var(--mja-yellow);

    background:
        linear-gradient(
            135deg,
            #421015,
            #701e24
        );
}

.gallery-lightbox-content h4 {
    margin-bottom: 5px;

    color: var(--mja-yellow);
}

.gallery-lightbox-content p {
    color: #ead8d2;
}


/* Final CTA */

.gallery-final-cta {
    padding:
        35px 0 75px;

    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff6d8
        );
}

.gallery-final-card {
    padding: 40px;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at 92% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #451116,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 20px 46px rgba(77, 17, 22, 0.13);
}

.gallery-final-card
> .row
> div:first-child
> span {
    color: #ffe687;

    font-weight: 800;
}

.gallery-final-card h2 {
    margin-top: 7px;

    color: #fff;

    font-size: 2.3rem;
}

.gallery-final-card p {
    margin-bottom: 0;

    color: #ead9d2;
}


/* Responsive */

@media (max-width: 991.98px) {

    .gallery-filter-card {
        flex-direction: column;
    }

    .gallery-final-card {
        text-align: center;
    }

}

@media (max-width: 767.98px) {

    .gallery-image-wrap {
        height: 240px;
    }

    .gallery-final-card {
        padding: 30px 22px;
    }

}

@media (max-width: 575.98px) {

    .gallery-filter-group {
        align-items: flex-start;
    }

    .gallery-filter-group > span {
        width: 100%;
    }

    .gallery-image-wrap {
        height: 220px;
    }

    .gallery-final-card h2 {
        font-size: 1.9rem;
    }

}

/* =========================================================
   JOIN / MEMBERSHIP PAGE
   ========================================================= */


/* Benefits */

.join-intro-section {
    padding: 40px 0;

    background:
        linear-gradient(
            180deg,
            #fff7d7,
            #fffdf8
        );
}

.join-benefit-card {
    height: 100%;

    padding: 24px 20px;

    border-radius: 19px;

    background:
        linear-gradient(
            145deg,
            #fff,
            #fff9e9
        );

    border:
        1px solid #eadfcd;

    box-shadow:
        0 8px 22px rgba(77, 17, 22, 0.05);
}

.join-benefit-icon {
    width: 57px;
    height: 57px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #ffe36e,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-size: 1.35rem;
}

.join-benefit-card h4 {
    font-size: 1.15rem;
}

.join-benefit-card p {
    margin-bottom: 0;

    color: var(--mja-gray);
}


/* Form Background */

.join-form-section {
    background:
        linear-gradient(
            180deg,
            #fffdf8,
            #fff8e2
        );
}

.join-form-card {
    padding: 34px;

    border-radius: 26px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 15px 40px rgba(77, 17, 22, 0.07);
}


/* Form Heading */

.join-form-heading {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 30px;

    padding-bottom: 20px;

    border-bottom:
        1px solid #eee3d5;
}

.join-form-heading-icon {
    width: 62px;
    height: 62px;

    flex: 0 0 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            var(--mja-maroon-dark),
            var(--mja-maroon)
        );

    color: var(--mja-yellow);

    font-size: 1.45rem;
}

.join-form-heading span {
    color: #9d7300;

    font-weight: 800;

    font-size: 0.85rem;
}

.join-form-heading h2 {
    margin: 2px 0 0;

    font-size: 1.8rem;
}


/* Section Titles */

.join-form-section-title {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 18px;
}

.join-form-section-title > span {
    width: 47px;
    height: 47px;

    flex: 0 0 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ffe373,
            var(--mja-yellow)
        );

    color: var(--mja-maroon-dark);

    font-weight: 900;
}

.join-form-section-title strong {
    display: block;

    color: var(--mja-maroon-dark);

    font-size: 1.05rem;
}

.join-form-section-title small {
    color: #8a8077;
}


/* Required Label */

.form-label.required::after {
    content: " *";

    color: #b3202e;
}


/* Form Controls */

.join-form-card .form-control,
.join-form-card .form-select {
    min-height: 48px;

    border-radius: 11px;

    border-color: #ded4c6;
}

.join-form-card textarea.form-control {
    min-height: auto;
}

.join-form-card .form-control:focus,
.join-form-card .form-select:focus {
    border-color:
        rgba(201, 154, 46, 0.75);

    box-shadow:
        0 0 0 0.22rem
        rgba(244, 196, 48, 0.12);
}

.join-form-card
.input-group-text {
    background: #fff7d6;

    color: var(--mja-maroon-dark);

    border-color: #ded4c6;

    font-weight: 700;
}


/* Interests */

.join-interest-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;
}

.join-interest-option {
    position: relative;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px 14px;

    border-radius: 13px;

    background:
        #fffaf0;

    border:
        1px solid #eadfce;

    cursor: pointer;

    transition:
        all 0.2s ease;
}

.join-interest-option:hover {
    border-color:
        rgba(201, 154, 46, 0.50);

    background: #fff6d7;
}

.join-interest-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.join-interest-box {
    width: 26px;
    height: 26px;

    flex: 0 0 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    border:
        2px solid #d3c5b2;

    color: transparent;

    transition:
        all 0.2s ease;
}

.join-interest-option
input:checked
+ .join-interest-box {
    background:
        var(--mja-yellow);

    border-color:
        var(--mja-yellow);

    color:
        var(--mja-maroon-dark);
}

.join-interest-option:
has(input:checked) {
    border-color:
        rgba(201, 154, 46, 0.60);

    background:
        #fff3b9;
}


/* Photo */

.join-photo-upload {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 20px;

    border-radius: 17px;

    background:
        #fffaf0;

    border:
        1px dashed rgba(201, 154, 46, 0.45);
}

.join-photo-preview {
    width: 105px;
    height: 105px;

    flex: 0 0 105px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ffe16c,
            #fff4bd
        );

    border:
        3px solid var(--mja-yellow);

    color:
        var(--mja-maroon-dark);

    font-size: 2.5rem;
}

.join-photo-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* Consent */

.join-consent-box {
    padding: 20px;

    border-radius: 17px;

    background:
        #fff6d5;

    border:
        1px solid rgba(201, 154, 46, 0.27);
}

.join-consent-box label {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin: 0;

    cursor: pointer;
}

.join-consent-box input {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    margin-top: 3px;

    accent-color:
        var(--mja-maroon);
}

.join-consent-box span {
    color: #574f47;

    line-height: 1.6;
}


/* Submit */

.join-submit-btn {
    min-height: 56px;

    font-weight: 800;
}


/* Sidebar */

.join-sidebar {
    position: sticky;

    top: 115px;
}

.join-sidebar-leadership {
    position: relative;

    overflow: hidden;

    padding: 25px;

    text-align: center;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at top right,
            rgba(244, 196, 48, 0.20),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #431015,
            #721f25
        );

    border:
        1px solid rgba(201, 154, 46, 0.25);

    box-shadow:
        0 14px 34px rgba(77, 17, 22, 0.12);

    margin-bottom: 22px;
}

.join-sidebar-photo {
    width: 140px;
    height: 160px;

    margin:
        0 auto 15px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            #ffe473,
            #fff6d2
        );

    border:
        3px solid var(--mja-yellow);
}

.join-sidebar-photo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.join-sidebar-leadership > span {
    color: #ffe68a;

    font-weight: 800;

    font-size: 0.84rem;
}

.join-sidebar-leadership h3 {
    margin:
        4px 0 1px;

    color:
        var(--mja-yellow);
}

.join-sidebar-designation {
    color: #ead8d1 !important;

    font-weight: 700;
}

.join-sidebar-leadership p {
    color: #ead8d2;
}


/* Process */

.join-sidebar-process {
    padding: 22px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid #eadfce;

    box-shadow:
        0 10px 28px rgba(77, 17, 22, 0.06);

    margin-bottom: 22px;
}

.join-sidebar-process h4 {
    margin-bottom: 17px;
}

.join-process-step {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 0;

    border-bottom:
        1px solid #eee4d6;
}

.join-process-step:last-child {
    border-bottom: 0;
}

.join-process-step span {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--mja-yellow);

    color:
        var(--mja-maroon-dark);

    font-weight: 900;
}

.join-process-step strong {
    color:
        var(--mja-maroon-dark);
}


/* Security */

.join-sidebar-security {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border-radius: 18px;

    background:
        #fff5c8;

    border:
        1px solid rgba(201, 154, 46, 0.27);
}

.join-sidebar-security > i {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--mja-maroon);

    color:
        var(--mja-yellow);
}

.join-sidebar-security strong {
    display: block;

    color:
        var(--mja-maroon-dark);
}

.join-sidebar-security p {
    margin:
        3px 0 0;

    color:
        var(--mja-gray);

    font-size: 0.9rem;
}


/* Success */

.join-success-section {
    min-height: 75vh;

    padding: 80px 0;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(244, 196, 48, 0.18),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fff9e7,
            #fffdf8
        );
}

.join-success-card {
    padding: 48px 35px;

    text-align: center;

    border-radius: 28px;

    background: #fff;

    border:
        1px solid rgba(201, 154, 46, 0.30);

    box-shadow:
        0 20px 50px rgba(77, 17, 22, 0.10);
}

.join-success-icon {
    width: 90px;
    height: 90px;

    margin:
        0 auto 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--mja-yellow),
            #ddab19
        );

    color:
        var(--mja-maroon-dark);

    font-size: 2.5rem;

    box-shadow:
        0 12px 28px rgba(244, 196, 48, 0.25);
}

.join-success-label {
    color: #9d7300;

    font-weight: 800;
}

.join-success-card h1 {
    margin:
        8px 0 13px;

    font-size: 2.35rem;
}

.join-success-card > p {
    max-width: 620px;

    margin:
        0 auto 24px;

    color:
        var(--mja-gray);
}

.join-membership-number {
    max-width: 460px;

    margin:
        0 auto 20px;

    padding: 20px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #451116,
            #721f25
        );

    border-bottom:
        4px solid var(--mja-yellow);
}

.join-membership-number small {
    display: block;

    color:
        #ead8d2;
}

.join-membership-number strong {
    display: block;

    margin-top: 3px;

    color:
        var(--mja-yellow);

    font-size: 1.7rem;

    letter-spacing: 1px;
}

.join-success-note {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    border-radius: 30px;

    background:
        #fff5ca;

    color:
        #725b1d;
}


/* Responsive */

@media (max-width: 991.98px) {

    .join-sidebar {
        position: static;
    }

}

@media (max-width: 767.98px) {

    .join-form-card {
        padding:
            26px 20px;
    }

    .join-interest-grid {
        grid-template-columns:
            1fr;
    }

    .join-success-card {
        padding:
            38px 22px;
    }

    .join-success-card h1 {
        font-size: 2rem;
    }

}

@media (max-width: 575.98px) {

    .join-form-heading {
        align-items: flex-start;
    }

    .join-photo-upload {
        flex-direction: column;

        align-items: flex-start;
    }

    .join-photo-preview {
        margin: auto;
    }

    .join-membership-number strong {
        font-size: 1.35rem;
    }

}