/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Patrick+Hand&display=swap');

/* ===== Global Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Patrick Hand', 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
    background: #fefae0;
    color: #2b2b2b;
    line-height: 1.4;
    font-size: 19px; /* base stays the same */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 20 45 25 Q35 30 30 45 Q25 30 15 25 Q25 20 30 5z' fill='%23a3b18a' opacity='0.15'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

/* ===== Shared link styles ===== */
.article-body a,
.article-preface a,
.featured a.read-more,
.news-card .read-more {
    color: #d35400;
    text-decoration: none;
    font-weight: bold;
}

/* Headings / list links */
.featured h2 a,
.news-card h3 a,
.more-news ul li a,
.widget ul li a,
.category-card .card-info h3 a {
    color: #2b2b2b;
    text-decoration: none;
    transition: color 0.3s;
}

    .featured h2 a:hover,
    .news-card h3 a:hover,
    .more-news ul li a:hover,
    .widget ul li a:hover,
    .category-card .card-info h3 a:hover {
        text-decoration: underline wavy #d35400;
        color: #d35400;
    }

/* ===== Header ===== */
header {
    background: #1e4d2b;
    color: #fefae0;
    padding: 16px 20px 10px;
    text-align: center;
    border-bottom: 6px solid #5c4033;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(135deg, #2d6a4f 25%, transparent 25%), linear-gradient(225deg, #2d6a4f 25%, transparent 25%);
    background-size: 30px 30px;
    background-position: 0 0, 0 0;
}

    header::before {
        content: "🐒";
        position: absolute;
        top: -18px;
        left: 10px;
        font-size: 2.5em;
        filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.4));
        animation: swing 2s ease-in-out infinite alternate;
        transform-origin: top center;
    }

    header::after {
        content: "🦜";
        position: absolute;
        top: -20px;
        right: 20px;
        font-size: 2.5em;
        filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.4));
        animation: swing 2s ease-in-out infinite alternate-reverse;
        transform-origin: top center;
    }

