/* Custom page styles extracted from Blade templates */

:root {
    --site-bg: #f5f7fb;
    --surface-bg: #ffffff;
    --surface-muted: #f8fafc;
    --surface-soft: #eef3f8;
    --text-strong: #101d33;
    --text-body: #556477;
    --text-muted: #667085;
    --border-soft: #ebeff5;
    --shadow-soft: 0 20px 60px rgba(10, 23, 39, 0.06);
    --header-bg: #091b39;
    --header-card: rgba(255, 255, 255, 0.06);
    --theme-accent: #9a1818;
    --theme-accent-soft: rgba(154, 24, 24, 0.08);
}

:root[data-theme='dark'] {
    --site-bg: #08111f;
    --surface-bg: #0f1a2b;
    --surface-muted: #132134;
    --surface-soft: #18283d;
    --text-strong: #edf3fb;
    --text-body: #c2cfdf;
    --text-muted: #95a6bc;
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.34);
    --header-bg: #050d18;
    --header-card: rgba(255, 255, 255, 0.05);
    --theme-accent-soft: rgba(195, 54, 54, 0.18);
}

html,
body {
    background: var(--site-bg);
    color: var(--text-body);
    transition: background-color 0.25s ease, color 0.25s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
body p,
body li,
body a,
body span,
body div,
body label,
body input,
body textarea,
body button {
    font-family: var(--body-font), "Segoe UI", Arial, sans-serif;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: var(--heading-font), var(--body-font), "Segoe UI", Arial, sans-serif;
}

.fa,
.fa-classic,
.fa-sharp,
.fa-sharp-solid,
.fa-solid,
.fas {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome" !important;
    font-weight: 900 !important;
}

.fa-light,
.fal {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome" !important;
    font-weight: 300 !important;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Pro", "Font Awesome 5 Pro", "FontAwesome" !important;
    font-weight: 400 !important;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome" !important;
    font-weight: 400 !important;
}

.floating-theme-toggle {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 76px;
    padding: 6px;
    border: 1px solid rgba(16, 29, 51, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-strong);
    box-shadow: 0 16px 40px rgba(10, 23, 39, 0.12);
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.floating-theme-toggle:hover {
    transform: translateY(-50%) translateX(-2px);
}

.floating-theme-toggle__thumb {
    position: absolute;
    left: 6px;
    right: 6px;
    height: calc(50% - 6px);
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f4f7fb, #dfe7f2);
    color: #0f1d31;
    box-shadow: 0 12px 28px rgba(15, 29, 49, 0.16);
    transform: translateY(0);
    transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
    pointer-events: none;
    z-index: 0;
}

.floating-theme-toggle__option {
    position: relative;
    z-index: 1;
    min-height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #7b8798;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.72;
}

.floating-theme-toggle__option.is-active {
    color: #0f1d31;
    opacity: 1;
}

.floating-theme-toggle__text {
    font-size: 0.78rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.floating-theme-toggle[data-active-theme='dark'] .floating-theme-toggle__thumb {
    transform: translateY(calc(100% + 6px));
    background: linear-gradient(180deg, rgba(154, 24, 24, 0.96), rgba(120, 17, 17, 0.96));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(154, 24, 24, 0.32);
}

.floating-theme-toggle[data-active-theme='dark'] .floating-theme-toggle__option {
    color: #94a3b8;
    opacity: 0.82;
}

.floating-theme-toggle[data-active-theme='dark'] .floating-theme-toggle__option.is-active {
    color: #ffffff;
    opacity: 1;
}

:root[data-theme='dark'] .floating-theme-toggle {
    background: rgba(10, 18, 31, 0.9);
    color: var(--text-strong);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

@media (max-width: 991px) {
    .floating-theme-toggle {
        right: 14px;
        bottom: 18px;
        top: auto;
        transform: none;
        width: 70px;
    }

    .floating-theme-toggle:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 640px) {
    .floating-theme-toggle {
        right: 12px;
        bottom: 14px;
        width: 64px;
    }

    .floating-theme-toggle__option {
        min-height: 56px;
    }

    .floating-theme-toggle__text {
        font-size: 0.72rem;
    }
}

body .main,
body .header,
body .footer-area,
body .footer-refined,
body .post-page,
body .organisation-board-page,
body .staff-directory-page {
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* resources/views/website/index.blade.php */
.home-2 .header-top {
            background: var(--header-bg);
        }

        .home-2 .header-top-wrapper {
            border-bottom: 0;
            padding-bottom: 12px;
        }

        .home-2 .header-top-contact ul {
            gap: 28px;
        }

        .home-2 .header-top-contact li {
            align-items: center;
        }

        .home-2 .header-contact-card {
            padding: 14px 18px;
            border-radius: 22px;
            background: var(--header-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .home-2 .header-top-contact-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .home-2 .header-top-contact-info h6 {
            font-size: 0.84rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 4px;
        }

        .home-2 .header-top-contact-info a {
            color: #fff;
        }

        .home-2 .header-top-social span {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.78rem;
        }

        .home-2 .header-top-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #ffffff;
            transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }

        .home-2 .header-top-social a i {
            color: inherit;
            font-size: 16px;
            line-height: 1;
        }

        .home-2 .header-top-social a:hover,
        .home-2 .header-top-social a:focus-visible {
            color: #ffffff;
            background: rgba(154, 24, 24, 0.92);
            border-color: rgba(154, 24, 24, 0.92);
            transform: translateY(-1px);
        }

        .home-2 .header-events-section {
            padding-top: 8px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .home-2 .header-events-wrapper {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 10px 0 0;
        }

        .home-2 .events-badge {
            flex-shrink: 0;
        }

        .home-2 .events-badge span {
            display: inline-flex;
            align-items: center;
            min-height: 46px;
            padding: 0 20px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.06em;
        }

        .home-2 .events-ticker {
            min-height: 46px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .home-2 .main-navigation {
            background: var(--header-bg);
            padding-top: 8px;
            padding-bottom: 12px !important;
        }

        .home-2 .main {
            margin-top: 0;
        }

        .home-2 .custom-nav {
            border-radius: 24px;
            padding-left: 12px;
            padding-right: 12px;
            box-shadow: 0 22px 60px rgba(10, 23, 39, 0.1);
        }

        .home-2 .navbar-brand img {
            max-height: 64px;
        }

        .home-2 .hero-single {
            padding-top: 168px;
        }

        .home-2 .nav-right-btn .theme-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border-radius: 16px;
            min-height: 54px;
            padding: 0 26px;
            text-align: center;
        }

        .home-2 .nav-right {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .home-2 .nav-right-btn {
            display: flex;
            align-items: center;
        }

        .home-2 .nav-right-btn.mt-2 {
            margin-top: 0 !important;
        }

        .section-intro {
            max-width: 640px;
            margin: 14px auto 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.8;
        }

        .news-shell {
            padding: 105px 0 90px;
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 28%),
                linear-gradient(180deg, var(--surface-bg) 0%, var(--surface-muted) 100%);
        }

        .news-shell .section-topbar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 18px;
            margin-bottom: 46px;
            text-align: center;
        }

        .news-shell .section-topbar .site-heading {
            margin-bottom: 0;
            text-align: center;
            max-width: 760px;
        }

        .news-cta-link {
            color: #9a1818;
            font-weight: 700;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 0 4px;
            border-bottom: 1px solid rgba(154, 24, 24, 0.18);
        }

        .news-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: var(--surface-bg);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 80px rgba(10, 23, 39, 0.14);
        }

        .news-card-media {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            background: #d7dde5;
        }

        .news-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            transform: translateZ(0);
            image-rendering: auto;
            filter: saturate(1.04) contrast(1.02);
        }

        .news-card-date {
            position: absolute;
            left: 20px;
            bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(8, 17, 30, 0.86);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            backdrop-filter: blur(8px);
        }

        .news-card-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 28px;
        }

        .news-card-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .news-card-title {
            font-size: 24px;
            line-height: 1.25;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-title a {
            color: var(--text-strong);
        }

        .news-card-text {
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 24px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-card-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding-top: 18px;
            border-top: 1px solid var(--border-soft);
        }

        .news-card-author {
            color: var(--text-muted);
            font-size: 14px;
        }

        .news-card-link {
            color: #9a1818;
            font-weight: 700;
        }

        .notice-shell {
            padding: 105px 0;
            background:
                linear-gradient(135deg, rgba(8, 24, 54, 0.04), rgba(154, 24, 24, 0.06)),
                var(--surface-bg);
        }

        .notice-panel {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            background: var(--surface-bg);
            box-shadow: var(--shadow-soft);
        }

        .notice-panel::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 10px;
            background: linear-gradient(180deg, #9a1818, #101d33);
        }

        .notice-media-wrap {
            height: 100%;
            min-height: 420px;
            padding: 28px;
        }

        .notice-media {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            background: #d8dee8;
        }

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

        .notice-copy {
            padding: 42px 44px 42px 10px;
        }

        .notice-copy .site-heading {
            margin-bottom: 18px;
        }

        .notice-copy .site-title {
            margin-bottom: 0;
        }

        .notice-copy .section-intro {
            margin: 16px 0 24px;
            max-width: none;
            text-align: left;
        }

        .notice-body {
            color: var(--text-body);
            line-height: 1.85;
        }

        .notice-body p:last-child {
            margin-bottom: 0;
        }

        .publications-shell {
            padding: 100px 0 90px;
            background: var(--surface-muted);
        }

        .publications-shell .section-topbar {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            margin-bottom: 44px;
            text-align: center;
        }

        .publication-card {
            height: 100%;
            padding: 30px 28px;
            border-radius: 24px;
            background: var(--surface-bg);
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
            transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
        }

        .publication-card:hover {
            transform: translateY(-4px);
            border-color: rgba(154, 24, 24, 0.16);
            box-shadow: 0 20px 60px rgba(15, 23, 40, 0.1);
        }

        .publication-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .publication-title {
            font-size: 24px;
            line-height: 1.28;
            margin-bottom: 12px;
        }

        .publication-title a {
            color: var(--text-strong);
        }

        .publication-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 18px;
        }

        .publication-copy {
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 24px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .publication-link {
            color: #9a1818;
            font-weight: 700;
        }

        .downloads-shell {
            padding: 95px 0 90px;
            background: linear-gradient(180deg, #101d33 0%, #132646 100%);
            color: #fff;
        }

        .downloads-shell .site-title,
        .downloads-shell .site-title-tagline,
        .downloads-shell .section-intro {
            color: #fff;
        }

        .downloads-shell .section-intro {
            color: rgba(255, 255, 255, 0.76);
        }

        .downloads-panel {
            padding: 34px;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .download-tile {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .download-tile:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .download-tile + .download-tile {
            margin-top: 14px;
        }

        .download-label {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 600;
        }

        .download-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.12);
            font-size: 18px;
        }

        .downloads-shell .btn-outline-danger {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .downloads-shell .btn-outline-danger:hover {
            background: #fff;
            color: #101d33;
        }

        .partners-shell {
            padding: 95px 0 90px;
            background: var(--surface-bg);
        }

        .homepage-youtube-wrap {
            padding: 0 0 95px;
            background: linear-gradient(180deg, var(--surface-bg) 0%, var(--surface-muted) 100%);
        }

        .footer-refined {
            background:
                radial-gradient(circle at top right, rgba(154, 24, 24, 0.12), transparent 20%),
                linear-gradient(180deg, #0a1730 0%, #0d1d38 100%);
        }

        .footer-refined .footer-widget {
            position: relative;
        }

        .footer-refined .footer-lead,
        .footer-refined .footer-mini-copy {
            color: rgba(255, 255, 255, 0.74);
            line-height: 1.85;
        }

        .footer-inline-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 22px;
        }

        .footer-refined .footer-contact-list li a {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.82);
            flex-wrap: wrap;
            overflow-wrap: anywhere;
        }

        .footer-link-group .footer-widget-title,
        .footer-note-card .footer-widget-title {
            margin-bottom: 24px;
        }

        .footer-link-list li + li {
            margin-top: 8px;
        }

        .footer-note-card {
            padding: 28px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-actions .theme-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 52px;
            border-radius: 14px;
            padding: 0 20px;
            text-align: center;
        }

        .footer-actions .theme-btn-border {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .footer-actions .theme-btn-border:hover {
            background: #fff;
            color: #0d1d38;
        }

        .footer-refined .copyright {
            background: rgba(0, 0, 0, 0.12);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .partner-card {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
            padding: 24px;
            border-radius: 22px;
            background: var(--surface-bg);
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
        }

        .partner-card img {
            max-width: 100%;
            max-height: 72px;
            width: auto !important;
            filter: grayscale(1);
            opacity: 0.78;
            transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
        }

        .partner-card:hover img {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.03);
        }

        @media (max-width: 991px) {
            .home-2 .header-top-wrapper {
                padding-left: 14px;
                padding-right: 14px;
            }

            .home-2 .header-events-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .home-2 .events-badge span {
                width: 100%;
                justify-content: center;
            }

            .notice-copy {
                padding: 10px 34px 36px;
            }

            .notice-media-wrap {
                min-height: 320px;
                padding-bottom: 10px;
            }

            .news-shell .section-topbar {
                margin-bottom: 28px;
            }
        }

        @media (max-width: 767px) {
            .home-2 .header-top-contact ul {
                gap: 18px;
            }

            .home-2 .main-navigation {
                padding-bottom: 20px !important;
            }

            .home-2 .header-contact-card {
                width: 100%;
            }

            .news-card-body {
                padding: 22px;
            }

            .news-card-title {
                font-size: 21px;
            }

            .notice-copy {
                padding: 8px 24px 28px;
            }

            .notice-media-wrap {
                padding: 18px 18px 10px;
                min-height: 260px;
            }

            .publication-card,
            .downloads-panel {
                padding: 24px 20px;
            }

            .footer-note-card {
                padding: 22px;
            }
        }

:root[data-theme='dark'] .home-2 .custom-nav,
:root[data-theme='dark'] .news-card,
:root[data-theme='dark'] .notice-panel,
:root[data-theme='dark'] .publication-card,
:root[data-theme='dark'] .partner-card,
:root[data-theme='dark'] .organisation-board-section,
:root[data-theme='dark'] .board-feature-card,
:root[data-theme='dark'] .board-member-card,
:root[data-theme='dark'] .board-context-card,
:root[data-theme='dark'] .staff-section,
:root[data-theme='dark'] .staff-card,
:root[data-theme='dark'] .post-main,
:root[data-theme='dark'] .post-sidebar,
:root[data-theme='dark'] .career-card,
:root[data-theme='dark'] .downloads-panel,
:root[data-theme='dark'] .download-tile {
    background: var(--surface-bg) !important;
    border-color: var(--border-soft) !important;
    box-shadow: var(--shadow-soft) !important;
}

:root[data-theme='dark'] .home-2 .custom-nav {
    background: rgba(13, 23, 39, 0.92);
}

:root[data-theme='dark'] .navbar .nav-link,
:root[data-theme='dark'] .navbar .navbar-nav .nav-link,
:root[data-theme='dark'] .navbar .dropdown-toggle,
:root[data-theme='dark'] .navbar .dropdown-item,
:root[data-theme='dark'] .navbar .mega-menu-item li a,
:root[data-theme='dark'] .header-top-contact-info a,
:root[data-theme='dark'] .header-top-contact-info h6,
:root[data-theme='dark'] .header-top-social span,
:root[data-theme='dark'] .header-top-social a,
:root[data-theme='dark'] .events-badge span,
:root[data-theme='dark'] .event-ticker-empty,
:root[data-theme='dark'] .event-item,
:root[data-theme='dark'] .event-item a,
:root[data-theme='dark'] .search-btn .nav-right-link,
:root[data-theme='dark'] .search-popup .form-group input,
:root[data-theme='dark'] .search-popup .form-group button,
:root[data-theme='dark'] .footer-widget-title,
:root[data-theme='dark'] .footer-link-list li a,
:root[data-theme='dark'] .footer-contact-list li,
:root[data-theme='dark'] .footer-contact-list li a,
:root[data-theme='dark'] .footer-refined .copyright-text,
:root[data-theme='dark'] .footer-refined .copyright-text a,
:root[data-theme='dark'] .site-heading p,
:root[data-theme='dark'] .board-feature-link,
:root[data-theme='dark'] .board-member-link,
:root[data-theme='dark'] .staff-card-link,
:root[data-theme='dark'] .publication-link,
:root[data-theme='dark'] .news-card-link,
:root[data-theme='dark'] .recent-news-item h3 a,
:root[data-theme='dark'] .share-button,
:root[data-theme='dark'] .download-archive-item,
:root[data-theme='dark'] .content-card-link,
:root[data-theme='dark'] .content-card h2 a,
:root[data-theme='dark'] .faq-question,
:root[data-theme='dark'] .faq-group-title,
:root[data-theme='dark'] .contact-card,
:root[data-theme='dark'] .contact-card a,
:root[data-theme='dark'] .contact-card h3,
:root[data-theme='dark'] .site-shell-title,
:root[data-theme='dark'] .site-shell-stat strong,
:root[data-theme='dark'] .site-shell-main h2,
:root[data-theme='dark'] .site-shell-main h3,
:root[data-theme='dark'] .site-shell-main h4,
:root[data-theme='dark'] .site-shell-aside h3,
:root[data-theme='dark'] .download-label,
:root[data-theme='dark'] .post-sidebar-title,
:root[data-theme='dark'] .post-sidebar-label,
:root[data-theme='dark'] .post-meta,
:root[data-theme='dark'] .recent-news-item span {
    color: var(--text-strong) !important;
}

:root[data-theme='dark'] .navbar .dropdown-menu,
:root[data-theme='dark'] .navbar .mega-content,
:root[data-theme='dark'] .search-popup .form-group input,
:root[data-theme='dark'] .site-shell-main,
:root[data-theme='dark'] .site-shell-aside,
:root[data-theme='dark'] .download-archive-item,
:root[data-theme='dark'] .content-card,
:root[data-theme='dark'] .faq-item,
:root[data-theme='dark'] .contact-card,
:root[data-theme='dark'] .share-button {
    background: var(--surface-bg) !important;
    border-color: var(--border-soft) !important;
}

:root[data-theme='dark'] .navbar .nav-link:hover,
:root[data-theme='dark'] .navbar .nav-link.active,
:root[data-theme='dark'] .navbar .dropdown-item:hover,
:root[data-theme='dark'] .navbar .dropdown-item.active,
:root[data-theme='dark'] .navbar .mega-menu-item li a:hover,
:root[data-theme='dark'] .footer-link-list li a:hover,
:root[data-theme='dark'] .content-card-link:hover,
:root[data-theme='dark'] .share-button:hover {
    color: #ffffff !important;
}

:root[data-theme='dark'] .navbar .dropdown-item,
:root[data-theme='dark'] .navbar .mega-content h5,
:root[data-theme='dark'] .header .navbar-brand + .mobile-menu-right .navbar-toggler,
:root[data-theme='dark'] .navbar-toggler-mobile-icon,
:root[data-theme='dark'] .search-btn .nav-right-link {
    color: #ffffff !important;
}

:root[data-theme='dark'] .navbar .dropdown-item:hover,
:root[data-theme='dark'] .navbar .dropdown-item.active,
:root[data-theme='dark'] .navbar .mega-menu-item li a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

:root[data-theme='dark'] .site-title,
:root[data-theme='dark'] .news-card-title a,
:root[data-theme='dark'] .publication-title a,
:root[data-theme='dark'] .board-section-title,
:root[data-theme='dark'] .board-feature-name,
:root[data-theme='dark'] .board-member-name,
:root[data-theme='dark'] .staff-section-title,
:root[data-theme='dark'] .staff-card-name,
:root[data-theme='dark'] .post-title,
:root[data-theme='dark'] .post-body h1,
:root[data-theme='dark'] .post-body h2,
:root[data-theme='dark'] .post-body h3,
:root[data-theme='dark'] .post-body h4,
:root[data-theme='dark'] .post-body h5,
:root[data-theme='dark'] .post-body h6,
:root[data-theme='dark'] .career-card summary,
:root[data-theme='dark'] .media-group h2 {
    color: var(--text-strong) !important;
}

:root[data-theme='dark'] p,
:root[data-theme='dark'] li,
:root[data-theme='dark'] .section-intro,
:root[data-theme='dark'] .notice-body,
:root[data-theme='dark'] .publication-copy,
:root[data-theme='dark'] .board-section-head .section-intro-copy,
:root[data-theme='dark'] .board-feature-position,
:root[data-theme='dark'] .board-member-position,
:root[data-theme='dark'] .staff-card-role,
:root[data-theme='dark'] .post-body,
:root[data-theme='dark'] .career-body {
    color: var(--text-body) !important;
}

:root[data-theme='dark'] .news-shell,
:root[data-theme='dark'] .publications-shell,
:root[data-theme='dark'] .homepage-youtube-wrap,
:root[data-theme='dark'] .partners-shell,
:root[data-theme='dark'] .organisation-board-page,
:root[data-theme='dark'] .post-page {
    background:
        radial-gradient(circle at top left, rgba(154, 24, 24, 0.1), transparent 24%),
        linear-gradient(180deg, #07101d 0%, #0b1627 100%) !important;
}

:root[data-theme='dark'] .notice-shell {
    background:
        linear-gradient(135deg, rgba(8, 24, 54, 0.2), rgba(154, 24, 24, 0.14)),
        #08111f !important;
}

:root[data-theme='dark'] .board-context-list li::before {
    background: #cb4646;
}

:root[data-theme='dark'] .post-meta,
:root[data-theme='dark'] .news-card-footer,
:root[data-theme='dark'] .post-sidebar-block + .post-sidebar-block,
:root[data-theme='dark'] .career-card[open] summary,
:root[data-theme='dark'] .media-group + .media-group {
    border-color: var(--border-soft) !important;
}


/* resources/views/components/youtube-section.blade.php */
.youtube-hero-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 90px rgba(5, 16, 32, 0.14);
    background: linear-gradient(135deg, #081935 0%, #102a52 55%, #15396f 100%);
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 24%),
        radial-gradient(circle at bottom right, rgba(244, 63, 94, 0.22), transparent 22%);
    opacity: 1;
}

.geometric-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="1040" cy="96" r="120" fill="rgba(255,255,255,0.08)"/><circle cx="980" cy="420" r="180" fill="rgba(255,255,255,0.04)"/><path d="M0 460 Q280 360 480 470 T980 420 T1200 450 V600 H0 Z" fill="rgba(255,255,255,0.06)"/></svg>') no-repeat center center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 440px);
    align-items: center;
    padding: 68px 64px;
    gap: 56px;
}

.hero-text {
    color: white;
}

.youtube-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.8rem, 4.8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.08rem;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.75;
    max-width: 56ch;
}

.official-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    backdrop-filter: blur(10px);
    color: #0d2345;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.official-channel-link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: rgb(190, 24, 93);
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.45);
}

.video-showcase {
    position: relative;
}

.main-video-container {
    position: relative;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.main-video-container iframe {
    border-radius: 22px;
}

.video-frame {
    aspect-ratio: 16 / 10;
}

.video-side-notes {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.video-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

.video-note strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 6px;
}

.video-note span {
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 42px 38px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .youtube-hero-section {
        border-radius: 24px;
    }

    .hero-content {
        padding: 34px 24px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .video-side-notes {
        grid-template-columns: 1fr;
    }

    .video-frame {
        aspect-ratio: 16 / 11;
    }
}


/* resources/views/website/pages/organisation/command/_profile.blade.php */
.command-profile-page {
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #f7f9fc 0%, #ffffff 36%);
        }

        .command-profile-hero {
            padding: 78px 0 34px;
        }

        .command-profile-shell {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            background: #fff;
            box-shadow: 0 28px 90px rgba(10, 23, 39, 0.08);
            border: 1px solid #ebeff5;
        }

        .command-profile-shell::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 10px;
            background: linear-gradient(180deg, #9a1818 0%, #101d33 100%);
        }

        .command-profile-main {
            padding: 46px 46px 42px;
        }

        .command-profile-topline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .command-profile-title {
            font-size: clamp(2rem, 3.8vw, 3.4rem);
            line-height: 1.05;
            letter-spacing: -0.04em;
            color: #101d33;
            margin-bottom: 14px;
        }

        .command-profile-intro {
            max-width: 64ch;
            color: #627182;
            line-height: 1.85;
            margin-bottom: 0;
        }

        .command-profile-layout {
            padding: 0 46px 56px;
        }

        .command-profile-card,
        .command-profile-biography,
        .command-profile-nav {
            border-radius: 28px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 18px 54px rgba(10, 23, 39, 0.05);
        }

        .command-profile-card {
            padding: 24px;
            position: sticky;
            top: 24px;
        }

        .command-profile-image {
            position: relative;
            overflow: hidden;
            border-radius: 22px;
            background: linear-gradient(180deg, #eef3f8 0%, #dfe7f1 100%);
            margin-bottom: 24px;
        }

        .command-profile-image img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .command-profile-meta {
            display: grid;
            gap: 14px;
        }

        .command-meta-item {
            padding: 14px 16px;
            border-radius: 18px;
            background: #f8fafc;
            border: 1px solid #edf1f6;
        }

        .command-meta-item span {
            display: block;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #8b97a5;
            margin-bottom: 6px;
        }

        .command-meta-item strong {
            display: block;
            color: #101d33;
            line-height: 1.5;
        }

        .command-profile-nav {
            margin-top: 22px;
            padding: 20px;
        }

        .command-profile-nav h6 {
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #8b97a5;
            margin-bottom: 14px;
        }

        .command-profile-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 14px 16px;
            border-radius: 16px;
            color: #12223a;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            font-weight: 600;
        }

        .command-profile-nav a + a {
            margin-top: 10px;
        }

        .command-profile-nav a.is-active {
            background: #101d33;
            color: #fff;
            border-color: #101d33;
        }

        .command-profile-biography {
            padding: 34px 36px;
        }

        .command-section + .command-section {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #edf1f6;
        }

        .command-section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .command-section-title {
            font-size: 1.55rem;
            color: #101d33;
            margin-bottom: 16px;
        }

        .command-biography-copy p,
        .command-biography-copy li {
            color: #536274;
            line-height: 1.9;
            font-size: 1rem;
        }

        .command-biography-copy p:last-child {
            margin-bottom: 0;
        }

        .command-biography-copy ul {
            list-style: none;
            padding: 0;
            margin: 16px 0 0;
            display: grid;
            gap: 12px;
        }

        .command-biography-copy li {
            position: relative;
            padding-left: 22px;
        }

        .command-biography-copy li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 11px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #9a1818;
        }

        @media (max-width: 991px) {
            .command-profile-main,
            .command-profile-layout {
                padding-left: 28px;
                padding-right: 28px;
            }

            .command-profile-layout {
                padding-bottom: 40px;
            }

            .command-profile-card {
                position: static;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 767px) {
            .command-profile-hero {
                padding: 54px 0 24px;
            }

            .command-profile-shell {
                border-radius: 24px;
            }

            .command-profile-main {
                padding: 28px 20px 24px;
            }

            .command-profile-layout {
                padding: 0 20px 28px;
            }

            .command-profile-biography {
                padding: 24px 20px;
            }

            .command-profile-title {
                font-size: 2rem;
            }
        }


/* resources/views/website/pages/shared/_shell.blade.php */
.site-shell-page {
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #f7f9fc 0%, #ffffff 38%);
        }

        .site-shell-wrap {
            padding: 62px 0 96px;
        }

        .site-shell-hero {
            border-radius: 28px;
            padding: 30px 34px;
            background:
                radial-gradient(circle at top right, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
            border: 1px solid #ebeff5;
            box-shadow: 0 18px 54px rgba(10, 23, 39, 0.06);
            color: #101d33;
            margin-bottom: 26px;
        }

        .site-shell-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            border: 1px solid rgba(154, 24, 24, 0.12);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .site-shell-title {
            font-size: clamp(1.9rem, 3.2vw, 3rem);
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: #101d33;
            margin-bottom: 10px;
        }

        .site-shell-intro {
            max-width: 68ch;
            color: #607082;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .site-shell-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 20px;
        }

        .site-shell-stat {
            padding: 16px 18px;
            border-radius: 18px;
            background: #f8fafc;
            border: 1px solid #edf1f6;
        }

        .site-shell-stat span {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #8b97a5;
            margin-bottom: 6px;
            font-weight: 700;
        }

        .site-shell-stat strong {
            display: block;
            color: #101d33;
            font-size: 1.02rem;
            line-height: 1.45;
        }

        .site-shell-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 28px;
        }

        .site-shell-grid.has-aside {
            grid-template-columns: minmax(0, 1fr) 320px;
            align-items: start;
        }

        .site-shell-main,
        .site-shell-aside {
            border-radius: 30px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.05);
        }

        .site-shell-main {
            padding: 34px 36px;
        }

        .site-shell-aside {
            padding: 26px;
            position: sticky;
            top: 24px;
        }

        .site-shell-richtext h2,
        .site-shell-richtext h3,
        .site-shell-richtext h4 {
            color: #101d33;
            margin-bottom: 14px;
        }

        .site-shell-richtext h2 {
            font-size: 2rem;
        }

        .site-shell-richtext h3 {
            font-size: 1.45rem;
            margin-top: 28px;
        }

        .site-shell-richtext h4 {
            font-size: 1.1rem;
            margin-top: 18px;
        }

        .site-shell-richtext p,
        .site-shell-richtext li {
            color: #536274;
            line-height: 1.9;
        }

        .site-shell-richtext ul,
        .site-shell-richtext ol {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }

        .site-shell-richtext img {
            width: 100%;
            border-radius: 22px;
            display: block;
            box-shadow: 0 16px 50px rgba(10, 23, 39, 0.08);
        }

        .site-shell-aside-block + .site-shell-aside-block {
            margin-top: 22px;
            padding-top: 22px;
            border-top: 1px solid #edf1f6;
        }

        .site-shell-aside-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .site-shell-aside-title {
            font-size: 1.15rem;
            color: #101d33;
            margin-bottom: 14px;
        }

        .site-shell-aside-list {
            display: grid;
            gap: 10px;
        }

        .site-shell-aside-list a,
        .site-shell-aside-list div {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            color: #12223a;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            font-weight: 600;
            flex-wrap: wrap;
        }

        .site-shell-aside-list span,
        .site-shell-aside-list strong {
            overflow-wrap: anywhere;
        }

        .site-shell-note {
            color: #617080;
            line-height: 1.8;
            margin-bottom: 0;
        }

        @media (max-width: 991px) {
            .site-shell-wrap {
                padding: 48px 0 76px;
            }

            .site-shell-hero {
                padding: 24px 24px;
            }

            .site-shell-stats {
                grid-template-columns: 1fr;
            }

            .site-shell-grid.has-aside {
                grid-template-columns: 1fr;
            }

            .site-shell-aside {
                position: static;
            }
        }

        @media (max-width: 767px) {
            .site-shell-hero,
            .site-shell-main,
            .site-shell-aside {
                border-radius: 24px;
            }

            .site-shell-hero {
                padding: 20px 18px;
            }

            .site-shell-main,
            .site-shell-aside {
                padding: 22px 18px;
            }

            .site-shell-title {
                font-size: 1.75rem;
            }
        }


/* resources/views/website/pages/resources/publications.blade.php */
.content-card-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
        }

        .content-card {
            height: 100%;
            display: flex;
            flex-direction: column;
            padding: 28px;
            border-radius: 24px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.05);
        }

        .content-card-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 13px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .content-card h2 {
            font-size: 1.45rem;
            line-height: 1.35;
            margin-bottom: 12px;
        }

        .content-card h2 a {
            color: #101d33;
        }

        .content-card-meta {
            color: #6a7786;
            font-size: .95rem;
            margin-bottom: 14px;
        }

        .content-card p {
            color: #58687a;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .content-card-link {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-weight: 700;
        }

        @media (max-width: 767px) {
            .content-card-grid {
                grid-template-columns: 1fr;
            }
        }


/* resources/views/website/pages/resources/downloads.blade.php */
.download-archive {
            display: grid;
            gap: 16px;
        }

        .download-archive-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 20px 22px;
            border-radius: 22px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .download-archive-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(10, 23, 39, 0.08);
        }

        .download-archive-label {
            display: flex;
            align-items: center;
            gap: 16px;
            color: #12223a;
            font-weight: 600;
            line-height: 1.6;
        }

        .download-archive-icon {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 1.05rem;
            flex-shrink: 0;
        }

        .download-archive-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-weight: 700;
            white-space: nowrap;
        }


