:root {
    --green-deep: #1b4332;
    --green:      #2d6a4f;
    --green-light:#40916c;
    --gold:       #b8963e;
    --muted:      #718096;
    --rule:       #e2e8f0;
    --bg:         #f5f0e8;
}

/* ── SECTION ── */
.reports-section {
    padding: 64px 0 90px;
    background: var(--bg);
    min-height: 100vh;
    font-family: 'Source Sans 3', sans-serif;
}

/* ── CONTAINER ── */
.reports-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* ── HEADER ── */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 14px;
}

.section-header h2 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ── GRID ── */
.reports-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
}

/* ── CARD ── */
.report-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(27,67,50,0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(27,67,50,0.15);
}

/* ── COVER IMAGE ── */
.report-cover {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    line-height: 0;
}

.report-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ── PLACEHOLDER (no image) ── */
.cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}

.cover-placeholder::before {
    content: '';
    position: absolute;
    bottom: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 18px solid rgba(255,255,255,0.06);
}

.cover-placeholder::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    border: 12px solid rgba(255,255,255,0.06);
}

.cover-logo-mark {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    margin-bottom: 10px;
    line-height: 1;
}

.cover-year-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

.cover-main-year {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cover-stripe {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
}

/* ── CARD BODY ── */
.report-body {
    padding: 14px 14px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.report-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 4px;
}

.report-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.3;
    margin-bottom: 6px;
}

.report-period {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}

.report-period i {
    font-size: 0.65rem;
    color: var(--green-light);
}

.report-divider {
    height: 1px;
    background: var(--rule);
    margin: 10px 0;
}

/* ── DOWNLOAD BUTTON ── */
.report-footer {
    padding: 0 14px 14px;
}

.report-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 0;
    background: var(--green);
    color: #fff !important;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    box-sizing: border-box;
}

.report-download i {
    font-size: 0.72rem;
}

.report-download:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
}
/* ================================
   PUBLICATIONS SECTION
================================ */
.publications-section {
    padding: 60px 20px;
    justify-content: center;
}

.publications-container {
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.simple-hero p {
    text-align: center;
    color: var(--gold);
}
.pub-filters {
    display: flex;
    margin-top: -60px;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.pub-filter {
    padding: 8px 20px;
    border: 1px solid var(--rule);
    border-radius: 20px;
    background: none;
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.2s;
    justify-content: center;
    font-family: inherit;
}

.pub-filter:hover {
    border-color: var(--green);
    color: var(--green);
}

.pub-filter.active {
    background: var(--green);
    border-color: var(--green);
    color: white;
}

/* ================================
   GRID
================================ */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

/* ================================
   CARD
================================ */
.pub-card {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    border-bottom: 1px solid var(--rule);
    transition: background 0.2s;
}

.pub-card:nth-child(odd) {
    border-right: 1px solid var(--rule);
    padding-right: 40px;
}

.pub-card:nth-child(even) {
    padding-left: 40px;
}

.pub-card:hover {
    background: var(--cream);
}

/* Thumbnail */
.pub-thumb {
    flex-shrink: 0;
    width: 130px;
    height: 165px;
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
}

.pub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pub-thumb.no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.pub-thumb.no-img::after {
    content: "\f15b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--rule);
}

/* Body */
.pub-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pub-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.45;
    margin: 0;
}

.pub-body p {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    flex: 1;
}

/* Links */
.pub-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.pub-link {
    font-size: 0.875rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.pub-link:hover {
    text-decoration: underline;
}

.pub-sep {
    color: var(--muted);
    font-size: 0.8rem;
}

/* Hidden (filtered out) */
.pub-card.hidden {
    display: none;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .pub-grid {
        grid-template-columns: 1fr;
    }

    .pub-card:nth-child(odd) {
        border-right: none;
        padding-right: 24px;
    }

    .pub-card:nth-child(even) {
        padding-left: 24px;
    }

    .pub-thumb {
        width: 90px;
        height: 115px;
    }
}

@media (max-width: 480px) {
    .pub-card {
        flex-direction: column;
    }

    .pub-thumb {
        width: 100%;
        height: 180px;
    }
}
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .reports-container {
        padding: 0 20px;
    }
    .reports-shelf {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .reports-shelf {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
/* ================================
   STISA SECTION
================================ */
.stisa-section {
    padding: 40px 20px 60px;
    margin-top: 0;
}

.stisa-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Intro */
.stisa-intro {
    max-width: 100%;
    margin: 0 0 50px;
}

.stisa-intro p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text);
    text-align: justify;
}

.simple-hero h1 {
    color: var(--text);
    text-align: center;
}

/* ================================
   ROW LAYOUT
================================ */
.stisa-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--rule);
    align-items: start;
}