@keyframes swing {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.4em;
    letter-spacing: 2px;
    font-family: 'Bangers', 'Impact', sans-serif;
    text-shadow: 1px 1px 0 #000;
    color: #f5e5a2;
    margin-bottom: 4px;
}

    header h1 i {
        font-size: 0.95em; /* was 0.9em */
        color: #d4a373;
        margin-right: 6px;
        filter: drop-shadow(2px 2px 0 #000);
    }

header p {
    font-size: 0.95em; /* was 0.9em */
    margin-top: 0;
    font-family: 'Patrick Hand', cursive;
    color: #d4a373;
    font-style: italic;
    letter-spacing: 1px;
}

/* ===== Navigation ===== */
nav {
    background: #5c4033;
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #3e2a20;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.1) 2px, rgba(0, 0, 0, 0.1) 4px);
}

    nav a,
    nav .dropbtn {
        color: #fefae0;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.95em; /* was 0.85em */
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 5px 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        transition: all 0.3s;
    }

        nav a:hover,
        nav .dropbtn:hover {
            background: #d35400;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

.dropdown {
    display: inline-block;
    position: relative;
}

    /* invisible bridge for hover */
    .dropdown::before {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        z-index: 10;
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fefae0;
    min-width: 150px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    z-index: 200;
    border: 2px solid #5c4033;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
}

    .dropdown-content a {
        color: #2b2b2b;
        padding: 8px 14px;
        text-decoration: none;
        display: block;
        text-align: left;
        font-weight: bold;
        font-size: 0.95em; /* was 0.8em */
        background: #fffbea;
        margin: 0;
        border-bottom: 1px dashed #a3b18a;
        transition: background 0.2s;
    }

        .dropdown-content a:hover {
            background: #d4a373;
            color: #fff;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== Main Layout ===== */
.container {
    max-width: 100%;
    margin: 20px auto 20px;
    padding: 0 10px;
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.main-content {
    flex: 3.5;
    min-width: 0;
    order: 2;
}

.sidebar {
    flex: 1;
    min-width: 200px;
}

.left-sidebar {
    order: 1;
}

.sidebar:not(.left-sidebar) {
    order: 3;
}

/* ────── Common card / widget styling ────── */
.featured,
.news-card,
.more-news,
.sidebar .widget,
.contact-section,
.comments-section {
    background: #fffbea;
    border: 2px solid #5c4033;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px #d4a373;
    border-radius: 10px !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.featured,
.news-card {
    overflow: hidden;
}

.more-news,
.sidebar .widget {
    padding: 12px;
    margin-bottom: 15px;
}

.contact-section {
    padding: 20px;
    margin-bottom: 20px;
}

.comments-section {
    padding: 15px;
    margin-top: 25px;
}

/* ===== Featured block ===== */
.featured {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 15px;
    background: #ffefcc;
}

    .featured .img-link {
        flex: 0 0 40%;
        min-width: 200px;
        min-height: 200px;
        max-height: 360px;
        overflow: hidden;
    }

        .featured .img-link img {
            height: 100%;
            border-right: 2px solid #5c4033;
            display: block;
            width: 100%;
            object-fit: cover;
        }

    .featured .feat-text {
        padding: 12px 15px;
        flex: 1;
        min-width: 250px;
    }

        .featured .feat-text span {
            background: #d35400;
            color: #fff;
            padding: 3px 10px;
            font-size: 0.95em; /* was 0.75em */
            text-transform: uppercase;
            border-radius: 15px;
            font-family: 'Bangers', sans-serif;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 6px;
        }

    .featured h2 {
        font-size: 1.3em;
        margin: 6px 0;
        font-family: 'Bangers', sans-serif;
        color: #1e4d2b;
    }

    .featured p {
        color: #3e2a20;
        font-size: 0.95em; /* was 0.85em */
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .featured ul.featured-links {
        list-style: none;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 2px dashed #5c4033;
    }

        .featured ul.featured-links li {
            margin-bottom: 4px;
        }

            .featured ul.featured-links li a {
                font-size: 0.95em; /* was 0.8em */
                color: #2b2b2b;
                text-decoration: none;
                font-weight: bold;
                display: block;
                transition: color 0.3s;
            }

                .featured ul.featured-links li a:hover {
                    color: #d35400;
                    text-decoration: underline wavy #d35400;
                }

.read-more {
    font-size: 0.95em; /* was 0.85em */
    display: inline-block;
    margin-bottom: 6px;
    background: #1e4d2b;
    color: #fefae0;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Bangers', sans-serif;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

    .read-more:hover {
        background: #d35400;
        transform: scale(1.03);
    }

    .read-more i {
        margin-left: 4px;
        transition: transform 0.2s;
    }

    .read-more:hover i {
        transform: translateX(3px);
    }

/* ===== News grid & cards ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: rotate(0.5deg) scale(1.01);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.news-card .img-link {
    display: block;
    line-height: 0;
}

.news-card img {
    height: 130px;
    border-bottom: 2px solid #5c4033;
    width: 100%;
    object-fit: cover;
}

.news-card .card-body {
    padding: 10px;
}

    .news-card .card-body span {
        font-size: 0.95em; /* was 0.7em */
        color: #1e4d2b;
        text-transform: uppercase;
        font-weight: bold;
        font-family: 'Bangers', sans-serif;
        letter-spacing: 1px;
        background: #d4a373;
        padding: 2px 8px;
        border-radius: 8px;
        color: #fff; /* overrides the color above, intentional */
    }

.news-card h3 {
    font-size: 0.95em;
    margin: 6px 0;
    line-height: 1.2;
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
}

.news-card p {
    font-size: 0.95em; /* was 0.8em */
    color: #3e2a20;
    margin-bottom: 4px;
}

/* ===== More news list ===== */
.more-news h3,
.widget h3 {
    border-bottom: 2px dashed #5c4033;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 1em; /* stays */
    color: #1e4d2b;
    font-family: 'Bangers', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .widget h3 i {
        margin-right: 5px;
        color: #d35400;
    }

.more-news ul {
    columns: 2;
    column-gap: 20px;
    list-style: none;
}

    .more-news ul li {
        break-inside: avoid;
        border-bottom: 1px dashed #a3b18a;
        padding-bottom: 4px;
        margin-bottom: 5px;
        font-size: 0.95em; /* was 0.82em */
    }

        .more-news ul li a {
            display: block;
            padding: 3px 0;
        }

/* ===== Sidebar widgets ===== */
.widget ul {
    list-style: none;
}

    .widget ul li {
        padding: 6px 0;
        border-bottom: 1px dashed #a3b18a;
        font-size: 0.95em; /* was 0.82em */
    }

        .widget ul li a {
            color: #2b2b2b;
        }

            .widget ul li a:hover {
                color: #d35400;
            }

        .widget ul li .recent-date {
            color: #5c4033;
            margin-top: 3px;
            display: block;
            font-style: italic; /* font-size removed, inherits 0.95em from li */
        }

            .widget ul li .recent-date i {
                margin-right: 3px;
                color: #1e4d2b;
            }

/* ===== Social buttons ===== */
.social-buttons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
}

.social-btn,
.announcement-btn,
.ad-btn {
    color: #fff;
    padding: 6px 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95em; /* was 0.85em */
    font-family: 'Bangers', sans-serif;
    letter-spacing: 1px;
    border-radius: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    justify-content: center;
    font-weight: bold;
}

    .social-btn:hover,
    .announcement-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    }

.x-bg {
    background: #1e4d2b;
}

.tiktok-bg {
    background: #5c4033;
}

.telegram-bg {
    background: #d35400;
}

.youtube-bg {
    background: #ff0000;
}

.follow-text {
    font-size: 0.95em; /* was 0.8em */
    color: #5c4033;
    margin-bottom: 10px;
    font-style: italic;
}

/* ===== Trending ===== */
.trending-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trending-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #2b2b2b;
    text-decoration: none;
    transition: color 0.3s;
    background: #fffbea;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #a3b18a;
}

    .trending-item:hover {
        background: #f5e5a2;
        border-color: #d35400;
    }

    .trending-item img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 50%;
        border: 2px solid #5c4033;
    }

.trending-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trending-title {
    font-size: 0.95em; /* was 0.8em */
    line-height: 1.2;
    color: #1e4d2b;
    font-weight: bold;
}

.trending-sub {
    font-size: 0.95em; /* was 0.7em */
    color: #5c4033;
    font-style: italic;
}

/* ===== Footer ===== */
footer {
    background: #1e4d2b;
    color: #fefae0;
    padding: 25px 15px;
    margin-top: 25px;
    font-size: 0.95em; /* was 0.82em */
    border-top: 8px solid #5c4033;
    background-image: radial-gradient(circle at 20px 20px, #2d6a4f 2px, transparent 2px);
    background-size: 40px 40px;
}

    footer a {
        color: #f5e5a2;
        text-decoration: none;
        font-weight: bold;
    }

        footer a:hover {
            text-decoration: underline wavy #d35400;
        }

.footer-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 130px;
}

    .footer-col h4 {
        color: #f5e5a2;
        margin-bottom: 10px;
        font-size: 1em; /* stays */
        font-family: 'Bangers', sans-serif;
        letter-spacing: 2px;
    }

    .footer-col ul {
        list-style: none;
    }

        .footer-col ul li {
            margin-bottom: 6px;
        }

.footer-social {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-social li {
        margin: 0;
    }

    .footer-social .social-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        padding: 0;
        font-size: 1.1em;
        border-radius: 50% !important;
        background: #d4a373;
        color: #1e4d2b;
        transition: background 0.3s, transform 0.2s;
        font-family: 'Bangers', sans-serif;
        gap: 0;
    }

        .footer-social .social-btn:hover {
            background: #d35400;
            color: #fff;
            transform: rotate(10deg) scale(1.1);
        }

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #f5e5a2;
    font-size: 1em; /* was 0.82em – now equals parent footer font (0.95em) */
    font-family: inherit;
}

/* ===== Headline slider ===== */
.headline-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background: #000;
    margin-bottom: 15px;
    border: 3px solid #5c4033;
    border-radius: 12px !important;
}

    .headline-slider input[type="radio"] {
        display: none;
    }

.slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: calc(100% / 3);
    flex-shrink: 0;
}

    .slide img {
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        display: block;
    }

