:root {
    --deep-green: #0b5e2b;
    --light-green: #e8f5ec;
    --orange: #f28c28;
    --red: #c62828;
    --white: #ffffff;
    --dark: #222222;
    --border: #d6e6da;
}

body.public-page {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--light-green);
    color: var(--dark);
}

.site-header {
    background: var(--deep-green);
    color: var(--white);
    padding: 20px;
}

.site-title {
    margin: 0 0 12px;
}

.site-nav a {
    color: var(--white);
    margin-right: 18px;
    text-decoration: none;
    font-weight: bold;
}

.site-nav a:hover {
    color: var(--orange);
}

.site-main,
.article-main {
    max-width: 1150px;
    margin: 30px auto;
    padding: 0 20px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.article-card,
.article-detail {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.article-card-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: 18px;
}

.article-card-title a {
    color: var(--deep-green);
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--orange);
}

.article-card-meta,
.article-meta {
    color: #666;
    font-size: 14px;
}

.article-detail {
    padding: 28px;
}

.article-title {
    color: var(--deep-green);
}

.article-featured-image {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border: 4px solid var(--deep-green);
    border-radius: 10px;
    margin: 20px 0;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
}

.article-content-image {
    width: 100%;
    height: auto;
    border: 3px solid var(--deep-green);
    border-radius: 10px;
    margin-top: 20px;
}

.article-content-video {
    width: 100%;
    border-radius: 10px;
}

.article-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.whatsapp-share-btn {
    display: inline-block;
    background: var(--deep-green);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 30px;
}

.whatsapp-share-btn:hover {
    background: var(--orange);
}

@media (max-width: 768px) {
    .article-featured-image {
        max-height: 300px;
    }

    .article-detail {
        padding: 18px;
    }

    .site-nav a {
        display: inline-block;
        margin-bottom: 8px;
    }
}
.article-card-image-wrap {
    position: relative;
    min-height: 220px;
    background: #0b5e2b;
}

.article-card-thumbnail {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.article-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
}

.article-card-title-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.article-card-title-overlay a {
    color: #ffffff;
    text-decoration: none;
}

.article-card-title-overlay a:hover {
    color: #f00418;
}

.article-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.share-title {
    color: var(--deep-green);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.whatsapp-btn {
    background: #25D366;
}

.facebook-btn {
    background: #1877F2;
}

.twitter-btn {
    background: #000000;
}

.linkedin-btn {
    background: #0A66C2;
}

.telegram-btn {
    background: #229ED9;
}

.copy-btn {
    background: var(--deep-green);
}

.author-box,
.author-box,
.related-articles {
    margin-top: 45px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow:
        0 2px 10px rgba(0,0,0,.05);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.related-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 3px 12px rgba(0,0,0,.08);
    transition:
        transform .2s,
        box-shadow .2s;
}

.related-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 8px 22px rgba(0,0,0,.12);
}

.related-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4,
.related-card p {
    padding: 0 12px;
}

.related-card a {
    color: var(--deep-green);
    text-decoration: none;
}

.related-card a:hover {
    color: var(--orange);
}

.read-more-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 18px;
    background: var(--deep-green);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all .25s ease;
}

.read-more-btn:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.author-box {
    margin-top: 50px;
    padding: 28px;
    display: flex;
    gap: 22px;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

.author-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--deep-green);
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-label {
    margin: 0;
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.author-name {
    margin: 5px 0 8px;
    color: var(--deep-green);
    font-size: 22px;
}

.author-description {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 650px) {
    .author-box {
        align-items: flex-start;
        padding: 22px;
    }

    .author-avatar {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }
}

.top-story-section {
    margin-bottom: 40px;
}

.top-story-card {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.top-story-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
}

.top-story-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    color: var(--orange);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 12px;
}