/* resources/views/website/pages/contact/contact.blade.php */
.contact-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin-bottom: 28px;
        }

        .contact-card {
            min-height: 100%;
            padding: 26px;
            border-radius: 22px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
        }

        .contact-card i {
            color: #9a1818;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .contact-card h2 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .contact-card p,
        .contact-card a {
            color: #58687a;
            line-height: 1.8;
        }

        .contact-intro-block {
            margin-bottom: 28px;
            padding-bottom: 24px;
            border-bottom: 1px solid #edf1f6;
        }

        .contact-intro-block h2 {
            font-size: 1.45rem;
            color: #101d33;
            margin-bottom: 10px;
        }

        .contact-intro-block p {
            color: #5d6d7f;
            line-height: 1.85;
            margin-bottom: 0;
        }

        .contact-map-frame {
            margin-top: 28px;
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.06);
        }

        .contact-map-frame iframe {
            width: 100%;
            min-height: 420px;
            border: 0;
            display: block;
        }

        @media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }


/* resources/views/website/pages/contact/faq.blade.php */
.faq-group + .faq-group {
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid #edf1f6;
        }

        .faq-group-title {
            font-size: 1.35rem;
            color: #101d33;
            margin-bottom: 16px;
        }

        .faq-accordion {
            display: grid;
            gap: 14px;
        }

        .faq-card {
            border-radius: 22px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
            overflow: hidden;
        }

        .faq-card summary {
            list-style: none;
            cursor: pointer;
            padding: 20px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: #101d33;
            font-weight: 700;
            line-height: 1.6;
        }

        .faq-card summary::-webkit-details-marker { display: none; }

        .faq-card[open] summary {
            border-bottom: 1px solid #ebeff5;
        }

        .faq-card-body {
            padding: 20px 22px 22px;
            color: #556477;
            line-height: 1.85;
        }