.stisa-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* ================================
   LEFT — image + caption
================================ */
.stisa-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rule);
    background: var(--cream);
}

.stisa-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.stisa-img-wrap.no-img {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stisa-img-wrap.no-img::after {
    content: "\f03e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
    color: var(--rule);
}

.stisa-caption {
    margin-top: 14px;
}

.stisa-caption p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text);
    text-align: justify;
}

.stisa-caption strong {
    color: var(--green-deep);
}

/* ================================
   RIGHT — blocks
================================ */
.stisa-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ================================
   BLOCK
================================ */
.stisa-block h3 {
    font-size: 1.05rem;
    color: var(--green);
    font-weight: 700;
    margin: 0 0 0 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
    display: block;
    letter-spacing: 0.3px;
}

/* ================================
   LIST
================================ */
.stisa-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.stisa-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.5;
    flex-wrap: wrap;
}

.stisa-list li:last-child {
    border-bottom: none;
}

.stisa-list li i {
    color: #e03c3c;
    font-size: 1rem;
    flex-shrink: 0;
}

/* PDF links */
.stisa-pdf {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.stisa-pdf:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Language links */
.stisa-langs {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.lang-en { color: #1a6ab5 !important; }
.lang-fr { color: #1a6ab5 !important; }
.lang-pt { color: #1a6ab5 !important; }

.sep {
    color: var(--muted);
    font-size: 0.8rem;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .stisa-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stisa-img-wrap img {
        height: 260px;
    }
}
/* ================================
   GIS SECTION
================================ */
.gis-section {
    padding: 60px 20px;
}

.gis-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gis-intro {
    max-width: 960px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.gis-section {
    padding: 0px 20px 60px;
}
.gis-intro p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text);
    text-align: justify;
}

/* ================================
   SPLIT PANELS
================================ */
.gis-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--rule);
    margin-bottom: 32px;
}

.gis-panel {
    display: flex;
    flex-direction: column;
}

.gis-panel:first-child {
    border-right: 1px solid var(--rule);
}

.gis-panel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gis-panel-body {
    padding: 28px 30px 34px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.gis-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f4ec;
    color: var(--green-deep);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.gis-panel-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 14px;
    line-height: 1.4;
}

.gis-panel-body p {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text);
    text-align: justify;
    margin-bottom: 12px;
}

.gis-hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 14px 0;
}

.gis-card-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gis-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.855rem;
    line-height: 1.7;
    color: var(--text);
}

.gis-card-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 7px;
    flex-shrink: 0;
}

/* ================================
   CLOSING BLOCK
================================ */
.gis-closing {
    background: var(--cream);
    border-radius: 14px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    border: 1px solid var(--rule);
    margin-bottom: 50px;
}

.gis-closing p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text);
    text-align: justify;
    margin: 0;
}

/* ================================
   PILLARS — image cards
================================ */
.gis-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gis-pillar {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--rule);
    transition: transform 0.25s, box-shadow 0.25s;
}

.gis-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

.gis-pillar-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.gis-pillar-body {
    padding: 22px 22px 26px;
    background: #fff;
}