.top-story-title {
    font-size: 36px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.top-story-title a {
    color: var(--deep-green);
    text-decoration: none;
}

.top-story-title a:hover {
    color: var(--orange);
}

.top-story-summary {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.section-heading {
    color: var(--deep-green);
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
    margin-bottom: 24px;
}

@media (max-width: 850px) {
    .top-story-card {
        grid-template-columns: 1fr;
    }

    .top-story-image {
        min-height: 280px;
    }

    .top-story-title {
        font-size: 28px;
    }

    .top-story-content {
        padding: 24px;
    }
}

.site-nav {
    background: var(--deep-green);
    padding: 14px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.site-nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.site-nav-links a:hover {
    color: var(--orange);
}

.site-search-form {
    display: flex;
    align-items: center;
}

.site-search-input {
    width: 250px;
    padding: 10px 14px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.site-search-btn {
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    background: var(--orange);
    color: white;
    border-radius: 0 5px 5px 0;
}

.site-search-btn:hover {
    opacity: .9;
}

@media (max-width: 850px) {

    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav-links {
        justify-content: center;
    }

    .site-search-form {
        width: 100%;
    }

    .site-search-input {
        flex: 1;
        width: auto;
    }
}

.header-top {
    max-width: 1280px;
    margin: auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.header-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-logo {
    width: 150px;
    height: 62px;
    object-fit: contain;
}

.site-title {
    margin: 0;
    color: var(--deep-green);
    font-size: 32px;
    line-height: 1;
}

.site-tagline {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
}

.header-ad-slot {
    width: 728px;
    height: 90px;
    border: 1px dashed #ccc;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.site-nav {
    background: var(--deep-green);
    padding: 12px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.site-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.site-nav-links a:hover {
    color: var(--orange);
}

.site-search-form {
    display: flex;
    align-items: center;
    min-width: 320px;
}

.site-search-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.site-search-btn {
    padding: 10px 14px;
    border: none;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 850px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-ad-slot {
        width: 100%;
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-search-form {
        min-width: 100%;
    }
}

.header-ad-slot {
    width: 728px;
    height: 90px;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.site-footer {
    margin-top: 60px;
    background: #111;
    color: #fff;
    padding: 35px 20px;
}

.footer-inner {
    max-width: 1280px;
    margin: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 18px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-copy {
    color: #aaa;
}

@media (max-width: 850px) {
    .header-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-ad-slot {
        width: 100%;
    }
}
.site-main {
    max-width: 1280px;
    margin: 35px auto;
    padding: 0 22px;
}

.top-story-section {
    margin-bottom: 45px;
}

.top-story-card {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0,0,0,.10);
}

.top-story-image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
}

.top-story-content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.top-story-title {
    font-size: 38px;
    line-height: 1.12;
    margin: 0 0 18px;
}

.top-story-title a {
    color: var(--deep-green);
    text-decoration: none;
}

.top-story-title a:hover {
    color: var(--orange);
}

.top-story-summary {
    color: #444;
    font-size: 17px;
    line-height: 1.7;
}

.section-heading {
    color: var(--deep-green);
    font-size: 26px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
    margin-bottom: 24px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.13);
}

.article-card-image-wrap {
    position: relative;
    height: 230px;
    background: var(--deep-green);
}

.article-card-thumbnail {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.article-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.08));
}

.article-card-title-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    margin: 0;
    font-size: 21px;
    line-height: 1.25;
}

.article-card-title-overlay a {
    color: #ffffff;
    text-decoration: none;
}

.article-card-title-overlay a:hover {
    color: var(--orange);
}

.article-card-body {
    padding: 20px;
}

.article-card-summary {
    color: #444;
    line-height: 1.65;
}

.article-card-meta {
    color: #777;
    font-size: 14px;
    margin: 15px 0 18px;
}

.read-more-btn {
    display: inline-flex;
    padding: 10px 18px;
    background: var(--deep-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
}

.read-more-btn:hover {
    background: var(--orange);
}

@media (max-width: 950px) {
    .top-story-card {
        grid-template-columns: 1fr;
    }

    .top-story-image {
        min-height: 300px;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .top-story-title {
        font-size: 28px;
    }

    .top-story-content {
        padding: 24px;
    }
}

.content-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: start;
}

.homepage-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.sidebar-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--deep-green);
    font-size: 22px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.category-count {
    background: var(--deep-green);
    color: #fff;
    min-width: 32px;
    text-align: center;
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 950px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .homepage-sidebar {
        position: static;
    }
}

.homepage-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-post-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #444;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.sidebar-post-link:hover {
    color: var(--orange);
}

.sidebar-post-count {
    background: var(--orange);
    color: #fff;
    border-radius: 14px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.newsletter-text {
    color: #666;
    line-height: 1.6;
}

.newsletter-input {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.newsletter-btn {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: var(--deep-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

.newsletter-btn:hover {
    background: var(--orange);
}

.breaking-news-ticker {
    max-width: 1280px;
    margin: 18px auto 0;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.breaking-label {
    background: var(--orange);
    color: #fff;
    padding: 9px 14px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 13px;
}

.breaking-items {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 4px;
}

.breaking-items a {
    color: var(--deep-green);
    text-decoration: none;
    font-weight: 700;
    margin-right: 35px;
}

.breaking-items a:hover {
    color: var(--orange);
}

@media (max-width: 700px) {
    .breaking-news-ticker {
        flex-direction: column;
        align-items: stretch;
    }
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #666;
    font-size: 15px;
    margin-top: 12px;
}

.article-meta span:not(:last-child)::after {
    content: "•";
    margin-left: 10px;
    color: #aaa;
}

.article-header {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.article-title {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.related-articles {
    margin-top: 50px;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.related-card-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.related-card-body {
    padding: 18px;
}

.related-card-title {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
}

.related-card-title a {
    color: var(--deep-green);
    text-decoration: none;
}

.related-card-title a:hover {
    color: var(--orange);
}

.related-card-summary {
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.read-more-small {
    padding: 8px 14px;
    font-size: 14px;
}

@media (max-width: 850px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

.site-nav {
    background: var(--deep-green);
    padding: 12px 22px;
}

.mobile-menu-toggle {
    display: none;
    width: 100%;
    padding: 12px 14px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.site-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.site-nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.site-nav-links a:hover {
    color: var(--orange);
}

.site-search-form {
    display: flex;
    align-items: center;
    min-width: 320px;
}

.site-search-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.site-search-btn {
    padding: 10px 14px;
    border: none;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 950px) {
    .mobile-menu-toggle {
        display: block;
    }

    .site-nav-content {
        display: none;
        margin-top: 12px;
        background: #ffffff;
        border-radius: 8px;
        padding: 14px;
    }

    .site-nav-content.is-open {
        display: block;
    }

    .site-nav-links {
        flex-direction: column;
        gap: 0;
    }

    .site-nav-links a {
        color: var(--deep-green);
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .site-search-form {
        margin-top: 14px;
        min-width: 100%;
        width: 100%;
    }
}

.article-share {
    margin-top: 45px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
}

.share-title {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--deep-green);
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    padding: 11px 16px;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.whatsapp-btn { background: #25D366; }
.facebook-btn { background: #1877F2; }
.twitter-btn { background: #000000; }
.telegram-btn { background: #229ED9; }
.copy-btn { background: var(--deep-green); }

.share-btn:hover {
    opacity: .88;
}

.article-body {
    font-size: 18px;
    line-height: 1.85;
    color: #222;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--deep-green);
    line-height: 1.25;
    margin-top: 36px;
    margin-bottom: 16px;
}

.article-body a {
    color: var(--deep-green);
    font-weight: 700;
}

.article-body a:hover {
    color: var(--orange);
}

.article-media-block {
    margin: 35px 0;
}

.article-content-image {
    width: 100%;
    height: auto;
    border: 4px solid var(--deep-green);
    border-radius: 12px;
    display: block;
}

.article-caption {
    margin-top: 10px;
    text-align: center;
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.article-body blockquote {
    margin: 35px 0;
    padding: 22px 28px;
    background: #f8f8f8;
    border-left: 5px solid var(--orange);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 10px;
}

@media (max-width: 650px) {
    .article-title {
        font-size: 30px;
    }

    .article-body {
        font-size: 16px;
        line-height: 1.75;
    }
}

.hidden-admin-dot {
    color: #222;
    text-decoration: none;
    font-size: 10px;
    opacity: 0.25;
}

.hidden-admin-dot:hover {
    opacity: 0.7;
    color: var(--orange);
}

.article-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 32px;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-sidebar .sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

@media (max-width: 950px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}
.article-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 32px;
    align-items: start;
}

.article-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-sidebar .sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

@media (max-width: 950px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

.sidebar-post-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
    color: inherit;
}

.sidebar-post-image {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    color: var(--deep-green);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

.sidebar-post-title:hover {
    color: var(--orange);
}

.sidebar-post-date,
.sidebar-post-views {
    color: #777;
    font-size: 13px;
}
.article-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    align-items: start;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 950px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.sidebar-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--deep-green);
    font-size: 22px;
    border-bottom: 3px solid var(--orange);
    padding-bottom: 10px;
}

.sidebar-post-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 18px;
}

.sidebar-post-image {
    width: 95px;
    height: 75px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1.4;
}

.sidebar-post-meta {
    margin-top: 6px;
    color: #777;
    font-size: 13px;
}

.public-page-hero {
    background: #ffffff;
    border-radius: 14px;
    padding: 42px;
    margin-bottom: 35px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.public-page-hero h1 {
    color: var(--deep-green);
    font-size: 42px;
    margin: 8px 0 12px;
}

.public-page-hero p {
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.team-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.team-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.team-photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 14px;
    background: var(--deep-green);
    color: #ffffff;
    font-size: 72px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-name {
    margin: 0;
    color: var(--deep-green);
    font-size: 28px;
}

.team-position {
    color: var(--orange);
    font-weight: 800;
    margin: 8px 0 18px;
}

.team-qualifications {
    color: #444;
    line-height: 1.6;
}

.team-biography {
    color: #333;
    line-height: 1.8;
}

.team-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.team-social-links a {
    background: var(--deep-green);
    color: #ffffff;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.team-social-links a:hover {
    background: var(--orange);
}

@media (max-width: 750px) {
    .team-card {
        grid-template-columns: 1fr;
    }

    .team-photo,
    .team-photo-placeholder {
        width: 100%;
        height: 300px;
    }

    .public-page-hero {
        padding: 28px;
    }

    .public-page-hero h1 {
        font-size: 32px;
    }
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
    align-items: start;
}

.contact-info-card,
.contact-form-card,
.map-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
}

.contact-info-card h2,
.contact-form-card h2 {
    color: var(--deep-green);
    margin-top: 0;
}

.contact-info-card p {
    line-height: 1.7;
    color: #444;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.contact-socials a {
    background: var(--deep-green);
    color: #ffffff;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.contact-socials a:hover {
    background: var(--orange);
}

.map-section {
    margin-top: 30px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    min-height: 350px;
    border: 0;
}

@media (max-width: 850px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-main {
    max-width: 1200px;
}

.contact-hero {
    background: linear-gradient(135deg, #ffffff, #f3faf6);
    border-radius: 16px;
    padding: 45px;
    margin-bottom: 32px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.contact-hero h1 {
    margin: 8px 0 14px;
    color: var(--deep-green);
    font-size: 44px;
    line-height: 1.1;
}

.contact-hero p {
    max-width: 820px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.contact-modern-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 30px;
    align-items: stretch;
}

.contact-details-panel {
    background: var(--deep-green);
    color: #ffffff;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

.contact-details-panel h2 {
    margin-top: 0;
    font-size: 28px;
}

.contact-intro {
    color: rgba(255,255,255,.86);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    padding: 16px;
}

.contact-info-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-info-item strong {
    line-height: 1.6;
    font-weight: 700;
}

.contact-form-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

.contact-form-heading h2 {
    margin-top: 0;
    color: var(--deep-green);
    font-size: 30px;
}

.contact-form-heading p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-modern-form .form-group {
    margin-bottom: 18px;
}

.contact-modern-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 700;
}

.contact-modern-form .form-control {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d8e4dc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.contact-modern-form .form-control:focus {
    border-color: var(--deep-green);
    box-shadow: 0 0 0 3px rgba(11,94,43,.10);
}

.contact-message-box {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: var(--deep-green);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    font-size: 16px;
}

.contact-submit-btn:hover {
    background: var(--orange);
}

.contact-details-panel .contact-socials a {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
}

@media (max-width: 900px) {
    .contact-modern-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        padding: 30px;
    }

    .contact-hero h1 {
        font-size: 34px;
    }
}

:root {
    --deep-green: #0b5e2b;
    --red: #c62828;
    --white: #ffffff;
    --dark: #222222;
    --muted: #666666;
    --light-bg: #f7f8f8;
    --border: #e5e5e5;
}

/* Replace orange usage globally going forward */
.site-nav a:hover,
.article-card-title a:hover,
.article-card-title-overlay a:hover,
.related-card a:hover,
.top-story-title a:hover,
.read-more-btn:hover,
.sidebar-post-title:hover,
.footer-links a:hover,
.article-body a:hover,
.hidden-admin-dot:hover {
    color: var(--red);
}

.read-more-btn:hover,
.newsletter-btn:hover,
.team-social-links a:hover,
.contact-socials a:hover,
.contact-submit-btn:hover {
    background: var(--red);
}

/* HEADER */
.site-header {
    background: var(--deep-green);
    color: var(--white);
    border-bottom: none;
    padding: 0;
}

.header-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Branding expands when no advert is present */
.site-branding {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.site-logo {
    width: 150px;
    height: 62px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
}

.site-title {
    margin: 0;
    color: var(--white);
    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;
}

.site-tagline {
    margin: 8px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 17px;
}

/* Header advert: no dashed placeholder */
.header-ad-slot {
    width: auto;
    height: auto;
    min-width: 0;
    border: none;
    background: transparent;
    color: inherit;
}

/* NAVIGATION */
.site-nav {
    background: var(--deep-green);
    padding: 0 22px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 3px 14px rgba(0,0,0,.12);
}

.site-nav-content {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.site-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    padding: 18px 13px;
    border-bottom: 3px solid transparent;
}

.site-nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,.10);
    border-bottom-color: var(--red);
}

/* Search floats right on desktop */
.site-search-form {
    margin-left: auto;
    display: flex;
    align-items: center;
    min-width: 320px;
}

.site-search-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    outline: none;
    border-radius: 6px 0 0 6px;
}

.site-search-btn {
    padding: 10px 16px;
    border: none;
    background: var(--red);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
    border-radius: 0 6px 6px 0;
}

.site-search-btn:hover {
    opacity: .9;
}

/* Mobile */
.mobile-menu-toggle {
    display: none;
    width: 100%;
    padding: 12px 14px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

@media (max-width: 950px) {
    .header-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-branding {
        justify-content: center;
    }

    .site-title {
        font-size: 34px;
    }

    .site-logo {
        width: 150px;
        height: 62px;
    }

    .mobile-menu-toggle {
        display: block;
        max-width: 1280px;
        margin: 0 auto;
    }

    .site-nav {
        padding: 12px 22px;
    }

    .site-nav-content {
        display: none;
        margin-top: 12px;
        background: #ffffff;
        border-radius: 10px;
        padding: 14px;
        min-height: auto;
    }

    .site-nav-content.is-open {
        display: block;
    }

    .site-nav-links {
        flex-direction: column;
        gap: 0;
    }

    .site-nav-links a {
        color: var(--deep-green);
        padding: 12px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    .site-nav-links a:hover {
        color: var(--red);
        background: transparent;
        border-bottom: 1px solid #e5e5e5;
    }

    .site-search-form {
        margin-top: 14px;
        min-width: 100%;
        width: 100%;
    }
}

/* ==========================================
   BREAKING NEWS
========================================== */

.breaking-news-ticker{

    max-width:1280px;
    margin:18px auto 25px;

    display:flex;
    align-items:center;

    background:#ffffff;

    border-radius:10px;

    overflow:hidden;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

}

.breaking-label{

    background:var(--red);

    color:#fff;

    font-weight:800;

    letter-spacing:.08em;

    text-transform:uppercase;

    padding:16px 22px;

    white-space:nowrap;

    font-size:14px;

}

.breaking-items{

    flex:1;

    overflow:hidden;

    white-space:nowrap;

    padding:0 20px;

}

.breaking-items a{

    color:var(--deep-green);

    font-weight:700;

    text-decoration:none;

    margin-right:45px;

    transition:.25s;

}

.breaking-items a:hover{

    color:var(--red);

}

.breaking-separator{
    color: var(--red);
    font-weight: 800;
    margin: 0 5px;
    user-select: none;
}

/* =======================================
   HERO SECONDARY STORIES
======================================= */

.hero-secondary{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

    margin-top:25px;

    margin-bottom:35px;

}

.hero-secondary-card{

    background:#ffffff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 4px 18px rgba(0,0,0,.08);

    transition:.25s;

}

.hero-secondary-card:hover{

    transform:translateY(-4px);

}

.hero-secondary-card a{

    text-decoration:none;

}

.hero-secondary-image{

    width:100%;

    height:180px;

    object-fit:cover;

    display:block;

}

.hero-secondary-content{

    padding:18px;

}

.hero-category{

    display:inline-block;

    background:var(--red);

    color:#ffffff;

    padding:5px 10px;

    border-radius:4px;

    font-size:12px;

    font-weight:700;

    margin-bottom:12px;

}

.hero-secondary-content h3{

    color:var(--deep-green);

    margin:0;

    line-height:1.4;

    font-size:18px;

}

.hero-secondary-content h3:hover{

    color:var(--red);

}

@media(max-width:950px){

    .hero-secondary{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .hero-secondary{

        grid-template-columns:1fr;

    }

}

.article-category-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:var(--deep-green);

    color:#ffffff;

    padding:6px 12px;

    border-radius:4px;

    font-size:12px;

    font-weight:800;

    z-index:2;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.section-view-all{

    color:var(--deep-green);

    font-weight:700;

    text-decoration:none;

}

.section-view-all:hover{

    color:var(--red);

}

.article-card-summary{

    display:-webkit-box;

   

    -webkit-box-orient:vertical;

    overflow:hidden;

}
/*==================================================
 HERO SECTION
==================================================*/

.hero-section{

    margin-bottom:40px;

}

.hero-main{

    display:grid;

    grid-template-columns:1.5fr 1fr;

    background:#ffffff;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 6px 24px rgba(0,0,0,.08);

}

.hero-main-image{

    width:100%;

    height:560px;

    object-fit:cover;

    display:block;

}

.hero-main-content{

    padding:38px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.hero-main-title{

    font-size:42px;

    line-height:1.15;

    margin:18px 0;

}

.hero-main-title a{

    color:var(--deep-green);

    text-decoration:none;

}

.hero-main-title a:hover{

    color:var(--red);

}

.hero-main-summary{

    line-height:1.8;

    color:#444;

    font-size:17px;

}

.hero-reading-time{

    margin:20px 0;

    color:#666;

    font-weight:600;

}

.hero-secondary-grid{

    margin-top:26px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

.hero-secondary-image-wrap{

    position:relative;

}

.hero-secondary-image{

    width:100%;

    height:190px;

    object-fit:cover;

    display:block;

}

.hero-secondary-content{

    padding:18px;

}

.hero-secondary-content h3{

    color:var(--deep-green);

    font-size:18px;

    line-height:1.4;

    margin:0;

}

.hero-secondary-content h3:hover{

    color:var(--red);

}

@media(max-width:950px){

    .hero-main{

        grid-template-columns:1fr;

    }

    .hero-main-image{

        height:320px;

    }

    .hero-secondary-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:650px){

    .hero-secondary-grid{

        grid-template-columns:1fr;

    }

    .hero-main-title{

        font-size:30px;

    }

}

.article-card-body{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:20px;

}

.article-card-summary{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

    min-height:54px;

}

/*====================================================
 HOMEPAGE FINAL PRESENTATION OVERRIDES
====================================================*/

:root {
    --deep-green: #0b5e2b;
    --red: #c62828;
    --white: #ffffff;
    --dark: #222222;
    --muted: #666666;
    --light-bg: #f7f8f8;
    --border: #e5e5e5;
}

/* MAIN HOMEPAGE LAYOUT */
.homepage-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    align-items: start;
}

.homepage-content {
    min-width: 0;
}

.homepage-sidebar {
    position: sticky;
    top: 85px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HERO */
.home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) 360px;
    gap: 24px;
    margin-bottom: 35px;
}

.hero-featured-card,
.hero-side-card,
.article-card,
.category-card,
.sidebar-widget {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,.08);
}

.hero-featured-image-link {
    display: block;
    position: relative;
    min-height: 520px;
    color: #fff;
    text-decoration: none;
}

.hero-featured-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-featured-overlay {
    position: absolute;
    inset: 0;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.15));
}

.hero-featured-overlay h1 {
    font-size: 42px;
    line-height: 1.12;
    margin: 18px 0 12px;
    color: #fff;
}

.hero-featured-overlay p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 760px;
}

.hero-meta {
    color: rgba(255,255,255,.85);
    font-weight: 600;
}

/* HERO SIDE */
.hero-side-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hero-side-card a {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.hero-side-card img {
    width: 120px;
    height: 105px;
    object-fit: cover;
}

.hero-side-content {
    padding: 12px 12px 12px 0;
}

.hero-side-content h3 {
    margin: 7px 0 6px;
    font-size: 16px;
    line-height: 1.35;
    color: var(--deep-green);
}

.hero-side-content h3:hover {
    color: var(--red);
}

.mini-category,
.article-category-badge {
    display: inline-block;
    background: var(--deep-green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 4px;
}

.mini-category.analysis,
.article-category-badge.analysis {
    background: var(--red);
}

/* LATEST NEWS */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin: 36px 0 22px;
}

.section-heading {
    margin: 0;
    color: var(--deep-green);
    font-size: 28px;
    border-bottom: 4px solid var(--red);
    padding-bottom: 8px;
}

.section-view-all {
    color: var(--deep-green);
    font-weight: 800;
    text-decoration: none;
}

.section-view-all:hover {
    color: var(--red);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card-image-wrap {
    position: relative;
    height: 230px;
    background: var(--deep-green);
}

.article-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
}

.article-card-thumbnail {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.article-card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.76), rgba(0,0,0,.08));
}

.article-card-title-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    margin: 0;
    font-size: 20px;
    line-height: 1.28;
}

.article-card-title-overlay a {
    color: #fff;
    text-decoration: none;
}

.article-card-title-overlay a:hover {
    color: var(--red);
}

.article-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card-summary {
    color: #444;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}

.article-card-meta {
    color: #777;
    font-size: 14px;
    margin: 14px 0 18px;
}

/* CATEGORY CAROUSEL */
.category-carousel-section {
    margin-top: 42px;
}

.category-carousel-wrap {
    position: relative;
}

.category-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 2px 14px;
}

.category-carousel::-webkit-scrollbar {
    height: 8px;
}

.category-carousel::-webkit-scrollbar-thumb {
    background: var(--deep-green);
    border-radius: 20px;
}

.category-card {
    min-width: 250px;
    max-width: 250px;
}

.category-card a {
    color: inherit;
    text-decoration: none;
}

.category-card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.category-card-body {
    padding: 15px;
}

.category-card-body h3 {
    margin: 0 0 8px;
    color: var(--deep-green);
    font-size: 17px;
    line-height: 1.35;
}

.category-card-body h3:hover {
    color: var(--red);
}

.category-card-body small {
    color: #777;
}

.carousel-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: var(--deep-green);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--red);
}

.carousel-left {
    left: -14px;
}

.carousel-right {
    right: -14px;
}

/* SIDEBAR */
.sidebar-widget {
    padding: 22px;
}

.sidebar-title {
    margin: 0 0 18px;
    color: var(--deep-green);
    font-size: 21px;
    border-bottom: 3px solid var(--red);
    padding-bottom: 9px;
}

.sidebar-post-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 16px;
}

.sidebar-post-card:last-child {
    margin-bottom: 0;
}

.sidebar-post-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-post-title {
    color: var(--deep-green);
    font-weight: 800;
    line-height: 1.35;
    font-size: 14px;
}

.sidebar-post-title:hover {
    color: var(--red);
}

.sidebar-post-meta {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

/* NEWSLETTER */
.newsletter-text {
    color: #666;
    line-height: 1.6;
}

.newsletter-input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 8px;
}

.newsletter-btn {
    width: 100%;
    margin-top: 12px;
    padding: 13px;
    border: none;
    border-radius: 8px;
    background: var(--deep-green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-btn:hover {
    background: var(--red);
}

/* ADVERTS */
.public-advert {
    margin: 28px 0;
    text-align: center;
}

.public-advert img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .homepage-layout {
        grid-template-columns: 1fr;
    }

    .homepage-sidebar {
        position: static;
    }

    .home-hero {
        grid-template-columns: 1fr;
    }

    .hero-side-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-featured-image,
    .hero-featured-image-link {
        min-height: 360px;
        height: 360px;
    }

    .hero-featured-overlay h1 {
        font-size: 30px;
    }
}

@media (max-width: 650px) {
    .article-grid,
    .hero-side-list {
        grid-template-columns: 1fr;
    }

    .hero-side-card a {
        grid-template-columns: 110px 1fr;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .carousel-left,
    .carousel-right {
        display: none;
    }
}




/* ===========================================
   MOST POPULAR FIRE MARKER
=========================================== */

.popular-post{
    display:flex;
    align-items:center;
    gap:12px;
}

.popular-fire{
    font-size:22px;
    width:28px;
    text-align:center;
    flex-shrink:0;
}

/*====================================================
 FOOTER FINAL
====================================================*/

.site-footer{

    background:var(--deep-green);

    color:#fff;

    margin-top:70px;

    border-top:4px solid var(--red);

}

.footer-container{

    max-width:1280px;

    margin:auto;

    padding:45px 25px;

    text-align:center;

}

.footer-brand h2{

    margin:0;

    font-size:34px;

    font-weight:900;

    letter-spacing:.04em;

}

.footer-nav,

.footer-secondary-nav,

.footer-social{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:26px;

    margin-top:28px;

}

.footer-nav a,

.footer-secondary-nav a,

.footer-social a{

    color:#fff;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.footer-nav a:hover,

.footer-secondary-nav a:hover,

.footer-social a:hover{

    color:#ffcccc;

}

.footer-copyright{

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.18);

    font-size:14px;

    color:rgba(255,255,255,.80);

}

@media(max-width:768px){

    .footer-brand h2{

        font-size:26px;

    }

    .footer-nav,

    .footer-secondary-nav,

    .footer-social{

        flex-direction:column;

        gap:14px;

    }

}

/*====================================================
 FIXED PUBLIC HEADER + MENU
====================================================*/

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: var(--deep-green) !important;
}

.site-nav {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
}

/* Push page content below fixed header */
body.public-page {
    padding-top: 190px !important;
}

@media (max-width: 950px) {
    body.public-page {
        padding-top: 230px !important;
    }
}

/* ==================================================
   FIX ONLY HEADER BRANDING, NOT MENU
================================================== */

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: var(--deep-green) !important;
}

/* Menu should scroll normally */
.site-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
}

/* Push content below fixed branding area */
body.public-page {
    padding-top: 125px !important;
}

/*====================================================
 ARTICLE VIEW FINAL
====================================================*/

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--deep-green);
    z-index: 999999;
}

.article-modern-header {
    text-align: left;
    border-bottom: none;
    padding-bottom: 10px;
}

.article-header-badge {
    position: static;
    margin-bottom: 16px;
}

.article-title {
    font-size: 46px;
    line-height: 1.12;
    color: var(--deep-green);
}

.article-featured-image {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border: 4px solid var(--deep-green);
    border-radius: 14px;
    margin: 24px 0 34px;
    box-shadow: 0 6px 24px rgba(0,0,0,.10);
}

.article-body {
    font-size: 18px;
    line-height: 1.9;
}

.related-card a {
    text-decoration: none;
    color: inherit;
}

.related-card-title {
    color: var(--deep-green);
}

.related-card-title:hover {
    color: var(--red);
}

.popular-post {
    align-items: center;
}

.popular-fire {
    font-size: 22px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

@media(max-width:650px) {
    .article-title {
        font-size: 32px;
    }
}

.reading-progress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 5px !important;
    width: 0;
    background: var(--red) !important;
    z-index: 9999999 !important;
}
.popular-post {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.popular-fire {
    width: 26px !important;
    min-width: 26px !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

#readingProgress {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 6px !important;
    width: 0;
    background: red !important;
    z-index: 2147483647 !important;
    display: block !important;
}


/*====================================================
 MEET OUR TEAM FINAL
====================================================*/

.team-intro {
    background: #ffffff;
    border-left: 6px solid var(--red);
    border-radius: 16px;
    padding: 42px;
    margin-bottom: 35px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.team-intro h1 {
    color: var(--deep-green);
    font-size: 44px;
    margin: 10px 0 16px;
}

.team-intro p {
    max-width: 850px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

.team-directory {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.team-profile-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    border-top: 4px solid var(--deep-green);
}

.team-profile-photo,
.team-profile-placeholder {
    width: 220px;
    height: 275px;
    border-radius: 14px;
}

.team-profile-photo {
    object-fit: cover;
    display: block;
}

.team-profile-placeholder {
    background: var(--deep-green);
    color: #ffffff;
    font-size: 76px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-profile-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 14px;
}

.team-profile-socials a {
    background: var(--deep-green);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

.team-profile-socials a:hover {
    background: var(--red);
}

.team-profile-content h2 {
    margin: 0;
    color: var(--deep-green);
    font-size: 30px;
}

.team-profile-position {
    color: var(--red);
    font-weight: 900;
    margin: 8px 0 18px;
}

.team-profile-qualifications {
    color: #444;
    line-height: 1.6;
}

.team-profile-bio {
    color: #333;
    line-height: 1.8;
    margin-top: 15px;
}

.team-inline-advert {
    margin: 8px 0;
}

.team-cta {
    margin-top: 45px;
    background: var(--deep-green);
    color: #ffffff;
    border-radius: 16px;
    padding: 38px;
    text-align: center;
}

.team-cta h2 {
    margin-top: 0;
    font-size: 30px;
}

.team-cta p {
    max-width: 760px;
    margin: 0 auto 22px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
}

.team-cta .read-more-btn {
    background: var(--red);
}

.team-cta .read-more-btn:hover {
    background: #ffffff;
    color: var(--deep-green);
}

@media(max-width:850px) {
    .team-profile-card {
        grid-template-columns: 1fr;
    }

    .team-profile-photo,
    .team-profile-placeholder {
        width: 100%;
        height: 330px;
    }

    .team-intro h1 {
        font-size: 34px;
    }
}

/*====================================================
 ABOUT US FINAL
====================================================*/

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 32px;
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border-top: 4px solid var(--deep-green);
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.about-card h2 {
    margin-top: 0;
    color: var(--deep-green);
    font-size: 26px;
}

.about-card p {
    color: #444;
    line-height: 1.8;
    font-size: 16px;
}

.about-card:nth-child(2),
.about-card:nth-child(4) {
    border-top-color: var(--red);
}

@media(max-width:800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/*====================================================
 404 PAGE
====================================================*/

.error-404-box {
    max-width: 760px;
    margin: 80px auto;
    background: #ffffff;
    text-align: center;
    border-radius: 18px;
    padding: 55px 35px;
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
    border-top: 6px solid var(--red);
}

.error-code {
    font-size: 92px;
    font-weight: 900;
    color: var(--deep-green);
    line-height: 1;
}

.error-404-box h1 {
    color: var(--deep-green);
    font-size: 36px;
    margin: 20px 0 12px;
}

.error-404-box p {
    color: #555;
    line-height: 1.7;
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 28px;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.error-secondary-btn {
    background: var(--red);
}

.error-secondary-btn:hover {
    background: var(--deep-green);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    background: var(--deep-green);
    min-width: 220px;
    top: 100%;
    left: 0;
    z-index: 9999;
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: var(--red);
}

/*====================================================
 FINAL PUBLIC HEADER / MENU / FOOTER FIX
====================================================*/

/* Header branding stays fixed */
.site-header {
    position: relative !important;
    background: var(--deep-green) !important;
    z-index: 9999 !important;
}

/* Only the branding row is fixed */
.header-top {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
    background: var(--deep-green) !important;
    padding: 8px 22px !important;
    box-shadow: 0 3px 12px rgba(0,0,0,.18);
}

/* Menu must scroll away */
.site-nav {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 5000 !important;
    margin-top: 92px !important;
    box-shadow: none !important;
}

/* Prevent fixed header from hiding content */
body.public-page {
    padding-top: 0 !important;
}

/* Breaking news must remain visible */
.breaking-news-ticker {
    margin-top: 18px !important;
}


/*====================================================
 MULTI-COLUMN CATEGORY DROPDOWN
====================================================*/

.nav-dropdown {
    position: relative !important;
}

.nav-dropdown-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 520px !important;
    max-height: 360px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: var(--deep-green) !important;
    padding: 14px !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.22) !important;
    z-index: 99999 !important;

    columns: 2;
    column-gap: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block !important;
}

.nav-dropdown-menu a {
    display: block !important;
    break-inside: avoid !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 12px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
}

.nav-dropdown-menu a:hover {
    background: var(--red) !important;
}

.nav-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}


/*====================================================
 COMPACT FOOTER
====================================================*/

.site-footer {
    margin-top: 28px !important;
}

.footer-container {
    padding: 16px 18px !important;
}

.footer-brand h2 {
    font-size: 22px !important;
    margin: 0 !important;
}

.footer-nav,
.footer-secondary-nav,
.footer-social {
    margin-top: 10px !important;
    gap: 14px !important;
}

.footer-copyright {
    margin-top: 12px !important;
    padding-top: 10px !important;
}


/*====================================================
 ABOUT PAGE RESPONSIVE FIX
====================================================*/

.about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 700px) {
    .nav-dropdown-menu {
        position: static !important;
        width: 100% !important;
        max-height: 300px !important;
        columns: 1 !important;
        margin-top: 8px !important;
    }

    .site-nav {
        margin-top: 84px !important;
    }
}

/* FULL-WIDTH FIXED HEADER TOP */
.header-top {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.site-branding {
    max-width: 1280px;
}

.header-ad-slot {
    display: none !important;
}
.header-ad-slot {
    display: none !important;
}
.article-content img,
.article-content video {
    display: block;
    max-width: 100%;
    height: auto;
}

.article-content figure {
    margin: 24px 0;
}

.article-content figcaption {
    margin-top: 8px;
    text-align: center;
    font-size: 14px;
}

/* ==================================================
   EDITORIAL POLICY PAGE
================================================== */

.policy-main {
    max-width: 1280px;
}

.policy-hero {
    background:
        linear-gradient(
            135deg,
            rgba(11, 94, 43, .98),
            rgba(17, 116, 58, .92)
        );
    color: #ffffff;
}

.policy-hero h1 {
    color: #ffffff;
}

.policy-hero p {
    color: rgba(255, 255, 255, .90);
}

.policy-hero .section-label {
    color: #ffffff;
    background: var(--red);
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.policy-navigation {
    position: sticky;
    top: 82px;
}

.policy-navigation-card {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.policy-anchor-list {
    display: flex;
    flex-direction: column;
}

.policy-anchor-list a {
    color: var(--deep-green);
    text-decoration: none;
    font-weight: 700;
    padding: 10px 0;
    border-bottom: 1px solid #e8eee9;
    line-height: 1.35;
}

.policy-anchor-list a:last-child {
    border-bottom: none;
}

.policy-anchor-list a:hover {
    color: var(--red);
}

.policy-content {
    min-width: 0;
}

.policy-section {
    scroll-margin-top: 90px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-left: 5px solid var(--deep-green);
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
}

.policy-section h2 {
    margin: 0 0 18px;
    color: var(--deep-green);
    font-size: 28px;
    line-height: 1.2;
}

.policy-section h3 {
    color: var(--deep-green);
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.policy-section p {
    color: #333333;
    line-height: 1.8;
    margin: 0 0 18px;
}

.policy-section ul {
    margin: 0 0 22px;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.65;
}

.policy-section li::marker {
    color: var(--red);
}

@media (max-width: 950px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-navigation {
        position: static;
    }

    .policy-navigation-card {
        max-height: none;
    }

    .policy-anchor-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 18px;
    }
}

@media (max-width: 650px) {
    .policy-section {
        padding: 22px;
    }

    .policy-section h2 {
        font-size: 24px;
    }

    .policy-anchor-list {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   ISOLATED HEADER MENU STYLES (Zero Bleed to Other Pages)
================================================== */

/* 1. Main menu row layout */
.header-nav-scope .header-menu-list {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* 2. Dropdown wrapper aligned with links */
.header-nav-scope .header-dropdown-wrap {
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
}

/* 3. Equal vertical & horizontal padding for top-level menu items */
.header-nav-scope .header-menu-list > a,
.header-nav-scope .header-dropdown-wrap > a {
    display: inline-flex !important;
    align-items: center !important;
    padding: 16px 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.header-nav-scope .header-menu-list > a:hover,
.header-nav-scope .header-dropdown-wrap > a:hover {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.10) !important;
}

/* 4. Dropdown Panel (Only appears under header topic button) */
.header-nav-scope .header-dropdown-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 480px !important;
    max-height: 320px !important;
    overflow-y: auto !important;
    background: var(--deep-green) !important;
    padding: 12px !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
    z-index: 99999 !important;
    columns: 2;
    column-gap: 14px;
}

.header-nav-scope .header-dropdown-wrap:hover .header-dropdown-menu {
    display: block !important;
}

/* 5. Sub-items inside the topic dropdown */
.header-nav-scope .header-dropdown-menu a {
    display: block !important;
    break-inside: avoid !important;
    color: #ffffff !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    background: transparent !important;
    border-bottom: none !important;
}

.header-nav-scope .header-dropdown-menu a:hover {
    background: var(--red) !important;
    color: #ffffff !important;
}

/* ==================================================
   STICKY MOBILE NAVIGATION BAR
================================================== */
@media (max-width: 950px) {
    /* Keeps the navigation bar stuck to the top of the screen when scrolling */
    .site-nav {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    }

    /* Allows the expanded mobile menu to scroll if items exceed screen height */
    .site-nav-content.is-open {
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
    }
}

/* ==================================================
   TOP-RIGHT MOBILE MENU BUTTON & DROPDOWN FIX
================================================== */
@media (max-width: 950px) {
    /* Container layout on mobile */
    .site-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important; /* Align contents to top-right */
        position: relative !important;
        padding: 10px 18px !important;
    }

    /* Top-Right Toggle Button */
    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: auto !important;          /* Fits button text length */
        margin-left: auto !important;     /* Pushes button to top-right */
        padding: 8px 16px !important;
        font-size: 15px !important;
        border-radius: 6px !important;
        background: var(--red) !important;
        color: #ffffff !important;
        cursor: pointer !important;
        z-index: 100000 !important;
    }

    /* Hidden dropdown container */
    .site-nav-content {
        display: none !important;
        position: absolute !important;
        top: 100% !important;             /* Floats directly under header bar */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        padding: 16px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
        border-radius: 0 0 10px 10px !important;
        box-sizing: border-box !important;
        z-index: 99999 !important;
    }

    /* Active state when button is clicked */
    .site-nav-content.is-open {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    /* Internal link stacking */
    .site-nav-links {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .site-nav-links > a,
    .nav-dropdown > a {
        color: var(--deep-green) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #e5e5e5 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    /* Search form full width */
    .site-search-form {
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 10px !important;
    }
}

/* ==================================================
   FLOATING TOP-RIGHT MOBILE NAVIGATION MENU
================================================== */
@media (max-width: 950px) {

    /* 1. Pin the Menu Button to Floating Top-Right Corner */
    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: 14px !important;
        right: 16px !important;
        z-index: 9999999 !important; /* Pushes button above all content and headers */
        background: var(--red, #c62828) !important;
        color: #ffffff !important;
        padding: 8px 16px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        border: none !important;
        border-radius: 20px !important; /* Pill-style floating button */
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
        cursor: pointer !important;
        width: auto !important;
    }

    /* 2. Hide Menu Panel By Default */
    .site-nav-content {
        display: none !important;
    }

    /* 3. Floating Dropdown Drawer (Appears directly below floating button) */
    .site-nav-content.is-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px !important;
        left: 16px !important;
        right: 16px !important;
        max-height: calc(85vh - 60px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        z-index: 9999998 !important;
    }

    /* 4. Link Stacking inside Floating Mobile Drawer */
    .site-nav-links,
    .header-menu-list {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
    }

    .site-nav-links > a,
    .nav-dropdown > a,
    .header-menu-list > a,
    .header-dropdown-wrap > a {
        color: var(--deep-green, #0b5e2b) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #e5e5e5 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        background: transparent !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    /* Mobile Sub-categories */
    .nav-dropdown-menu,
    .header-dropdown-menu {
        position: static !important;
        width: 100% !important;
        columns: 1 !important;
        background: #f2f7f4 !important;
        border-radius: 8px !important;
        padding: 6px 12px !important;
        margin: 6px 0 12px !important;
        box-shadow: none !important;
    }

    .nav-dropdown-menu a,
    .header-dropdown-menu a {
        color: var(--deep-green, #0b5e2b) !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        font-size: 14px !important;
    }

    /* Search Form inside Floating Drawer */
    .site-search-form {
        width: 100% !important;
        min-width: 0 !important;
        margin-top: 14px !important;
    }
}
/* ==================================================
   MOBILE MENU CLEANUP & VISIBILITY OVERRIDES
================================================== */
@media (max-width: 950px) {

    /* 1. REMOVE HORIZONTAL GREEN BAR / DESKTOP NAV STRIP */
    .site-nav,
    .header-nav-scope {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        min-height: 0 !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 2. FLOATING BUTTON: Top Right */
    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: 14px !important;
        right: 14px !important;
        z-index: 9999999 !important;
        background: var(--red, #c62828) !important;
        color: #ffffff !important;
        padding: 9px 18px !important;
        font-size: 14px !important;
        font-weight: 800 !important;
        border: none !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35) !important;
        cursor: pointer !important;
        width: auto !important;
        height: auto !important;
    }

    /* 3. MOBILE DRAWER: Hidden by default */
    .site-nav-content {
        display: none !important;
    }

    /* 4. MOBILE DRAWER: Open State */
    .site-nav-content.is-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px !important;
        right: 14px !important;
        left: 14px !important;
        max-height: calc(85vh - 60px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border: 2px solid var(--deep-green, #0b5e2b) !important;
        border-radius: 12px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        z-index: 9999998 !important;
        box-sizing: border-box !important;
    }

    /* 5. FORCE ALL LINKS & TEXT TO BE VISIBLE IN DRAWER */
    .site-nav-content.is-open,
    .site-nav-content.is-open * {
        opacity: 1 !important;
        visibility: visible !important;
        clip: auto !important;
        clip-path: none !important;
        text-indent: 0 !important;
    }

    .site-nav-links.header-menu-list {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
    }

    /* Main Navigation Links & Topics Toggle Link */
    .header-menu-list > a,
    .header-dropdown-wrap > a,
    .header-dropdown-toggle {
        color: #0b5e2b !important; /* VISIBLE DEEP GREEN TEXT */
        font-size: 16px !important;
        font-weight: 800 !important;
        line-height: 1.5 !important;
        padding: 12px 6px !important;
        border-bottom: 1px solid #e0e0e0 !important;
        text-decoration: none !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: transparent !important;
        height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .header-menu-list > a:hover,
    .header-dropdown-toggle:hover {
        color: var(--red, #c62828) !important;
    }

    /* 6. TOPICS DROPDOWN CONTROL (Strictly Hidden Until Clicked) */
    .header-dropdown-wrap {
        width: 100% !important;
        position: static !important;
        display: block !important;
    }

    /* Hide category sub-menu completely even when main drawer is open */
    .header-dropdown-menu,
    .site-nav-content.is-open .header-dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        background: #f2f7f4 !important;
        border-radius: 8px !important;
        padding: 6px 12px !important;
        margin: 6px 0 12px !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
        border: none !important;
    }

    /* ONLY show categories when 'is-active' class is explicitly toggled */
    .header-dropdown-wrap.is-active .header-dropdown-menu {
        display: block !important;
    }

    /* Category Dropdown Sub-links */
    .header-dropdown-menu a {
        color: #222222 !important; /* VISIBLE DARK TEXT */
        font-size: 14px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        display: block !important;
        text-decoration: none !important;
        background: transparent !important;
        height: auto !important;
    }

    .header-dropdown-menu a:last-child {
        border-bottom: none !important;
    }

    .header-dropdown-menu a:hover {
        color: var(--red, #c62828) !important;
    }

    /* 7. SEARCH FORM IN DRAWER */
    .site-search-form {
        display: flex !important;
        width: 100% !important;
        margin-top: 14px !important;
        gap: 8px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .site-search-input {
        flex: 1 !important;
        color: #222222 !important;
        background: #f8fbf9 !important;
        border: 1px solid #d0ded5 !important;
        padding: 10px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        height: auto !important;
    }

    .site-search-btn {
        background: var(--deep-green, #0b5e2b) !important;
        color: #ffffff !important;
        padding: 10px 16px !important;
        border: none !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
        height: auto !important;
    }
}

/* ==================================================
   MOBILE TEXT VISIBILITY & TAP-HIGHLIGHT FIX
================================================== */
@media (max-width: 950px) {

    /* 1. FORCE VISIBLE TEXT COLORS (Includes WebKit Fill Color for iOS) */
    .site-nav #siteNavContent a,
    .header-nav-scope .header-menu-list > a,
    .header-dropdown-toggle,
    .header-dropdown-toggle:link,
    .header-dropdown-toggle:visited,
    .header-dropdown-toggle:focus,
    .header-dropdown-toggle:active {
        color: #0b5e2b !important; /* DEEP GREEN TEXT */
        -webkit-text-fill-color: #0b5e2b !important; /* FORCES SAFARI/CHROME MOBILE TEXT */
        opacity: 1 !important;
        visibility: visible !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    /* Sub-category dropdown items inside Topics */
    .header-dropdown-menu a,
    .header-dropdown-menu a:link,
    .header-dropdown-menu a:visited,
    .header-dropdown-menu a:focus,
    .header-dropdown-menu a:active {
        color: #222222 !important; /* DARK NEUTRAL TEXT */
        -webkit-text-fill-color: #222222 !important;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    /* Hover states for mobile links */
    .site-nav #siteNavContent a:hover,
    .header-dropdown-toggle:hover,
    .header-dropdown-menu a:hover {
        color: var(--red, #c62828) !important;
        -webkit-text-fill-color: var(--red, #c62828) !important;
    }

    /* 2. REMOVE WHITE TAP HIGHLIGHT & FOCUS FLASH ON "TOPICS" */
    .header-dropdown-wrap,
    .header-dropdown-toggle,
    .header-menu-list a {
        -webkit-tap-highlight-color: transparent !important; /* REMOVES MOBILE TAP FLASH */
        outline: none !important;
    }

    .header-dropdown-wrap,
    .header-dropdown-wrap.is-active,
    .header-dropdown-toggle:focus,
    .header-dropdown-toggle:active {
        background-color: transparent !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* 3. SUB-MENU BACKGROUND (Only the category box has light background) */
    .header-dropdown-menu {
        background-color: #f2f7f4 !important;
        background: #f2f7f4 !important;
    }
}

/* ==================================================
   HIDE HEADER TOP / LOGO ON MOBILE SCREENS
================================================== */
@media (max-width: 950px) {

    /* 1. Hide the top header bar (Logo, Title, Tagline, Advert slot) on mobile */
    .header-top,
    .site-branding,
    .header-ad-slot {
        display: none !important;
    }

    /* 2. Remove space, background, and borders from the header wrapper */
    .site-header {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
    }

    /* 3. Add top spacing to page body so content isn't cut off */
    body {
        padding-top: 16px !important;
    }
}

/* ==================================================
   MOBILE TEXT VISIBILITY & TAP-HIGHLIGHT FIX
================================================== */
@media (max-width: 950px) {

    /* 1. FORCE VISIBLE TEXT COLORS (Includes WebKit Fill Color for iOS) */
    .site-nav #siteNavContent a,
    .header-nav-scope .header-menu-list > a,
    .header-dropdown-toggle,
    .header-dropdown-toggle:link,
    .header-dropdown-toggle:visited,
    .header-dropdown-toggle:focus,
    .header-dropdown-toggle:active {
        color: #0b5e2b !important; /* DEEP GREEN TEXT */
        -webkit-text-fill-color: #0b5e2b !important; /* FORCES SAFARI/CHROME MOBILE TEXT */
        opacity: 1 !important;
        visibility: visible !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    /* Sub-category dropdown items inside Topics */
    .header-dropdown-menu a,
    .header-dropdown-menu a:link,
    .header-dropdown-menu a:visited,
    .header-dropdown-menu a:focus,
    .header-dropdown-menu a:active {
        color: #222222 !important; /* DARK NEUTRAL TEXT */
        -webkit-text-fill-color: #222222 !important;
        opacity: 1 !important;
        visibility: visible !important;
        background-color: transparent !important;
        background: transparent !important;
    }

    /* Hover states for mobile links */
    .site-nav #siteNavContent a:hover,
    .header-dropdown-toggle:hover,
    .header-dropdown-menu a:hover {
        color: var(--red, #c62828) !important;
        -webkit-text-fill-color: var(--red, #c62828) !important;
    }

    /* 2. REMOVE WHITE TAP HIGHLIGHT & FOCUS FLASH ON "TOPICS" */
    .header-dropdown-wrap,
    .header-dropdown-toggle,
    .header-menu-list a {
        -webkit-tap-highlight-color: transparent !important; /* REMOVES MOBILE TAP FLASH */
        outline: none !important;
    }

    .header-dropdown-wrap,
    .header-dropdown-wrap.is-active,
    .header-dropdown-toggle:focus,
    .header-dropdown-toggle:active {
        background-color: transparent !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* 3. SUB-MENU BACKGROUND (Only the category box has light background) */
    .header-dropdown-menu {
        background-color: #f2f7f4 !important;
        background: #f2f7f4 !important;
    }
}

/* ==================================================
   HIDE HEADER TOP / LOGO ON MOBILE SCREENS
================================================== */
@media (max-width: 950px) {

    /* 1. Hide the top header bar (Logo, Title, Tagline, Advert slot) on mobile */
    .header-top,
    .site-branding,
    .header-ad-slot {
        display: none !important;
    }

    /* 2. Remove space, background, and borders from the header wrapper */
    .site-header {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
    }

    /* 3. Add top spacing to page body so content isn't cut off */
    body {
        padding-top: 16px !important;
    }
}
/* ==================================================
   SMART HIDE-ON-SCROLL MOBILE HEADER & NAVIGATION
================================================== */
@media (max-width: 950px) {

    /* 1. FIXED HEADER WITH SMOOTH SLIDE ANIMATION */
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform: translateY(0) !important; /* Visible by default */
        box-sizing: border-box !important;
    }

    /* 2. HIDE HEADER WHEN SCROLLING DOWN */
    .site-header.header-hidden {
        transform: translateY(-100%) !important; /* Slides completely off-screen */
    }

    /* Body padding so top content isn't overlapped initially */
    body {
        padding-top: 75px !important;
    }

    /* 3. COMPACT BRANDING BAR ON MOBILE */
    .header-top {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 14px !important;
        border-bottom: 1px solid #eef4f0 !important;
    }

    .site-branding {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .site-logo {
        max-height: 38px !important;
        width: auto !important;
    }

    .site-title {
        font-size: 16px !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }

    .site-tagline {
        display: none !important; /* Hides tagline on small screens for compactness */
    }

    .header-ad-slot {
        display: none !important;
    }

    /* 4. MOBILE MENU BUTTON */
    .site-nav {
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        min-height: 0 !important;
    }

    .mobile-menu-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--red, #c62828) !important;
        color: #ffffff !important;
        padding: 6px 14px !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        border: none !important;
        border-radius: 16px !important;
        cursor: pointer !important;
    }

    /* 5. MOBILE MENU DRAWER */
    .site-nav-content {
        display: none !important;
    }

    .site-nav-content.is-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 65px !important;
        right: 14px !important;
        left: 14px !important;
        max-height: calc(85vh - 65px) !important;
        overflow-y: auto !important;
        background: #ffffff !important;
        border: 2px solid var(--deep-green, #0b5e2b) !important;
        border-radius: 12px !important;
        padding: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
        z-index: 9999998 !important;
        box-sizing: border-box !important;
    }

    /* 6. LINK AND BUTTON VISIBILITY FIX */
    .header-menu-list > a,
    button.header-dropdown-toggle {
        color: #0b5e2b !important;
        -webkit-text-fill-color: #0b5e2b !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        padding: 10px 4px !important;
        border: none !important;
        border-bottom: 1px solid #e0e0e0 !important;
        text-decoration: none !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: transparent !important;
        width: 100% !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        outline: none !important;
    }

    .header-menu-list > a:hover,
    button.header-dropdown-toggle:hover {
        color: var(--red, #c62828) !important;
        -webkit-text-fill-color: var(--red, #c62828) !important;
    }

    /* 7. TOPICS DROPDOWN */
    .header-dropdown-wrap {
        width: 100% !important;
        position: static !important;
    }

    .header-dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        background: #f2f7f4 !important;
        border-radius: 8px !important;
        padding: 6px 12px !important;
        margin: 6px 0 10px !important;
        box-shadow: none !important;
        border: none !important;
        box-sizing: border-box !important;
    }

    .header-dropdown-wrap.is-active .header-dropdown-menu {
        display: block !important;
    }

    .header-dropdown-menu a {
        color: #222222 !important;
        -webkit-text-fill-color: #222222 !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 8px 0 !important;
        border-bottom: 1px solid #e0e0e0 !important;
        display: block !important;
        text-decoration: none !important;
        background: transparent !important;
    }

    .header-dropdown-menu a:last-child {
        border-bottom: none !important;
    }

    /* 8. SEARCH FORM */
    .site-search-form {
        display: flex !important;
        width: 100% !important;
        margin-top: 12px !important;
        gap: 6px !important;
    }

    .site-search-input {
        flex: 1 !important;
        color: #222222 !important;
        background: #f8fbf9 !important;
        border: 1px solid #d0ded5 !important;
        padding: 8px 10px !important;
        border-radius: 6px !important;
        font-size: 14px !important;
    }

    .site-search-btn {
        background: var(--deep-green, #0b5e2b) !important;
        color: #ffffff !important;
        padding: 8px 14px !important;
        border: none !important;
        border-radius: 6px !important;
        font-weight: 700 !important;
    }
}