body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    background-image: url('backg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;  
}

/*start of navbar main header*/
.main-header {
    background-color: white; 
    padding: 10px 0px; 
    display: flex;
    justify-content: center; 
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box; 
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px; 
}

.main-nav { 
    margin-left: auto; 
    margin-right: 30px; 
}

.header-school-name {
    color: #1b4d3e;
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: bold;
    margin-left: 10px;
    line-height: 1.2;
    word-break: break-word;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-cct-logo {
    height: 50px; 
    margin-right: 15px; 
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #1b4d3e;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
    background-color: transparent; 
    border-radius: 0; 
    font-size: 18px;
    font-family: 'Transcity', sans-serif;
}

.main-nav ul li a:hover {
    color: #f1c40f; 
    text-decoration: none;
}
/*End of navbar*/

/* hamburger na icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1b4d3e;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* dropdown na design */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1002;
    border-top: 3px solid #1b4d3e;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #1b4d3e !important;
    padding: 12px 16px !important;
    text-decoration: none;
    display: block;
    font-size: 16px !important;
    border-bottom: 1px solid #f1f1f1;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #f1c40f !important;
}

/* design ng dropdown sa mobile */
.dropdown:hover .dropdown-content {
    display: block;
}

.bottom-bar {
    background-color: #1b4d3e;
    width: 100%;
    min-height: 200px; 
    text-align: center;
    padding: 50px 20px 20px 20px;
    box-sizing: border-box;
    box-shadow: 0px 1px 15px rgba(29, 59, 22, 0.664);
}

.bottom-bar h1 {
    font-size: 50px;
    font-weight: bold; 
    margin: 0;         
    text-align: center; 
    color: white;
    font-family: "Montserrat", ui-sans-serif, system-ui,
            -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
            Helvetica Neue, Arial, Noto Sans, sans-serif,
            Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
            Noto Color Emoji; 
}

.bottom-bar p {
    font-size: 16px; 
    margin: 10px 0 0 0; 
    text-align: center; 
    color: white;
}

.latest-news-container {
    display: flex;
    flex-wrap: wrap;  
    justify-content: flex-start; 
    gap: 20px;  
    padding: 30px;
}

.latest-news {
    display: flex;              
    flex-direction: column;    
    justify-content: space-between; 
    background-color: #ffffff;
    width: calc((100% / 3) - 13.33px);
    min-height: 350px;    
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 30px;
    box-shadow: 0px 1px 4px rgba(29, 59, 22, 0.664);
    border-radius: 8px;
}

.latest-news p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: hsl(0, 0%, 30%);
}

.card-photo1 {
    width: 100%;
    height: 200px;           /* Fixed height */
    object-fit: cover;       /* Crops image to fill without stretching */
    border-radius: 8px;
    display: block;
    margin-bottom: 15px;
}
.news-card-date {
    font-size: 0.85rem;
    color: #1b4d3e;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.hidden-news {
    display: none;
}

.button-readmore {
    display: inline-block;
    padding: 8px 16px;
    background-color: #11502b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 15px;
    align-self: center; 
    box-shadow: 0 1px 2px rgb(117, 116, 58);
}

.button-readmore:hover {
    background-color: #27663f;
    transform: scale(1.01);
    box-shadow: 0 1px 2px rgb(117, 116, 58);
}

.news-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
    line-clamp: 2;           
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;       
    transition: all 0.3s ease;
}

.news-text.expanded {
    -webkit-line-clamp: unset; 
    line-clamp: unset;
    overflow: visible;
}

.loadmore-container {
    display: flex;
    justify-content: center;
}

.button-loadmore {
    display: inline-block;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    background-color: #f1c40f;
    color: whitesmoke;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 2px #161616;
    margin: 20px 0 50px 0;
    transition: 0.1s ease;
}

.button-loadmore:hover {
    background-color: #b6b434;
    transform: scale(1.04);
    box-shadow: 0 1px 2px rgb(117, 116, 58);
}