.gis-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.gis-pillar-icon.gender { background: #e8f5e9; }
.gis-pillar-icon.gender i { color: var(--green); font-size: 1.1rem; }

.gis-pillar-icon.inclusion { background: #fff8e1; }
.gis-pillar-icon.inclusion i { color: var(--gold); font-size: 1.1rem; }

.gis-pillar-icon.safe { background: #fce4ec; }
.gis-pillar-icon.safe i { color: #e03c3c; font-size: 1.1rem; }

.gis-pillar-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
    margin: 0 0 10px;
}

.gis-pillar-body p {
    font-size: 0.845rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .gis-split {
        grid-template-columns: 1fr;
    }

    .gis-panel:first-child {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .gis-closing {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .gis-pillars {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BRIEFING NOTES SECTION
================================ */
.bn-section {
    padding: 40px 20px 80px;
}

.bn-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bn-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 14px;
    flex-wrap: wrap;
}

.bn-search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--rule);
    border-radius: 50px;
    padding: 10px 18px;
    background: #fff;
    flex: 1;
    max-width: 420px;
    transition: border-color 0.2s;
}

.bn-search:focus-within {
    border-color: var(--green);
}

.bn-search i {
    color: var(--muted);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.bn-search input {
    border: none;
    outline: none;
    font-size: 0.88rem;
    color: var(--text);
    width: 100%;
    background: none;
    font-family: inherit;
}

.bn-search input::placeholder {
    color: var(--muted);
}

.bn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.bn-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Image */
.bn-card-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

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

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

.bn-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.bn-no-img::after {
    content: "\f15b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: var(--rule);
}

/* Body */
.bn-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.bn-card-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    background: #e8f4ec;
    padding: 3px 8px;
    border-radius: 4px;
    width: fit-content;
}

.bn-card-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.45;
    margin: 0;
}

.bn-card-body p {
    font-size: 0.845rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.bn-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 8px;
}

.bn-date {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.bn-date i {
    color: var(--green);
    font-size: 0.68rem;
}

.bn-read {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
}

.bn-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.bn-load-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: 1px solid var(--rule);
    border-radius: 50px;
    background: #fff;
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.bn-load-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.bn-load-btn i {
    font-size: 0.75rem;
}

.ev-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}

.ev-spinner div {
    width: 36px;
    height: 36px;
    border: 3px solid var(--rule);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


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

    .bn-search {
        max-width: 100%;
    }
}

/* ================================
   NEWSLETTER HERO
================================ */
.nl-hero h1 {
    text-align: center;
    color: var(--green);
}

.nl-hero p {
    text-align: center;
    color: var(--gold);
}

.nl-section {
    padding: 50px 20px 80px;
}

.nl-container {
    max-width: 1100px;
    margin: 0 auto;
}

.nl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.nl-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}

.nl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.09);
}

.nl-card-cover {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--cream);
    flex-shrink: 0;
}

.nl-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s;
}

.nl-card:hover .nl-card-cover img {
    transform: scale(1.04);
}

/* Placeholder */
.nl-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
}

.nl-no-img::before {
    content: "RUFORUM";
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: absolute;
}

/* Bottom label on cover */
.nl-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.nl-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.nl-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    background: #e8f4ec;
    padding: 3px 9px;
    border-radius: 4px;
    width: fit-content;
}

.nl-card-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.4;
    margin: 0;
}

.nl-date {
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.nl-date i {
    color: var(--green);
    font-size: 0.68rem;
}

.nl-desc {
    font-size: 0.845rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.nl-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.nl-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    flex: 1;
    justify-content: center;
}

.nl-btn-solid:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
}

.nl-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1px solid var(--rule);
    color: var(--green-deep);
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
}

.nl-btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}

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

/* ================================
   AWARDS HERO
================================ */
.awards-hero h1 {
    text-align: center;
}

.awards-hero p {
    text-align: center;
    color: var(--gold);
}

/* ================================
   AWARDS SECTION
================================ */
.awards-section {
    padding: 50px 20px 80px;
}

.awards-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ================================
   AWARD BLOCK
================================ */
.award-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.25s;
}

.award-block:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.award-block-left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rule);
}