/* resources/views/website/pages/resources/publication.blade.php */
.post-page {
            background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 28%);
        }

        .post-wrap {
            padding: 72px 0 110px;
        }

        .post-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 30px;
            align-items: start;
        }

        .post-main,
        .post-sidebar {
            border-radius: 30px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 20px 60px rgba(10, 23, 39, 0.06);
        }

        .post-main {
            padding: 40px 42px 46px;
        }

        .post-sidebar {
            padding: 24px;
            position: sticky;
            top: 24px;
        }

        .post-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .post-title {
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: #101d33;
            margin-bottom: 18px;
        }

        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            padding-bottom: 20px;
            margin-bottom: 26px;
            border-bottom: 1px solid #edf1f6;
            color: #697789;
            font-size: 0.96rem;
        }

        .post-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .post-featured-image {
            margin-bottom: 30px;
            border-radius: 24px;
            overflow: hidden;
            background: #eef3f8;
        }

        .post-featured-image img {
            width: 100%;
            display: block;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .post-body {
            color: #4f5f72;
            font-size: 1.04rem;
            line-height: 1.95;
        }

        .post-body > * + * {
            margin-top: 1.15rem;
        }

        .post-body h1,
        .post-body h2,
        .post-body h3,
        .post-body h4,
        .post-body h5,
        .post-body h6 {
            color: #101d33;
            line-height: 1.2;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }

        .post-body h2 { font-size: 2rem; }
        .post-body h3 { font-size: 1.6rem; }
        .post-body h4 { font-size: 1.25rem; }

        .post-body p,
        .post-body li,
        .post-body blockquote,
        .post-body div,
        .post-body span {
            line-height: inherit;
        }

        .post-body ul,
        .post-body ol {
            padding-left: 1.3rem;
        }

        .post-body li + li {
            margin-top: 0.45rem;
        }

        .post-body img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
        }

        .post-body blockquote {
            padding: 20px 22px;
            border-left: 4px solid #9a1818;
            background: #f8fafc;
            border-radius: 0 18px 18px 0;
            color: #425164;
        }

        .post-sidebar-block + .post-sidebar-block {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #edf1f6;
        }

        .post-sidebar-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .post-sidebar-title {
            font-size: 1.2rem;
            color: #101d33;
            margin-bottom: 14px;
        }

        .recent-news-list {
            display: grid;
            gap: 14px;
        }

        .recent-news-item {
            display: grid;
            grid-template-columns: 88px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
        }

        .recent-news-item img {
            width: 88px;
            height: 72px;
            object-fit: cover;
            border-radius: 14px;
        }

        .recent-news-item h3 {
            font-size: 0.98rem;
            line-height: 1.45;
            margin-bottom: 6px;
        }

        .recent-news-item h3 a {
            color: #12223a;
        }

        .recent-news-item span {
            color: #7a8795;
            font-size: 0.85rem;
        }

        .share-buttons {
            display: grid;
            gap: 10px;
        }

        .share-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            color: #12223a;
            font-weight: 600;
        }

        .share-button:hover {
            color: #9a1818;
        }

        @media (max-width: 991px) {
            .post-layout {
                grid-template-columns: 1fr;
            }

            .post-sidebar {
                position: static;
            }
        }

        @media (max-width: 767px) {
            .post-wrap {
                padding: 54px 0 84px;
            }

            .post-main,
            .post-sidebar {
                padding: 24px 18px;
                border-radius: 24px;
            }

            .post-featured-image {
                border-radius: 18px;
            }

            .post-title {
                font-size: 2rem;
            }
        }