.top-header {
    background-color: #1b4d3e;
    color: white;
    padding: 8px 0;
    width: 100%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    box-sizing: border-box;
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.top-header-left, .top-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 15px;
}

.top-header-item {
    display: flex; 
    white-space: nowrap;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
}

.top-header-item i {
    color: #f1c40f; 
}

.main-footer-bottom {
    background-color: #1b4d3e;
    color: white;
    padding: 30px 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-column h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #f1c40f;
}

.footer-column p {
    margin: 5px 0;
    font-size: 0.9em;
}

.footer-logo {
    height: 60px;
}

.footer-powered-by {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8em;
}


@media (max-width: 992px) {
    
    .nav-separator {
            display: none;
        }

    .signin-btn-nav {
        display: block;
        text-align: center;
        margin: 10px 20px;
        width: calc(100% - 40px);
        box-sizing: border-box;
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-branding {
        justify-content: flex-start;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
    body {
        background-attachment: scroll;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
        z-index: 999;
        margin: 0;
    }

    .main-nav.nav-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .main-nav ul li {
        margin: 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 14px 20px;
        font-size: 16px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 4px solid #1b4d3e;
        margin-left: 20px;
        min-width: unset;
        display: none;
    }

    .dropdown.dropdown-open .dropdown-content {
        display: block;
    }

    .dropdown > a::after {
        content: ' ▾';
        font-size: 12px;
        opacity: 0.7;
    }

    .dropdown.dropdown-open > a::after {
        content: ' ▴';
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }

    .latest-news {
        width: calc((100% / 2) - 10px);
    }

    .bottom-bar h1 {
        font-size: 32px;
    }

    .bottom-bar p {
        font-size: 12px;
    }
    .header-content {
    justify-content: space-between;
}
}

/*for mobile responsiveness*/
@media (max-width: 576px) {
    .header-cct-logo,
    .header-lgu-logo {
        height: 40px;
        margin-right: 10px;
    }

    .header-school-name {
        font-size: 16px;
    }

    .latest-news {
        width: 100%;
        padding: 20px 15px;
    }

    .top-header-content {
        flex-direction: column; 
        align-items: center;
        gap: 10px;
    }

    .top-header-left, .top-header-right {
        width: 100%;           
        justify-content: center;
        padding-right: 0;
    }

    .top-header-item {
        white-space: normal;
        word-break: break-word;
        text-align: center;
    }

    .bottom-bar h1 {
        font-size: 24px;
    }

    .bottom-bar p {
        font-size: 10px;
    }

    .bottom-bar {
        padding: 30px 10px 15px 10px;
    }
    .map-container {
        height: 250px;
    }

            .system-footer {
        padding: 40px 20px 20px;
        text-align: center;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-branding {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-branding img {
        height: 40px;
    }

    .footer-links h4 {
        margin-top: 15px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.contact-form, .contact-info {
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.contact-form h2, .contact-info h2 {
    color: #1b4d3e;
    margin-bottom: 25px;
    font-size: 24px;
    border-bottom: 2px solid #f1c40f;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #11502b;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1b4d3e;
    box-shadow: 0 0 5px rgba(27,77,62,0.3);
    outline: none;
}

.button-submit {
    background-color: #1b4d3e;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(27,77,62,0.2);
}

.button-submit:hover {
    background-color: #27663f;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(27,77,62,0.25);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-form .button-readmore {
    width: 100%;
    text-align: center;
}

/* --- FOOTER --- */
.system-footer {
    background: linear-gradient(135deg, #1b4d3e 0%, #2e7d32 100%);
    color: white;
    padding: 60px 5% 20px;
    margin-top: auto;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-branding img { height: 45px; }
.footer-links h4 { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px; color: #ffffff; }
.footer-links a, .footer-links p { color: white; text-decoration: none; font-size: 14px; margin-bottom: 10px; display: block; opacity: 0.8; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.footer-copyright {
    border-top: 1px dashed rgba(255,255,255,0.3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.wincel-brand-small {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.wincel-brand-small:hover {
    opacity: 1;
}

.wincel-mini-logo-small {
    height: 20px;
}

 /* ══════════════════════════════════════════
           ARTICLE CONTENT STYLES — editorial magazine
           ══════════════════════════════════════════ */

        :root {
            --ink: #1a1a1a;
            --ink-mid: #3d3d3d;
            --ink-light: #6b6b6b;
            --paper: #faf9f6;
            --cream: #f4f1eb;
            --rule: #e0ddd5;
            --cct-green: #1b4d3e;
            --cct-gold: #f1c40f;
            --cct-gold-dark: #c9a200;
            --accent: #8b2635;
        }

        body {
            background-color: var(--paper);
            background-image: none;
            font-family: 'DM Sans', sans-serif;
        }

        /* ── ARTICLE HERO ── */
        .article-hero {
            position: relative;
            width: 100%;
            height: 520px;
            overflow: hidden;
            background-color: var(--cct-green);
        }

        .article-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
            transform: scale(1.04);
            animation: heroZoom 8s ease forwards;
        }

        @keyframes heroZoom {
            from { transform: scale(1.04); }
            to   { transform: scale(1.00); }
        }

        .article-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(10, 30, 24, 0.15) 0%,
                rgba(10, 30, 24, 0.70) 60%,
                rgba(10, 30, 24, 0.92) 100%
            );
        }

        .article-hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0 clamp(20px, 8vw, 160px) 48px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .article-category-tag {
            display: inline-block;
            background-color: var(--cct-gold);
            color: #1a1a1a;
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 2px;
            margin-bottom: 18px;
            animation: fadeUp 0.7s ease 0.2s both;
        }

        .article-hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(28px, 4.5vw, 58px);
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            margin: 0 0 18px;
            max-width: 820px;
            animation: fadeUp 0.7s ease 0.35s both;
        }

        .article-hero-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            animation: fadeUp 0.7s ease 0.5s both;
        }

        .article-hero-meta span {
            color: rgba(255,255,255,0.78);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .article-hero-meta span i {
            color: var(--cct-gold);
            font-size: 12px;
        }

        .meta-divider {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,0.35);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── BREADCRUMB ── */
        .article-breadcrumb {
            background-color: var(--cream);
            border-bottom: 1px solid var(--rule);
            padding: 13px clamp(20px, 8vw, 160px);
        }

        .article-breadcrumb nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--ink-light);
        }

        .article-breadcrumb a {
            color: var(--cct-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .article-breadcrumb a:hover { color: var(--cct-gold-dark); }

        .article-breadcrumb i {
            font-size: 10px;
            color: #bbb;
        }

        /* ── MAIN LAYOUT ── */
        .article-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 64px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 56px clamp(20px, 5vw, 80px) 80px;
        }

        /* ── ARTICLE BODY ── */
        .article-body {
            min-width: 0;
        }

        .article-lead {
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: clamp(17px, 2vw, 20px);
            font-weight: 400;
            color: var(--ink-mid);
            line-height: 1.75;
            margin: 0 0 40px;
            padding-bottom: 32px;
            border-bottom: 2px solid var(--cct-gold);
            font-style: italic;
        }

        .article-text {
            font-family: 'Source Serif 4', Georgia, serif;
            font-size: 17px;
            font-weight: 300;
            color: var(--ink);
            line-height: 1.85;
        }

        .article-text p {
            margin: 0 0 26px;
        }

        .article-text h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 26px;
            font-weight: 700;
            color: var(--cct-green);
            margin: 48px 0 18px;
            padding-left: 16px;
            border-left: 4px solid var(--cct-gold);
        }

        .article-text h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--ink);
            margin: 36px 0 14px;
        }

        /* Pull quote */
        .pull-quote {
            margin: 44px -24px;
            padding: 32px 40px;
            background: linear-gradient(135deg, var(--cct-green) 0%, #2e7d32 100%);
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .pull-quote::before {
            content: '\201C';
            position: absolute;
            top: -20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 140px;
            color: rgba(241, 196, 15, 0.25);
            line-height: 1;
            pointer-events: none;
        }

        .pull-quote p {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(18px, 2.2vw, 23px);
            font-style: italic;
            color: #fff;
            line-height: 1.55;
            margin: 0 0 14px;
            position: relative;
            z-index: 1;
        }

        .pull-quote cite {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-style: normal;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--cct-gold);
        }

        /* Inline image */
        .article-inline-img {
            margin: 40px 0;
        }

        .article-inline-img img {
            width: 100%;
            height: 340px;
            object-fit: cover;
            border-radius: 6px;
            display: block;
        }

        .article-inline-img figcaption {
            font-family: 'DM Sans', sans-serif;
            font-size: 12.5px;
            color: var(--ink-light);
            margin-top: 10px;
            padding-left: 4px;
            border-left: 2px solid var(--rule);
            font-style: italic;
        }

        /* Key info boxes */
        .info-box {
            background: var(--cream);
            border: 1px solid var(--rule);
            border-top: 3px solid var(--cct-gold);
            border-radius: 4px;
            padding: 24px 28px;
            margin: 36px 0;
        }

        .info-box h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--cct-gold-dark);
            margin: 0 0 14px;
        }

        .info-box ul {
            margin: 0;
            padding-left: 18px;
        }

        .info-box ul li {
            font-family: 'Source Serif 4', serif;
            font-size: 15.5px;
            color: var(--ink-mid);
            margin-bottom: 8px;
            line-height: 1.6;
        }

        /* Author block */
        .article-author-block {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 28px 0;
            border-top: 1px solid var(--rule);
            border-bottom: 1px solid var(--rule);
            margin: 52px 0 0;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--cct-green), #2e7d32);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .author-avatar i {
            color: white;
            font-size: 22px;
        }

        .author-info strong {
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 3px;
        }

        .author-info span {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: var(--ink-light);
        }

        /* Share row */
        .article-share {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 36px;
            flex-wrap: wrap;
        }

        .article-share span {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--ink-light);
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 16px;
            border-radius: 3px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .share-btn.fb   { background: #1877f2; color: white; }
        .share-btn.tw   { background: #000; color: white; }
        .share-btn.copy { background: var(--cream); color: var(--ink); border: 1px solid var(--rule); }
        .share-btn:hover { opacity: 0.85; transform: translateY(-1px); }

        /* Back button */
        .btn-back-news {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 12px 22px;
            background-color: var(--cct-green);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
            margin-top: 44px;
        }

        .btn-back-news:hover {
            background-color: #27663f;
            transform: translateX(-3px);
        }

        /* ── SIDEBAR ── */
        .article-sidebar {
            min-width: 0;
        }

        .sidebar-sticky {
            position: sticky;
            top: 24px;
        }

        .sidebar-section {
            margin-bottom: 40px;
        }

        .sidebar-label {
            font-family: 'DM Sans', sans-serif;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--ink-light);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--cct-gold);
            margin-bottom: 20px;
            display: block;
        }

        /* Quick facts */
        .quick-facts {
            background: var(--cct-green);
            border-radius: 6px;
            padding: 24px 22px;
            color: white;
        }

        .quick-facts .sidebar-label {
            color: rgba(255,255,255,0.65);
            border-bottom-color: var(--cct-gold);
        }

        .fact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 11px 0;
            border-bottom: 1px solid rgba(255,255,255,0.12);
        }

        .fact-item:last-child { border-bottom: none; }

        .fact-icon {
            width: 32px;
            height: 32px;
            background: rgba(241,196,15,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fact-icon i {
            color: var(--cct-gold);
            font-size: 13px;
        }

        .fact-text strong {
            display: block;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
            margin-bottom: 2px;
        }

        .fact-text span {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        /* Related news */
        .related-card {
            display: flex;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid var(--rule);
            text-decoration: none;
            transition: all 0.2s;
        }

        .related-card:hover { background: transparent; }
        .related-card:hover .related-title { color: var(--cct-green); }

        .related-card:last-child { border-bottom: none; }

        .related-thumb {
            width: 68px;
            height: 52px;
            object-fit: cover;
            border-radius: 4px;
            flex-shrink: 0;
            background: var(--cct-green);
        }

        .related-meta {
            flex: 1;
            min-width: 0;
        }

        .related-date {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            color: var(--cct-gold-dark);
            font-weight: 600;
            display: block;
            margin-bottom: 4px;
        }

        .related-title {
            font-family: 'Source Serif 4', serif;
            font-size: 14px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.4;
            transition: color 0.2s;
        }

        /* Tags */
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag {
            padding: 5px 12px;
            background: var(--cream);
            border: 1px solid var(--rule);
            border-radius: 2px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 500;
            color: var(--ink-mid);
            text-decoration: none;
            transition: all 0.2s;
        }

        .tag:hover {
            background: var(--cct-green);
            color: white;
            border-color: var(--cct-green);
        }

        /* ── MORE NEWS GRID ── */
        .more-news-section {
            background: var(--cream);
            border-top: 1px solid var(--rule);
            padding: 60px clamp(20px, 5vw, 80px);
        }

        .more-news-section h2 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 30px;
            font-weight: 900;
            color: var(--cct-green);
            margin: 0 0 8px;
        }

        .more-news-section > p {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: var(--ink-light);
            margin: 0 0 36px;
        }

        .more-news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 24px;
        }

        .more-news-card {
            background: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            text-decoration: none;
            display: block;
            transition: all 0.25s;
        }

        .more-news-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }

        .more-news-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .more-news-card-body {
            padding: 18px 20px;
        }

        .more-news-card-date {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--cct-gold-dark);
            letter-spacing: 0.05em;
            display: block;
            margin-bottom: 8px;
        }

        .more-news-card h3 {
            font-family: 'Source Serif 4', serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--ink);
            line-height: 1.45;
            margin: 0 0 10px;
        }

        .more-news-card p {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: var(--ink-light);
            line-height: 1.6;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .article-layout {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px clamp(20px, 5vw, 60px) 60px;
            }

            .article-sidebar {
                border-top: 2px solid var(--rule);
                padding-top: 40px;
            }

            .sidebar-sticky { position: static; }
            .article-hero { height: 380px; }
            .pull-quote { margin: 36px 0; }
        }

        @media (max-width: 576px) {
            .article-hero { height: 280px; }
            .article-hero-content { padding-bottom: 28px; }
            .article-hero-title { font-size: 24px; }
            .more-news-grid { grid-template-columns: 1fr; }
            .more-news-section { padding: 40px 20px; }
        }

/* Center wrapper */
.admission-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

/* Admission Button */
.admission-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #1b4d3e, #27663f);
    color: #ffffff;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(27, 77, 62, 0.25);
    position: relative;
    overflow: hidden;
}

/* Gold hover effect */
.admission-btn:hover {
    background: #f1c40f;
    color: #1b4d3e;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(241, 196, 15, 0.4);
}

.signin-btn-nav {
            background-color: transparent !important;
            color: #1b4d3e !important;
            padding: 8px 25px !important;
            border-radius: 50px !important;
            font-weight: bold !important;
            transition: 0.3s !important;
            border: 2px solid #1b4d3e !important;
            flex-shrink: 0;                    /* prevent button from squishing */
            white-space: nowrap;   
        }

        .signin-btn-nav:hover {
            background-color: #f1c40f !important;
            color: #1b4d3e !important;
            transform: translateY(-2px);
        }
.nav-separator {
    width: 1px;
    height: 25px;
    background-color: #ccc;
    align-self: center;
}