.award-img-wrap {
    width: 100%;
    flex: 1;
    object-fit:contain;
    overflow: hidden;
    background: var(--cream);
}

.award-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.award-block:hover .award-img-wrap img {
    transform: scale(1.03);
}

.award-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.award-no-img::after {
    content: "\f091";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--rule);
}

.award-block-info {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px 24px;
    flex: 1;
}

.award-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.award-block-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-deep);
    margin: 0 0 6px;
    line-height: 1.35;
}

.award-block-info p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.award-block-right {
    display: flex;
    flex-direction: column;
    padding: 22px 24px;
    gap: 12px;
}

.award-links-header {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}

.award-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.award-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--rule);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    background: #fff;
}

.award-link:hover {
    background: var(--cream);
    border-color: var(--green);
    transform: translateX(3px);
}

.award-link:hover i {
    color: var(--green);
}

.award-link-year {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--green);
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
    min-width: 36px;
    text-align: center;
}

.award-link-label {
    font-size: 0.855rem;
    font-weight: 500;
    color: var(--green-deep);
    flex: 1;
}

.award-link i {
    font-size: 0.72rem;
    color: var(--muted);
    margin-left: auto;
    flex-shrink: 0;
    transition: color 0.2s;
}

.award-link.more-info {
    background: var(--cream);
    border-color: var(--gold);
}

.award-link.more-info .award-link-label {
    color: var(--gold);
}

.award-link.more-info i {
    color: var(--gold);
}

@media (max-width: 768px) {
    .award-block {
        grid-template-columns: 1fr;
    }

    .award-block-left {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .award-img-wrap {
        height: 180px;
    }
}
/* ================================
   HERO
================================ */
.membership-hero h1 {
    text-align: center;
}

.membership-hero p {
    text-align: center;
    color: var(--gold);
}

/* ================================
   SECTION
================================ */
.membership-section {
    padding: 60px 20px 80px;
}

.membership-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

/* ================================
   EYEBROW + HEADERS
================================ */
.mem-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.mem-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.mem-section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.mem-section-header p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   INTRO — 2 column
================================ */
.membership-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.membership-intro-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.35;
    margin-bottom: 16px;
}

.membership-intro-text p {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 14px;
    text-align: justify;
}

/* Benefits list */
.membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--rule);
    border-radius: 10px;
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e8f4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    font-size: 0.95rem;
}

.benefit-text h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 3px;
}

.benefit-text p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ================================
   STEPS
================================ */
.membership-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.membership-steps::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--rule);
    z-index: 0;
}

.mem-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0 0 32px;
    position: relative;
    z-index: 1;
}

.mem-step:last-child {
    padding-bottom: 0;
}

.mem-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-deep);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--green-deep);
}

.mem-step-body {
    padding-top: 12px;
    flex: 1;
}

.mem-step-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.mem-step-body p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--muted);
    margin: 0;
}

.mem-step-body a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.mem-step-body a:hover {
    text-decoration: underline;
}

/* ================================
   GUIDELINES CARDS
================================ */
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guideline-card {
    border: 1px solid var(--rule);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.09);
}

.guideline-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--green-deep);
}

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

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

.guide-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-no-img::after {
    content: "\f1c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
}

.guideline-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
}

.guide-lang-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

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

.guideline-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 8px;
}

.guideline-card-body p {
    font-size: 0.845rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.guide-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.guide-download-btn:hover {
    background: var(--green-deep);
    transform: translateY(-1px);
}

/* ================================
   CTA STRIP
================================ */
.membership-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 40px;
    background: var(--green-light);
    border-radius: 14px;
    flex-wrap: wrap;
}

.cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201,151,58,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 200px;
}

.cta-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--gold);
    color: #fff;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.cta-btn:hover {
    background: #b8862e;
    transform: translateY(-1px);
}

.cta-btn i {
    font-size: 0.78rem;
    transition: transform 0.2s;
}

.cta-btn:hover i {
    transform: translateX(3px);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .membership-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .membership-cta {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .membership-steps::before {
        left: 27px;
    }
}