.headline-slider .controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

    .headline-slider .controls label {
        width: 12px;
        height: 12px;
        background: #fefae0;
        cursor: pointer;
        border: 2px solid #5c4033;
        border-radius: 50%;
        transition: background 0.3s;
    }

        #slide1:checked ~ .controls label[for="slide1"],
        #slide2:checked ~ .controls label[for="slide2"],
        #slide3:checked ~ .controls label[for="slide3"],
        .headline-slider .controls label:hover {
            background: #d35400;
            border-color: #fff;
        }

#slide1:checked ~ .slides {
    transform: translateX(0);
}

#slide2:checked ~ .slides {
    transform: translateX(-33.3333%);
}

#slide3:checked ~ .slides {
    transform: translateX(-66.6666%);
}

/* ===== Headlines module ===== */
.headlines-module .headline-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.headline-item {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    text-decoration: none;
    color: #fff;
    border-radius: 10px;
    border: 2px solid #5c4033;
}

    .headline-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.headline-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    padding: 20px 8px 8px;
}

.hl-title {
    display: block;
    font-weight: normal; /* was bold in one place, now normal everywhere */
    font-size: 0.95em; /* was 0.82em */
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-family: 'Bangers', sans-serif;
}

.hl-sub {
    display: block;
    font-size: 0.95em; /* was 0.7em */
    font-family: 'Patrick Hand', cursive;
    font-style: italic;
    color: #ddd;
    margin-top: 2px;
}