/* resources/views/website/pages/academic/_layout.blade.php */
.academic-page {
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #f7f9fc 0%, #ffffff 38%);
        }

        .academic-shell {
            padding: 78px 0 110px;
        }

        .academic-hero {
            border-radius: 32px;
            padding: 44px 46px;
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
                linear-gradient(135deg, #0f1e39 0%, #132a4c 55%, #1a365f 100%);
            box-shadow: 0 26px 80px rgba(10, 23, 39, 0.14);
            color: #fff;
            margin-bottom: 32px;
        }

        .academic-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .academic-title {
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            color: #fff;
            margin-bottom: 14px;
        }

        .academic-intro {
            max-width: 68ch;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.85;
            margin-bottom: 0;
        }

        .academic-summary {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        .academic-summary-item {
            padding: 18px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .academic-summary-item span {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .academic-summary-item strong {
            display: block;
            color: #fff;
            font-size: 1.15rem;
            line-height: 1.45;
        }

        .academic-grid {
            display: grid;
            grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
            gap: 28px;
            align-items: start;
        }

        .academic-sidebar,
        .academic-content {
            border-radius: 30px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 20px 60px rgba(10, 23, 39, 0.06);
        }

        .academic-sidebar {
            padding: 26px;
            position: sticky;
            top: 24px;
        }

        .academic-sidebar-block + .academic-sidebar-block {
            margin-top: 22px;
            padding-top: 22px;
            border-top: 1px solid #edf1f6;
        }

        .academic-sidebar-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .academic-sidebar-title {
            font-size: 1.2rem;
            color: #101d33;
            margin-bottom: 14px;
        }

        .academic-nav-list,
        .academic-download-list {
            display: grid;
            gap: 10px;
        }

        .academic-nav-list a,
        .academic-download-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            color: #12223a;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            font-weight: 600;
        }

        .academic-nav-list a.is-active {
            background: #101d33;
            color: #fff;
            border-color: #101d33;
        }

        .academic-sidebar-note {
            color: #617080;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .academic-content {
            padding: 34px 36px;
        }

        .academic-richtext h2,
        .academic-richtext h3,
        .academic-richtext h4 {
            color: #101d33;
            margin-bottom: 14px;
        }

        .academic-richtext h2 {
            font-size: 2rem;
        }

        .academic-richtext h3 {
            font-size: 1.45rem;
            margin-top: 28px;
        }

        .academic-richtext h4 {
            font-size: 1.1rem;
            margin-top: 18px;
        }

        .academic-richtext p,
        .academic-richtext li {
            color: #536274;
            line-height: 1.9;
        }

        .academic-richtext ul,
        .academic-richtext ol {
            padding-left: 1.25rem;
            margin-bottom: 1rem;
        }

        .academic-richtext img {
            width: 100%;
            border-radius: 22px;
            display: block;
            box-shadow: 0 16px 50px rgba(10, 23, 39, 0.08);
        }

        .academic-image-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin: 24px 0;
        }

        .academic-section-card {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #edf1f6;
        }

        @media (max-width: 991px) {
            .academic-shell {
                padding: 58px 0 84px;
            }

            .academic-hero {
                padding: 32px 28px;
            }

            .academic-summary {
                grid-template-columns: 1fr;
            }

            .academic-grid {
                grid-template-columns: 1fr;
            }

            .academic-sidebar {
                position: static;
            }
        }

        @media (max-width: 767px) {
            .academic-hero,
            .academic-sidebar,
            .academic-content {
                border-radius: 24px;
            }

            .academic-hero {
                padding: 26px 20px;
            }

            .academic-sidebar,
            .academic-content {
                padding: 22px 18px;
            }

            .academic-image-grid {
                grid-template-columns: 1fr;
            }

            .academic-title {
                font-size: 2rem;
            }
        }


/* resources/views/website/pages/about/news.blade.php */
.news-archive-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 26px;
        }

        .news-archive-card {
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-radius: 24px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.05);
        }

        .news-archive-card img {
            width: 100%;
            aspect-ratio: 4 / 2.8;
            object-fit: cover;
            display: block;
        }

        .news-archive-body {
            padding: 26px 26px 28px;
        }

        .news-archive-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #9a1818;
            font-size: .92rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .news-archive-card h2 {
            font-size: 1.4rem;
            line-height: 1.35;
            margin-bottom: 14px;
        }

        .news-archive-card h2 a { color: #101d33; }
        .news-archive-card p {
            color: #58687a;
            line-height: 1.85;
            margin-bottom: 22px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-archive-link { display: inline-flex; align-items: center; gap: 10px; color: #9a1818; font-weight: 700; }

        @media (max-width: 767px) { .news-archive-grid { grid-template-columns: 1fr; } }


/* resources/views/website/pages/organisation/staff_and_faculty.blade.php */
.staff-directory-page {
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #f7f9fc 0%, #ffffff 38%);
        }

        .staff-directory-shell {
            padding: 78px 0 110px;
        }

        .staff-directory-hero {
            border-radius: 32px;
            padding: 44px 46px;
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
                linear-gradient(135deg, #0f1e39 0%, #132a4c 55%, #1a365f 100%);
            box-shadow: 0 26px 80px rgba(10, 23, 39, 0.14);
            color: #fff;
            margin-bottom: 32px;
        }

        .staff-directory-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .staff-directory-title {
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            color: #fff;
            margin-bottom: 14px;
        }

        .staff-directory-intro {
            max-width: 68ch;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.85;
            margin-bottom: 0;
        }

        .staff-directory-nav {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 30px;
        }

        .staff-directory-anchor {
            display: block;
            padding: 18px 20px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .staff-directory-anchor span {
            display: block;
            font-size: 12px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.66);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .staff-directory-anchor strong {
            display: block;
            font-size: 1.05rem;
            line-height: 1.45;
            color: #fff;
        }

        .staff-section {
            border-radius: 30px;
            padding: 34px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 20px 60px rgba(10, 23, 39, 0.06);
        }

        .staff-section + .staff-section {
            margin-top: 28px;
        }

        .staff-section-head {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: end;
            margin-bottom: 28px;
        }

        .staff-section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .staff-section-title {
            font-size: 2rem;
            color: #101d33;
            margin-bottom: 0;
        }

        .staff-section-copy {
            max-width: 58ch;
            color: #617080;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .staff-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
        }

        .staff-card {
            height: 100%;
            overflow: hidden;
            border-radius: 24px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.05);
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .staff-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 60px rgba(10, 23, 39, 0.1);
        }

        .staff-card-image {
            background: linear-gradient(180deg, #eef3f8 0%, #dbe4ee 100%);
        }

        .staff-card-image img {
            width: 100%;
            aspect-ratio: 4 / 4.5;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .staff-card-body {
            padding: 22px 20px 24px;
        }

        .staff-card-name {
            font-size: 1.05rem;
            line-height: 1.45;
            color: #101d33;
            margin-bottom: 8px;
        }

        .staff-card-role {
            color: #5f6d7d;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .staff-card-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-weight: 700;
            font-size: 0.95rem;
        }

        @media (max-width: 1199px) {
            .staff-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 991px) {
            .staff-directory-shell {
                padding: 58px 0 84px;
            }

            .staff-directory-hero {
                padding: 32px 28px;
            }

            .staff-directory-nav {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .staff-section-head {
                flex-direction: column;
                align-items: start;
            }

            .staff-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .staff-directory-hero,
            .staff-section {
                border-radius: 24px;
            }

            .staff-directory-hero {
                padding: 26px 20px;
            }

            .staff-section {
                padding: 22px 18px;
            }

            .staff-directory-nav,
            .staff-grid {
                grid-template-columns: 1fr;
            }

            .staff-section-title {
                font-size: 1.65rem;
            }
        }


/* resources/views/website/pages/organisation/_board_layout.blade.php */
.organisation-board-page {
            background:
                radial-gradient(circle at top left, rgba(154, 24, 24, 0.08), transparent 24%),
                linear-gradient(180deg, #f7f9fc 0%, #ffffff 38%);
        }

        .organisation-board-shell {
            padding: 78px 0 110px;
        }

        .organisation-board-hero {
            position: relative;
            overflow: hidden;
            border-radius: 32px;
            padding: 44px 46px;
            background:
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 22%),
                linear-gradient(135deg, #0f1e39 0%, #132a4c 55%, #1a365f 100%);
            color: #fff;
            box-shadow: 0 26px 80px rgba(10, 23, 39, 0.14);
            margin-bottom: 34px;
        }

        .organisation-board-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .organisation-board-title {
            font-size: clamp(2.1rem, 4vw, 3.7rem);
            line-height: 1.04;
            letter-spacing: -0.04em;
            margin-bottom: 14px;
            color: #fff;
        }

        .organisation-board-intro {
            max-width: 64ch;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.85;
            margin-bottom: 0;
        }

        .organisation-board-summary {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 28px;
        }

        .organisation-board-stat {
            padding: 18px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .organisation-board-stat span {
            display: block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.68);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .organisation-board-stat strong {
            display: block;
            color: #fff;
            font-size: 1.2rem;
            line-height: 1.4;
        }

        .organisation-board-section {
            border-radius: 30px;
            padding: 34px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 20px 60px rgba(10, 23, 39, 0.06);
        }

        .organisation-board-section + .organisation-board-section {
            margin-top: 28px;
        }

        .board-section-head {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: end;
            margin-bottom: 28px;
        }

        .board-section-head .section-intro-copy {
            max-width: 58ch;
            color: #617080;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .board-section-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .board-section-title {
            color: #101d33;
            margin-bottom: 0;
            font-size: 2rem;
        }

        .board-feature-card {
            height: 100%;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid #ebeff5;
            box-shadow: 0 18px 54px rgba(10, 23, 39, 0.06);
            background: #fff;
        }

        .board-feature-image {
            background: linear-gradient(180deg, #eef3f8 0%, #dbe4ee 100%);
        }

        .board-feature-image img {
            width: 100%;
            aspect-ratio: 4 / 4.6;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .board-feature-body {
            padding: 26px 26px 30px;
        }

        .board-role-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .board-feature-name {
            font-size: 1.5rem;
            color: #101d33;
            margin-bottom: 8px;
        }

        .board-feature-position {
            color: #5f6d7d;
            line-height: 1.75;
            margin-bottom: 18px;
        }

        .board-feature-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-weight: 700;
        }

        .board-context-card {
            height: 100%;
            border-radius: 28px;
            padding: 30px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
        }

        .board-context-card p {
            color: #5e6c7c;
            line-height: 1.85;
        }

        .board-context-list {
            list-style: none;
            padding: 0;
            margin: 18px 0 0;
            display: grid;
            gap: 12px;
        }

        .board-context-list li {
            position: relative;
            padding-left: 22px;
            color: #546375;
            line-height: 1.75;
        }

        .board-context-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 11px;
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #9a1818;
        }

        .board-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 22px;
        }

        .board-member-card {
            height: 100%;
            overflow: hidden;
            border-radius: 24px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 16px 48px rgba(10, 23, 39, 0.05);
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }

        .board-member-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 22px 60px rgba(10, 23, 39, 0.1);
        }

        .board-member-image {
            background: linear-gradient(180deg, #eef3f8 0%, #dbe4ee 100%);
        }

        .board-member-image img {
            width: 100%;
            aspect-ratio: 4 / 4.4;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .board-member-body {
            padding: 22px 20px 24px;
        }

        .board-member-name {
            font-size: 1.05rem;
            line-height: 1.45;
            color: #101d33;
            margin-bottom: 8px;
        }

        .board-member-position {
            color: #5f6d7d;
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 16px;
        }

        .board-member-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-weight: 700;
            font-size: 0.95rem;
        }

        @media (max-width: 1199px) {
            .board-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 991px) {
            .organisation-board-shell {
                padding: 58px 0 84px;
            }

            .organisation-board-hero {
                padding: 32px 28px;
            }

            .organisation-board-summary {
                grid-template-columns: 1fr;
            }

            .board-section-head {
                flex-direction: column;
                align-items: start;
            }

            .board-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .organisation-board-hero,
            .organisation-board-section {
                border-radius: 24px;
            }

            .organisation-board-hero {
                padding: 26px 20px;
            }

            .organisation-board-section {
                padding: 22px 18px;
            }

            .board-grid {
                grid-template-columns: 1fr;
            }

            .board-section-title {
                font-size: 1.65rem;
            }
        }


/* resources/views/website/pages/about/gallery.blade.php */
.media-group + .media-group {
            margin-top: 42px;
            padding-top: 42px;
            border-top: 1px solid #edf1f6;
        }

        .media-group h2 {
            font-size: 1.6rem;
            color: #101d33;
            margin-bottom: 20px;
        }

        .media-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
        }

        .media-card {
            position: relative;
            overflow: hidden;
            border-radius: 22px;
            background: #eef3f8;
        }

        .media-card img {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
            display: block;
            transition: transform .25s ease;
        }

        .media-card:hover img { transform: scale(1.03); }

        .media-card-link {
            position: absolute;
            inset: auto 14px 14px auto;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 29, 51, 0.86);
            color: #fff;
        }

        @media (min-width: 1200px) { .media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
        @media (max-width: 991px) { .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
        @media (max-width: 767px) { .media-grid { grid-template-columns: 1fr; } }


/* resources/views/website/pages/about/careers.blade.php */
.career-list {
            display: grid;
            gap: 18px;
        }

        .career-card {
            border-radius: 24px;
            background: #f8fafc;
            border: 1px solid #ebeff5;
            overflow: hidden;
        }

        .career-card summary {
            list-style: none;
            cursor: pointer;
            padding: 22px 24px;
            font-size: 1.1rem;
            font-weight: 700;
            color: #101d33;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .career-card summary::-webkit-details-marker { display: none; }

        .career-card[open] summary {
            border-bottom: 1px solid #ebeff5;
        }

        .career-body {
            padding: 24px;
            color: #556477;
            line-height: 1.85;
        }


/* resources/views/website/pages/about/single-news.blade.php */
.post-page {
            background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 28%);
        }

        .post-wrap {
            padding: 72px 0 110px;
        }

        .post-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 320px;
            gap: 30px;
            align-items: start;
        }

        .post-main,
        .post-sidebar {
            border-radius: 30px;
            background: #fff;
            border: 1px solid #ebeff5;
            box-shadow: 0 20px 60px rgba(10, 23, 39, 0.06);
        }

        .post-main {
            padding: 40px 42px 46px;
        }

        .post-sidebar {
            padding: 24px;
            position: sticky;
            top: 24px;
        }

        .post-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(154, 24, 24, 0.08);
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .post-title {
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.08;
            letter-spacing: -0.04em;
            color: #101d33;
            margin-bottom: 18px;
        }

        .post-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            padding-bottom: 20px;
            margin-bottom: 26px;
            border-bottom: 1px solid #edf1f6;
            color: #697789;
            font-size: 0.96rem;
        }

        .post-meta span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .post-featured-image {
            margin-bottom: 30px;
            border-radius: 24px;
            overflow: hidden;
            background: #eef3f8;
        }

        .post-featured-image img {
            width: 100%;
            display: block;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }

        .post-body {
            color: #4f5f72;
            font-size: 1.04rem;
            line-height: 1.95;
        }

        .post-body > * + * {
            margin-top: 1.15rem;
        }

        .post-body h1,
        .post-body h2,
        .post-body h3,
        .post-body h4,
        .post-body h5,
        .post-body h6 {
            color: #101d33;
            line-height: 1.2;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }

        .post-body h2 { font-size: 2rem; }
        .post-body h3 { font-size: 1.6rem; }
        .post-body h4 { font-size: 1.25rem; }

        .post-body p,
        .post-body li,
        .post-body blockquote,
        .post-body div,
        .post-body span {
            line-height: inherit;
        }

        .post-body ul,
        .post-body ol {
            padding-left: 1.3rem;
        }

        .post-body li + li {
            margin-top: 0.45rem;
        }

        .post-body img {
            max-width: 100%;
            height: auto;
            border-radius: 18px;
        }

        .post-body blockquote {
            padding: 20px 22px;
            border-left: 4px solid #9a1818;
            background: #f8fafc;
            border-radius: 0 18px 18px 0;
            color: #425164;
        }

        .post-sidebar-block + .post-sidebar-block {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #edf1f6;
        }

        .post-sidebar-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #9a1818;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .post-sidebar-title {
            font-size: 1.2rem;
            color: #101d33;
            margin-bottom: 14px;
        }

        .recent-news-list {
            display: grid;
            gap: 14px;
        }

        .recent-news-item {
            display: grid;
            grid-template-columns: 88px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
        }

        .recent-news-item img {
            width: 88px;
            height: 72px;
            object-fit: cover;
            border-radius: 14px;
        }

        .recent-news-item h3 {
            font-size: 0.98rem;
            line-height: 1.45;
            margin-bottom: 6px;
        }

        .recent-news-item h3 a {
            color: #12223a;
        }

        .recent-news-item span {
            color: #7a8795;
            font-size: 0.85rem;
        }

        .share-buttons {
            display: grid;
            gap: 10px;
        }

        .share-button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 14px 16px;
            border-radius: 16px;
            background: #f8fafc;
            border: 1px solid #edf1f6;
            color: #12223a;
            font-weight: 600;
        }

        .share-button:hover {
            color: #9a1818;
        }

        @media (max-width: 991px) {
            .post-layout {
                grid-template-columns: 1fr;
            }

            .post-sidebar {
                position: static;
            }
        }

        @media (max-width: 767px) {
            .post-wrap {
                padding: 54px 0 84px;
            }

            .post-main,
            .post-sidebar {
                padding: 24px 18px;
                border-radius: 24px;
            }

            .post-featured-image {
                border-radius: 18px;
            }

            .post-title {
                font-size: 2rem;
            }
        }
a,
a *,
a:link,
a:visited,
a:hover,
a:focus,
a:active {
    text-decoration: none !important;
}