.headline-item:hover img {
    filter: brightness(0.85) contrast(1.1);
}

/* ===== Article specific ===== */
.article-headline h1 {
    font-family: 'Bangers', sans-serif;
    font-size: 2.2em;
    margin: 0 0 6px;
    color: #1e4d2b;
    text-shadow: 1px 1px 0 #d4a373;
}

.article-headline .subtitle {
    font-family: 'Patrick Hand', cursive;
    font-size: 1em;
    color: #5c4033;
    margin-bottom: 15px;
    font-style: italic;
}

.article-preface {
    font-size: 0.95em; /* was 0.85em */
    color: #5c4033;
    border-bottom: 2px dashed #a3b18a;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

    .article-preface .author {
        font-weight: bold;
        color: #1e4d2b;
    }

.article-body {
    line-height: 1.7;
    color: #2b2b2b;
}

    .article-body p {
        margin-bottom: 1em;
    }

.p1 {
    border-left: 5px solid #d35400;
    padding: 12px 20px;
    margin: 20px 0;
    background: #f5e5a2;
    font-style: italic;
    color: #1e4d2b;
    border-radius: 0 12px 12px 0;
    font-family: 'Patrick Hand', cursive;
    font-size: 1em; /* stays */
}

/* ===== Share buttons ===== */
.preface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
    gap: 8px;
}

    .preface-header p {
        margin: 0;
    }

.share-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .share-buttons span {
        font-size: 0.95em; /* was 0.8em */
        color: #5c4033;
        margin-right: 2px;
    }

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.95em; /* was 0.9em */
    border-radius: 50% !important;
    transition: transform 0.2s;
}

    .share-btn:hover {
        transform: rotate(15deg) scale(1.1);
    }

.facebook-bg {
    background: #3b5998;
}

.whatsapp-bg {
    background: #25d366;
}

/* ===== Category page ===== */
.category-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 2px dashed #5c4033;
    padding-bottom: 8px;
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.category-card {
    display: flex;
    gap: 10px;
    background: #fffbea;
    border: 2px solid #5c4033;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .category-card:hover {
        transform: scale(1.01);
        box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
    }

    .category-card img {
        width: 90px;
        height: 90px;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid #d4a373;
        border-radius: 8px;
    }

.card-info {
    flex: 1;
    min-width: 0;
}

    .card-info h3 {
        font-size: 1em; /* stays */
        margin: 0 0 4px;
        line-height: 1.2;
        font-family: 'Bangers', sans-serif;
    }

/* links inside h3 already styled globally */

.card-subtitle {
    font-size: 0.95em; /* was 0.8em */
    color: #5c4033;
    margin-bottom: 2px;
    font-style: italic;
}

.card-meta {
    font-size: 0.95em; /* was 0.75em */
    color: #777;
    margin-bottom: 2px;
}

    .card-meta strong {
        color: #1e4d2b;
    }

.card-preview {
    font-size: 0.95em; /* was 0.82em */
    color: #3e2a20;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* ===== More articles (list) ===== */
.more-articles {
    border-top: 2px dashed #5c4033;
    padding-top: 15px;
    margin-top: 15px;
}

    .more-articles h3 {
        font-family: 'Bangers', sans-serif;
        color: #1e4d2b;
        font-size: 1.2em;
        margin-bottom: 15px;
    }

.articles-row {
    border-bottom: 1px dashed #a3b18a;
    padding: 10px 0;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}

.main-title {
    font-weight: bold;
    font-size: 1.1em;
    color: #1e4d2b;
    text-decoration: none;
    font-family: 'Bangers', sans-serif;
    transition: color 0.3s;
}

    .main-title:hover {
        text-decoration: underline wavy #d35400;
        color: #d35400;
    }

.row-meta-header {
    font-size: 0.95em; /* was 0.75em */
    color: #5c4033;
    white-space: nowrap;
}

    .row-meta-header strong {
        color: #1e4d2b;
    }

.row-subtitle {
    font-size: 0.95em; /* was 0.85em */
    color: #3e2a20;
    margin-top: 3px;
    display: block;
    font-style: italic;
    font-family: 'Patrick Hand', cursive;
}

.row-preview {
    font-size: 0.95em; /* was 0.82em */
    color: #2b2b2b;
    margin-top: 4px;
    line-height: 1.4;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    clear: both;
    margin-top: 20px;
}

    .pagination a,
    .pagination span.dots {
        color: #2b2b2b;
        text-decoration: none;
        padding: 6px 14px;
        border: 2px solid #5c4033;
        font-size: 0.95em; /* was 0.85em */
        background: #fffbea;
        border-radius: 25px;
        font-weight: bold;
        transition: all 0.3s;
    }

        .pagination a.active {
            background: #1e4d2b;
            color: #fefae0;
            border-color: #1e4d2b;
        }

        .pagination a:hover:not(.active) {
            background: #d4a373;
            color: #fff;
        }

    .pagination span.dots {
        border: none;
        padding: 4px 6px;
        color: #555;
    }

/* ===== Search bar ===== */
.search-bar-container {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

    .search-bar-container input[type="search"] {
        flex: 1;
        padding: 10px 18px;
        font-size: 0.95em; /* was 0.9em */
        border: 2px solid #5c4033;
        background: #fffbea;
        color: #2b2b2b;
        font-family: 'Patrick Hand', cursive;
        border-radius: 25px;
        outline: none;
    }

        .search-bar-container input[type="search"]::placeholder {
            color: #888;
        }

    .search-bar-container button {
        padding: 10px 24px;
        background: #1e4d2b;
        color: #fefae0;
        border: none;
        font-weight: bold;
        font-size: 0.95em; /* was 0.9em */
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 6px;
        border-radius: 25px;
        font-family: 'Bangers', sans-serif;
        letter-spacing: 1px;
        transition: background 0.3s, transform 0.2s;
    }

        .search-bar-container button:hover {
            background: #d35400;
            transform: scale(1.03);
        }

.search-results {
    border-top: 2px dashed #5c4033;
    margin-top: 15px;
}

/* ===== Contact page ===== */
.contact-section h2 {
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
    font-size: 2em;
    margin-bottom: 15px;
    border-bottom: 2px dashed #5c4033;
    padding-bottom: 10px;
}

.contact-top h3 {
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
    margin: 15px 0 10px;
    font-size: 1.2em;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-notice {
    background: #f5e5a2;
    border: 1px dashed #d35400;
    padding: 10px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 0.95em; /* was 0.9em */
    color: #1e4d2b;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .contact-notice i {
        margin-right: 5px;
    }

.contact-form {
    margin-top: 15px;
}

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        font-family: 'Bangers', sans-serif;
        color: #1e4d2b;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 8px 12px;
        border: 2px solid #5c4033;
        border-radius: 8px;
        font-family: 'Patrick Hand', cursive;
        font-size: 0.95em; /* was 0.9em */
        background: #fff;
        outline: none;
        transition: border-color 0.3s;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #d35400;
        }

        .contact-form input:disabled,
        .contact-form textarea:disabled {
            background: #f0f0f0;
            color: #888;
            cursor: not-allowed;
        }

.submit-btn {
    background: #1e4d2b;
    color: #fefae0;
    border: none;
    padding: 10px 25px;
    font-family: 'Bangers', sans-serif;
    font-size: 1em; /* stays */
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

    .submit-btn:hover {
        background: #d35400;
    }

    .submit-btn:disabled {
        background: #888;
        cursor: not-allowed;
    }

.obfuscate-email a {
    color: #d35400;
    text-decoration: none;
    font-weight: bold;
}

    .obfuscate-email a:hover {
        text-decoration: underline;
    }

/* ===== Announcement & Ad containers ===== */
.announcement-image-container,
.ad-image-container {
    position: relative;
    overflow: hidden;
    display: block;
}

    .announcement-image-container img,
    .ad-image-container img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

/* ad button inside image container */
.ad-btn {
    background-color: #d35400;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.ad-image-container {
    border: 2px solid #5c4033;
    border-radius: 8px;
    overflow: hidden;
}

/* optional hover states – keep as is */
.ad-btn:hover {
    transform: none;
    box-shadow: none;
}

.ad-btn:hover {
    transform: translateX(-50%) translateY(-2px);
}

/* ===== HLS Audio Player ===== */
.audio-player-widget {
    background: #1e4d2b;
    color: #fefae0;
    border-color: #f5e5a2 !important;
    border-width: 2px;
    padding: 12px !important;
}

    .audio-player-widget h3 {
        color: #f5e5a2;
        border-bottom: 2px dashed #d4a373;
    }

    .audio-player-widget audio {
        background: #fefae0;
        border-radius: 25px;
        padding: 3px;
        margin-top: 8px;
    }

/* ── “You May Also Be Interested In” section ── */
.interested-section {
    background: #f5e5a2;
    border-top: 4px solid #5c4033;
    border-bottom: 4px solid #5c4033;
    padding: 30px 0;
    margin-top: 30px;
}

.interested-container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.interested-title {
    font-family: 'Bangers', sans-serif;
    font-size: 1.8em;
    color: #1e4d2b;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.interested-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* ===== Comments ===== */
.comments-title {
    border-bottom: 2px dashed #5c4033;
    padding-bottom: 8px;
    font-size: 1.1em;
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.comment-item {
    display: flex;
    gap: 10px;
    border-bottom: 1px dashed #a3b18a;
    padding-bottom: 10px;
}

    .comment-item:last-child {
        border-bottom: none;
    }

.comment-avatar i {
    font-size: 2.2em;
    color: #5c4033;
}

.comment-body p:not(.comment-author) {
    font-size: 0.95em; /* this is the target minimum */
}

.comment-author {
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
    font-weight: 300;
    letter-spacing: 0.5px;
    /* inherits body font-size (19px) – okay */
}

.comment-date {
    font-style: italic;
    font-size: 0.95em; /* was 0.8em */
    color: #777;
    margin-left: 6px;
    font-family: 'Patrick Hand', cursive;
}

.comment-form h4 {
    margin-bottom: 10px;
    font-family: 'Bangers', sans-serif;
    color: #1e4d2b;
}

.comment-form .form-group {
    margin-bottom: 10px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #5c4033;
    border-radius: 8px;
    font-family: 'Patrick Hand', cursive;
    font-size: 0.95em; /* was 0.85em */
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

    .comment-form input:focus,
    .comment-form textarea:focus {
        border-color: #d35400;
    }

.submit-comment {
    background: #1e4d2b;
    color: #fefae0;
    border: none;
    padding: 8px 20px;
    font-family: 'Bangers', sans-serif;
    font-size: 0.95em; /* was 0.9em */
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s;
}

    .submit-comment:hover {
        background: #d35400;
    }

/* ===== Ad card overrides ===== */
.ad-card {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
}

    .ad-card h3 {
        position: absolute;
        top: 10px;
        left: 10px;
        z-index: 5;
        margin: 0;
        padding: 4px 14px;
        background: rgba(30, 77, 43, 0.85);
        color: #fefae0;
        font-size: 0.95em; /* was 0.8em */
        border-radius: 15px;
        border-bottom: none;
        font-family: 'Bangers', sans-serif;
        letter-spacing: 1px;
    }

    .ad-card .ad-image-container {
        border: none;
        border-radius: 0;
        overflow: visible;
    }

    .ad-card .ad-btn {
        z-index: 6;
    }

/* ===== Font thinning for all Bangers titles (merged) ===== */
.comment-author,
header h1,
.featured h2,
.news-card h3,
.category-title,
.category-card h3,
.category-card .card-info h3 a,
.more-news h3,
.widget h3,
.interested-title,
.comments-title,
.more-articles h3,
.article-headline h1,
.main-title {
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== Utility ===== */
.text-center {
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
    .interested-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .container {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-content {
        flex: 1 1 100%;
        order: 0;
        width: 100%;
    }

    .sidebar {
        flex: 1 1 45%;
        min-width: 200px;
    }

    .left-sidebar {
        order: -1;
    }

    .container.article-layout .left-sidebar {
        order: 1;
    }

    .sidebar:not(.left-sidebar) {
        order: 2;
    }
}

@media (max-width: 650px) {
    .category-grid,
    .interested-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        flex-direction: column;
        align-items: center;
    }

        .category-card img {
            width: 100%;
            height: auto;
            max-height: 180px;
        }

    .row-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .row-meta-header {
        margin-top: 2px;
    }
}

@media (max-width: 600px) {
    .container {
        flex-direction: column;
    }

    .main-content,
    .sidebar {
        min-width: 0;
        width: 100%;
        flex: none;
    }

    .news-grid,
    .interested-grid {
        grid-template-columns: 1fr;
    }

    .more-news ul {
        columns: 1;
    }

    .featured {
        flex-direction: column;
    }

        .featured .img-link {
            flex: 0 0 100%;
            min-width: 100%;
            max-height: none;
            min-height: auto;
        }

            .featured .img-link img {
                height: auto;
                border-right: none;
                border-bottom: 2px solid #5c4033;
            }

    .social-links {
        flex-direction: column;
    }

        .social-links .social-btn {
            width: 100%;
            flex: none;
            justify-content: center;
        }
}
