@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');



/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Web Guy
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/webguyio/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2026
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2026
BlankSlate is distributed under the terms of the GNU GPL
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{appearance:none;border-radius:0}input[type="search"]{appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

body{
    font-family:'Outfit',sans-serif;
}






/*==================================================
 ESCOLOOP THEME v2.0
 Author: EscoLoop
 Description: Main Stylesheet
==================================================*/


/*==================================================
ROOT COLORS
==================================================*/

:root{

    /* PRIMARY COLORS */
    --blue:#1e73be;
    --blue-dark:#0f5ca8;
    --gold:#d4af37;

    /* BASE COLORS */
    --white:#ffffff;
    --black:#111111;

    /* TEXT */
    --text:#333333;
    --text-light:#666666;

    /* BACKGROUNDS */
    --bg:#f5f7fb;
    --card:#ffffff;

    /* UI */
    --border:#e6e6e6;
    --shadow:0 8px 25px rgba(0,0,0,.08);
    --radius:16px;

}


/*==================================================
DARK MODE (FOUNDATION - SAFE & CONSISTENT)
==================================================*/

body.dark-mode{

    --bg:#0f0f0f;
    --card:#1a1a1a;

    --text:#eaeaea;
    --text-light:#b5b5b5;

    --border:#2a2a2a;

    --shadow:0 8px 25px rgba(0,0,0,.6);

    --black:#ffffff;

    background:var(--bg);
    color:var(--text);

}


/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
}


/*==================================================
IMAGES
==================================================*/

img{
    max-width:100%;
    height:auto;
    display:block;
}


/*==================================================
LINKS
==================================================*/

a{
    color:var(--blue);
    text-decoration:none;
    transition:.25s;
}

a:hover{
    color:var(--gold);
}


/*==================================================
BUTTONS
==================================================*/

button,
input[type=submit],
.button{
    cursor:pointer;
    transition:.25s;
}


/*==================================================
HEADINGS
==================================================*/

h1,h2,h3,h4,h5,h6{
    color:var(--black);
    font-weight:800;
    line-height:1.3;
}


/*==================================================
PARAGRAPHS
==================================================*/

p{
    margin-bottom:18px;
}


/*==================================================
WORDPRESS ALIGNMENTS
==================================================*/

.aligncenter{
    display:block;
    margin:20px auto;
}

.alignleft{
    float:left;
    margin:0 20px 20px 0;
}

.alignright{
    float:right;
    margin:0 0 20px 20px;
}


/*==================================================
WORDPRESS CAPTION
==================================================*/

.wp-caption{
    max-width:100%;
    margin:20px auto;
}

.wp-caption-text{
    text-align:center;
    color:var(--text-light);
    font-size:13px;
    margin-top:8px;
}


/*==================================================
TABLES
==================================================*/

table{
    width:100%;
    border-collapse:collapse;
}

table td,
table th{
    border:1px solid var(--border);
    padding:12px;
}


/*==================================================
SELECTION
==================================================*/

::selection{
    background:var(--blue);
    color:#fff;
}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:var(--card);
}

::-webkit-scrollbar-thumb{
    background:var(--blue);
    border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--gold);
}

















/* =====================
HEADER BASE
===================== */

#header{
    background:#111;
    color:#fff;
    position:relative;
    z-index:1000;
}


/* =====================
TOP BAR
===================== */

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 20px;
    background:#000;
    font-size:14px;
}

.social-links a{
    color:#fff;
    text-decoration:none;
    transition:.25s;
}

.social-links a:hover{
    color:#d4af37;
}


/* =====================
DARK MODE
===================== */

body.dark-mode{
    background:#0f0f0f;
    color:#eaeaea;
}

body.dark-mode a{
    color:inherit;
}

body.dark-mode #header,
body.dark-mode .top-bar{
    background:#111;
}


/* =====================
LOGO (CENTERED PROPERLY)
===================== */

.logo-section{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
    padding:15px;
}

.site-logo{
    max-width:280px;
    width:100%;
    height:auto;
    transition:transform .4s ease;
}

.site-logo:hover{
    transform:scale(1.23);
}

.site-tagline{
    color:#ccc;
    font-size:14px;
    margin-top:10px;
    letter-spacing:.5px;
}


/* =====================
NAV WRAPPER (GRADIENT KEPT)
===================== */

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(
        90deg,
        #0b1f5e,
        #1565c0,
        #1e88e5,
        #1565c0,
        #42a5f5,
        #1e88e5,
        #0b2f6b
    );

    border-radius:10px;
    padding:0 15px;
    margin:1px;

    position:relative;
    z-index:999;
}


/* =====================
MAIN NAV
===================== */

.esco-nav{
    flex:1;
    min-width:0;
    position:relative;
    z-index:998;
}

.esco-nav ul{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    margin:0;
    padding:0;
    list-style:none;
    width:100%;
}

.esco-nav li{
    position:relative;
    flex:none;
}

.esco-nav a{
    display:block;
    padding:15px;
    color:#fff;
    font-size:16px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    white-space:nowrap;
    transition:.25s;
}

.esco-nav a:hover{
    color:#d4af37;
}


/* FIRST ITEM */
.esco-nav li:first-child a{
    background:#fff;
    color:#000;
    border-radius:4px;
}


/* =====================
ICONS
===================== */

.search-icon,
.mobile-toggle{
    font-size:28px;
    cursor:pointer;
    padding:10px;
    color:#fff;
}


/* =====================
DROPDOWN (BLUE BLENDED)
===================== */

.esco-nav ul ul,
.sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;
    border-radius:12px;
    overflow:hidden;

    z-index:10000;

    background:linear-gradient(
        180deg,
        #1565c0,
        #1e88e5,
        #0b2f6b
    );

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    opacity:0;
    transform:translateY(10px);
    transition:opacity .25s ease, transform .25s ease;
}


/* SHOW DROPDOWN */
.esco-nav li:hover > ul,
.menu-item-has-children:hover > .sub-menu{
    display:block;
    opacity:1;
    transform:translateY(0);
}


/* DROPDOWN ITEMS */
.sub-menu li{
    border-bottom:1px solid rgba(255,255,255,.15);
}

.sub-menu li:last-child{
    border-bottom:none;
}

.sub-menu a{
    display:block;
    padding:12px 18px;

    color:#fff;
    font-size:15px;
    letter-spacing:.3px;

    transition:.25s ease;
}

.sub-menu a:hover{
    background:rgba(255,255,255,.15);
    padding-left:24px;
}


/* =====================
SEARCH BOX (IMPROVED)
===================== */

.search-box{
    display:none;
    position:absolute;
    right:20px;
    top:100%;

    margin-top:10px;

    background:rgba(21,101,192,.95);
    backdrop-filter:blur(6px);

    padding:10px;
    border-radius:10px;

    z-index:10001;
}

.search-box.active{
    display:block;
}

.search-box input{
    padding:10px 12px;
    width:220px;

    border:none;
    outline:none;

    border-radius:6px;
}


/* =====================
MOBILE MENU (BLENDED BLUE - FIXED)
===================== */

@media(max-width:768px){

    .nav-wrapper{
        flex-wrap:wrap;
    }

    .mobile-toggle{
        display:block;
    }

    /* MOBILE MENU NOW MATCHES GRADIENT */
    .esco-nav{
        display:none;
        width:100%;
    }

    .esco-nav.active{
        display:block;
        position:absolute;
        top:100%;
        left:0;
        right:0;

        background:linear-gradient(
            180deg,
            #0b1f5e,
            #1565c0,
            #1e88e5,
            #0b2f6b
        );

        z-index:9999;
    }

    .esco-nav ul{
        flex-direction:column;
        gap:0;
    }

    .esco-nav a{
        width:100%;
        text-align:center;
        border-bottom:1px solid rgba(255,255,255,.15);
    }

    .site-logo{
        max-width:180px;
    }

    .site-tagline{
        font-size:12px;
    }

    /* SEARCH BOX MOBILE IMPROVED */
    .search-box{
        right:10px;
        left:10px;
        width:auto;
    }

    .search-box input{
        width:100%;
    }
}


/* =====================
DESKTOP RULES
===================== */

@media(min-width:769px){

    .mobile-toggle{
        display:none;
    }

    .esco-nav{
        display:block !important;
    }
}



















/* ==========================
BREAKING NEWS TICKER
========================== */

.breaking-news-wrap{
    display:flex;
    align-items:center;

    background:linear-gradient(
        90deg,
        #0b2f6b,
        #1565c0,
        #42a5f5,
        #1e88e5,
        #0b2f6b
    );

    color:#fff;

    position:sticky;
    top:0;
    z-index:999;

    overflow:hidden;
}


/* ==========================
LABEL
========================== */

.breaking-label{
    background:#0b2f6b;
    padding:14px 20px;

    font-weight:700;
    letter-spacing:.5px;

    white-space:nowrap;
}


/* ==========================
TICKER AREA
========================== */

.breaking-news{
    flex:1;
    overflow:hidden;
}


/* MOVING TRACK */
.breaking-track{
    display:flex;
    align-items:center;
    width:max-content;

    animation:tickerMove 60s linear infinite;
}

.breaking-news:hover .breaking-track{
    animation-play-state:paused;
}


/* ==========================
NEWS LINKS
========================== */

.breaking-track a{
    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:500;

    white-space:nowrap;
    margin-right:15px;

    transition:.20s;
}

.breaking-track a:hover{
    color:#ffd54f;
    text-decoration:underline;
}


/* SEPARATOR */
.ticker-separator{
    margin-right:15px;
    opacity:.7;
}


/* READ MORE TEXT */
.read-more-msg{
    color:#ffd54f;
    font-weight:700;
    white-space:nowrap;
    margin-right:15px;
}


/* ==========================
ANIMATION
========================== */

@keyframes tickerMove{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}


/* ==========================
MOBILE
========================== */

@media(max-width:768px){

    .breaking-label{
        padding:10px 14px;
        font-size:12px;
    }

    .breaking-track a{
        font-size:13px;
    }
}

















/* =========================
ESCO HERO SLIDER
========================= */

.esco-hero{
    width:100%;
    overflow:hidden;
    padding:20px;
    box-sizing:border-box;
    position:relative;
    margin-bottom:50px;
}


/* =========================
TRACK
========================= */

.esco-hero-track{
    display:flex;
    gap:20px;

    transition:transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change:transform;

    box-shadow:0 15px 40px rgba(0,0,0,.18);
}


/* =========================
HERO CARD BASE
========================= */

.hero-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;

    flex:0 0 100%;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:transform .4s ease, opacity .4s ease;
}

.hero-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}


/* =========================
OVERLAY
========================= */

.hero-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:6px 12px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        transparent
    );
}

.hero-overlay h2{
    color:#fff;
    margin:0;

    font-size:20px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:20px;
    padding:9px 17px;

    text-shadow:0 2px 10px rgba(0,0,0,.7);
}


/* =========================
AUTHOR TAG
========================= */

.hero-author{
    display:inline-block;

    padding:6px 12px;
    margin-bottom:12px;

    border-radius:20px;

    background:rgba(0,0,0,.8);
    border:1px solid rgba(255,255,255,.2);

    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
}


/* =========================
ARROWS
========================= */

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    z-index:100;

    width:70px;
    height:70px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:rgba(0,0,0,.55);
    color:#fff;

    font-size:29px;
    font-weight:bold;

    transition:.3s ease;
}

.hero-prev{
    left:20px;
}

.hero-next{
    right:20px;
}

.hero-prev:hover,
.hero-next:hover{
    background:rgba(0,0,0,.85);
    transform:translateY(-50%) scale(1.08);
}


/* =========================
DOTS
========================= */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:18px;

    transform:translateX(-50%);

    display:flex;
    gap:10px;

    z-index:50;
}

.hero-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#666;
    border:2px solid #fff;

    cursor:pointer;
    transition:.3s ease;
}

.hero-dot.active{
    background:#0073ff;
    border-color:#fff;
    transform:scale(1.3);
}


/* =========================
HOVER EFFECTS
========================= */

.hero-card:hover{
    transform:translateY(-5px);
}

.hero-card:hover img{
    transform:scale(1.05);
}


/* =========================
DESKTOP (3 CARD MODE)
========================= */

@media(min-width:768px){

    .hero-card{
        flex:0 0 calc(33.333% - 14px);

        transform:scale(.92);
        opacity:.75;
        filter:brightness(.85);
    }

    .hero-card.hero-center{
        transform:scale(1.15);
        opacity:1;
        filter:brightness(1);
        z-index:10;
    }

    .hero-card img{
        height:450px;
    }
}


/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .hero-card img{
        height:200px;
    }

    .hero-overlay h2{
        font-size:20px;
        line-height:1.3;
    }

    .hero-author{
        font-size:10px;
        padding:5px 10px;
    }
}
/* =========================
ESCO HERO SLIDER
========================= */

.esco-hero{
    width:100%;
    overflow:hidden;
    padding:20px;
    box-sizing:border-box;
    position:relative;
    margin-bottom:40px;
}


/* =========================
TRACK
========================= */

.esco-hero-track{
    display:flex;
    gap:20px;

    transition:transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change:transform;

    box-shadow:0 15px 40px rgba(0,0,0,.18);
}


/* =========================
HERO CARD BASE
========================= */

.hero-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;

    flex:0 0 100%;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:transform .4s ease, opacity .4s ease;
}

.hero-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:transform .5s ease;
}


/* =========================
OVERLAY
========================= */

.hero-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.55),
        transparent
    );
}

.hero-overlay h2{
    color:#fff;
    margin:0;

    font-size:30px;
    line-height:1.20;
    font-weight:700;

    text-shadow:0 2px 10px rgba(0,0,0,.7);
}


/* =========================
AUTHOR TAG
========================= */

.hero-author{
    display:inline-block;

    padding:6px 12px;
    margin-bottom:12px;

    border-radius:20px;

    background:rgba(0,0,0,.8);
    border:1px solid rgba(255,255,255,.2);

    color:#fff;
    font-size:10px;
    font-weight:700;
    letter-spacing:.5px;
}


/* =========================
ARROWS
========================= */

.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    z-index:100;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:rgba(0,0,0,.55);
    color:#fff;

    font-size:24px;
    font-weight:bold;

    transition:.3s ease;
}

.hero-prev{
    left:20px;
}

.hero-next{
    right:20px;
}

.hero-prev:hover,
.hero-next:hover{
    background:rgba(0,0,0,.85);
    transform:translateY(-50%) scale(1.08);
}


/* =========================
DOTS
========================= */

.hero-dots{
    position:absolute;
    left:50%;
    bottom:18px;

    transform:translateX(-50%);

    display:flex;
    gap:10px;

    z-index:50;
}

.hero-dot{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#666;
    border:2px solid #fff;

    cursor:pointer;
    transition:.3s ease;
}

.hero-dot.active{
    background:#0073ff;
    border-color:#fff;
    transform:scale(1.3);
}


/* =========================
HOVER EFFECTS
========================= */

.hero-card:hover{
    transform:translateY(-5px);
}

.hero-card:hover img{
    transform:scale(1.05);
}


/* =========================
DESKTOP (3 CARD MODE)
========================= */

@media(min-width:768px){

    .hero-card{
        flex:0 0 calc(33.333% - 14px);

        transform:scale(.92);
        opacity:.75;
        filter:brightness(.85);
    }

    .hero-card.hero-center{
        transform:scale(1.15);
        opacity:1;
        filter:brightness(1);
        z-index:10;
    }

    .hero-card img{
        height:450px;
    }
}


/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .hero-card img{
        height:220px;
    }

    .hero-overlay h2{
        font-size:18px;
        line-height:1.3;
    }

    .hero-author{
        font-size:8px;
        padding:5px 10px;
    }
}












/* =========================
LATEST POSTS
========================= */

.latest-posts{
    padding:30px 20px;
    max-width:1500px;
    margin:0 auto;
    width:100%;
}


/* =========================
SECTION HEADING
========================= */

.section-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    margin:30px 0;
}

.section-heading::before,
.section-heading::after{
    content:"";
    flex:1;
    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #1e73be,
        transparent
    );
}

.section-heading::before{
    margin-right:15px;
}

.section-heading::after{
    margin-left:15px;
}


/* TITLE */

.section-title{
    margin:0;
    font-size:28px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    white-space:nowrap;
}


/* =========================
POST ITEM (WITH DIVIDER + HOVER)
========================= */

.latest-post-item{
    margin-bottom:20px;

    padding-bottom:20px;
    border-bottom:1px solid rgba(30,115,190,.15);

    transition:all .3s ease;
    position:relative;
}

/* stylish hover background glow */
.latest-post-item:hover{
    transform:translateY(-4px);
    background:rgba(30,115,190,.04);
    border-bottom-color:rgba(30,115,190,.35);
    border-radius:10px;
    padding-left:10px;
    padding-right:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}


/* LINK WRAPPER */
.latest-post-item a{
    display:flex;
    gap:15px;
    text-decoration:none;
    color:inherit;
}


/* =========================
THUMBNAIL
========================= */

.latest-thumb{
    width:180px;
    flex-shrink:0;
    overflow:hidden;
    border-radius:10px;
}

.latest-thumb img{
    width:100%;
    height:120px;
    object-fit:cover;
    transition:transform .4s ease;
}


/* image zoom on hover */
.latest-post-item:hover .latest-thumb img{
    transform:scale(1.05);
}


/* =========================
CONTENT
========================= */

.latest-content{
    flex:1;
}

.latest-content h3{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    margin:0 0 8px;

    transition:.3s ease;
}

/* title highlight on hover */
.latest-post-item:hover .latest-content h3{
    color:#1e73be;
}

.latest-meta{
    color:#777;
    font-size:14px;
}


/* =========================
PAGINATION
========================= */

.latest-pagination{
    margin-top:30px;
    text-align:center;
}

.latest-pagination .page-numbers{
    display:inline-block;
    margin:0 5px;
    padding:8px 14px;

    border-radius:6px;
    text-decoration:none;

    background:#f2f2f2;
}

.latest-pagination .current{
    background:#0073ff;
    color:#fff;
}


/* =========================
VIEW MORE BUTTON
========================= */

.view-more-posts{
    text-align:center;
    margin:30px 0;
}

.view-more-posts a{
    display:inline-block;
    padding:12px 24px;

    background:#d4af37;
    color:#000;

    text-decoration:none;
    border-radius:8px;

    font-weight:700;
    transition:.3s;
}

.view-more-posts a:hover{
    transform:translateY(-2px);
}


/* =========================
MOBILE
========================= */

@media(max-width:767px){

    .latest-post-item a{
        gap:12px;
    }

    .latest-thumb{
        width:110px;
    }

    .latest-thumb img{
        height:90px;
    }

    .latest-content h3{
        font-size:16px;
        font-weight:800;
    }

    .latest-meta{
        font-size:13px;
        color:#999;
        font-weight:600;
    }

    .section-heading::before,
    .section-heading::after{
        height:1px;
    }
}











/* =========================
BLOG HEADER
========================= */

.blog-header{
    text-align:center;
    margin:30px 0;
}

.blog-header h1{
    font-size:32px;
    margin-bottom:10px;
}

.blog-header p{
    color:#888;
}


/* =========================
LATEST POSTS (BLOG STYLE OVERRIDES)
========================= */

.latest-post-item{
    position:relative;
    padding:18px 0;

    transition:all .3s ease;
}


/* separator line */
.latest-post-item:not(:last-child)::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    height:1px;

    background:linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,.7),
        transparent
    );
}


/* LEFT BORDER HOVER EFFECT */
.latest-post-item{
    border-left:4px solid transparent;
}

.latest-post-item:hover{
    transform:translateY(-3px);
    border-left:4px solid #d4af37;
    padding-left:12px;
}


/* IMAGE EFFECT */
.latest-thumb{
    overflow:hidden;
    border-radius:10px;
}

.latest-thumb img{
    transition:.4s ease;
}

.latest-post-item:hover .latest-thumb img{
    transform:scale(1.05);
}


/* TITLE HOVER */
.latest-content h3{
    transition:.3s ease;
}

.latest-post-item:hover h3{
    color:#1e73be;
}


/* =========================
PAGINATION (BLOG STYLE)
========================= */

.latest-pagination{
    text-align:center;
    margin:40px 0;
}

.latest-pagination .page-numbers{
    display:inline-block;
    padding:10px 15px;
    margin:0 3px;

    border-radius:6px;
    text-decoration:none;

    background:#1d1d1d;
    color:#fff;
}

.latest-pagination .current{
    background:#d4af37;
    color:#000;
}


/* =========================
VIDEO SECTION
========================= */

.video-section{
    max-width:1500px;
    margin:40px auto;
    padding:0 15px;
    box-sizing:border-box;
}


/* spacing fix (removed duplicate rule) */
.video-section{
    margin-top:50px;
}


/* FEATURED VIDEO */
.featured-video{
    margin-bottom:20px;
}

.featured-video a,
.small-video a{
    text-decoration:none;
    color:#fff;
}


/* FEATURED THUMB */
.featured-video-thumb{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.featured-video-thumb img{
    width:100%;
    display:block;
    transition:.5s ease;
}

.featured-video:hover img{
    transform:scale(1.05);
}


/* OVERLAY */
.video-overlay{
    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:25px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.4),
        rgba(0,0,0,.1)
    );
}

.video-overlay h3{
    margin:0;
    font-size:34px;
    font-weight:900;
    line-height:1.2;
    color:#fff;
    text-shadow:0 2px 8px rgba(0,0,0,.5);
}

.video-meta{
    margin-top:10px;
    color:#ddd;
}

.watch-now{
    margin-top:12px;
    color:#ffd700;
    font-weight:700;
    transition:.3s;
}

.featured-video:hover .watch-now{
    letter-spacing:1px;
}


/* BADGE */
.featured-badge{
    position:absolute;
    top:15px;
    left:15px;

    background:#1e73be;
    color:#fff;

    padding:8px 14px;
    border-radius:30px;

    font-size:12px;
    font-weight:700;

    z-index:2;
}


/* PLAY BUTTON */
.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:100px;
    height:100px;

    border-radius:50%;

    background:rgba(229,57,53,.95);
    box-shadow:0 0 25px rgba(229,57,53,.6);

    color:#fff;
    font-size:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.featured-video:hover .play-button{
    transform:translate(-50%,-50%) scale(1.1);
    box-shadow:0 0 40px rgba(229,57,53,.9);
}


/* =========================
SMALL VIDEO GRID
========================= */

.video-small-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.small-video-thumb{
    width:100%;
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

.small-video-thumb img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.4s ease;
}

.small-video:hover img{
    transform:scale(1.05);
}


/* SMALL PLAY */
.small-play{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:50px;
    height:50px;

    border-radius:50%;

    background:#e53935;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:20px;
}


/* SMALL TEXT */
.small-video h4{
    color:#111;
    margin:10px 0 5px;
    font-size:18px;
    font-weight:800;
    transition:.3s;
}

.small-video:hover h4{
    color:#1e73be;
}

.small-video-date{
    color:#777;
    font-size:13px;
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .video-overlay{
        padding:15px;
    }

    .video-overlay h3{
        font-size:20px;
    }

    .play-button{
        width:60px;
        height:60px;
        font-size:26px;
    }

    .small-video h4{
        font-size:14px;
    }

    .video-small-grid{
        gap:12px;
    }
}














/* =======================================================
   UPCOMING ARTISTS
======================================================= */

.upcoming-artists{
    max-width:1500px;
    margin:50px auto;
    padding:0 15px;
}


/* =========================
ARTIST ITEM
========================= */

.artist-item{
    position:relative;

    border-bottom:1px solid rgba(30,115,190,.18);

    transition:all .35s ease;
}

.artist-item:last-of-type{
    border-bottom:none;
}


/* =========================
ITEM LINK
========================= */

.artist-item a{
    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 0;

    text-decoration:none;

    border-radius:14px;

    transition:all .35s ease;
}

.artist-item:hover a{
    background:rgba(30,115,190,.05);

    transform:translateX(8px);

    padding-left:12px;
    padding-right:12px;
}


/* =========================
THUMBNAIL
========================= */

.artist-thumb{
    position:relative;

    width:120px;
    height:110px;

    flex-shrink:0;
}

.artist-thumb img{

    /* kept exactly as your design */

    width:120%;
    height:110%;

    display:block;

    object-fit:cover;

    border-radius:50%;

    border:3px solid #fff;

    box-shadow:0 6px 18px rgba(0,0,0,.12);

    transition:all .35s ease;
}

.artist-item:hover img{

    transform:scale(1.08);

    border-color:#d4af37;

    box-shadow:0 12px 28px rgba(30,115,190,.18);
}


/* =========================
PLAY BUTTON
========================= */

.artist-play{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.28);

    color:#fff;

    font-size:18px;

    border-radius:50%;

    opacity:0;

    transition:all .3s ease;
}

.artist-item:hover .artist-play{
    opacity:1;
}


/* =========================
CONTENT
========================= */

.artist-content{
    flex:1;
}

.artist-content h3{
    margin:0 0 6px;

    color:#111;

    font-size:20px;
    font-weight:800;

    transition:color .3s ease;
}

.artist-item:hover h3{
    color:#1e73be;
}

.artist-meta{
    color:#777;
    font-size:14px;
}


/* =========================
DARK MODE
========================= */

body.dark-mode .artist-item{
    border-bottom-color:rgba(66,165,245,.18);
}

body.dark-mode .artist-item:hover a{
    background:rgba(66,165,245,.10);
}

body.dark-mode .artist-thumb img{
    border-color:#2b2b2b;
}

body.dark-mode .artist-item:hover img{
    border-color:#d4af37;
}

body.dark-mode .artist-content h3{
    color:#f3f3f3;
}

body.dark-mode .artist-item:hover h3{
    color:#42a5f5;
}

body.dark-mode .artist-meta{
    color:#b8b8b8;
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .artist-thumb{
        width:80px;
        height:80px;
    }

    .artist-content h3{
        font-size:16px;
    }

    .artist-meta{
        font-size:12px;
    }

}










/* ====================================
   DIGITAL SERVICES
==================================== */

.digital-services{
    max-width:1200px;
    margin:60px auto;
    padding:0 15px;
}


/* =========================
GRID
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


/* =========================
CARD
========================= */

.service-card{
    background:#fff;
    border-top:4px solid #1e73be;
    border-radius:14px;

    padding:30px 20px;
    text-align:center;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:all .3s ease;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 30px rgba(30,115,190,.15);
}


/* =========================
ICON
========================= */

.service-icon{
    font-size:42px;
    margin-bottom:15px;

    transition:transform .3s ease;
}

.service-card:hover .service-icon{
    transform:scale(1.12) rotate(-5deg);
}


/* =========================
TEXT
========================= */

.service-card h3{
    margin:0 0 12px;

    font-size:22px;
    font-weight:800;
    color:#111;

    transition:color .3s ease;
}

.service-card:hover h3{
    color:#1e73be;
}

.service-card p{
    margin-bottom:20px;

    color:#666;
    font-size:15px;
    line-height:1.6;
}


/* =========================
BUTTON
========================= */

.service-btn{
    display:inline-block;

    padding:10px 18px;

    background:#1e73be;
    color:#fff;

    text-decoration:none;
    font-weight:700;

    border-radius:30px;

    transition:all .3s ease;
}

.service-btn:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-2px);
}


/* =========================
TABLET
========================= */

@media(max-width:992px){

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

}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

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

    .service-card{
        padding:25px 18px;
    }

    .service-card h3{
        font-size:20px;
    }
}














/* ====================================
   SIDEBAR
==================================== */

#sidebar{
    width:320px;

    position:sticky;
    top:20px;

    align-self:flex-start;
    flex-shrink:0;
}


/* =========================
SIDEBAR BOX
========================= */

.sidebar-box{
    background:#fff;

    padding:20px;
    margin-bottom:25px;

    border-radius:14px;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:all .3s ease;
}

.sidebar-box:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(30,115,190,.12);
}


/* =========================
TITLE
========================= */

.sidebar-title{
    margin-bottom:18px;
    padding-bottom:10px;

    font-size:20px;
    font-weight:800;

    border-bottom:3px solid #1e73be;
}


/* =========================
SEARCH
========================= */

.sidebar-search input[type="search"]{
    width:100%;

    padding:12px;

    border:1px solid #d9d9d9;
    border-radius:10px;

    outline:none;

    transition:all .3s ease;
}

.sidebar-search input[type="search"]:focus{
    border-color:#1e73be;
    box-shadow:0 0 0 3px rgba(30,115,190,.15);
}


.sidebar-search input[type="submit"]{
    width:100%;
    margin-top:10px;
    padding:12px;

    border:none;
    border-radius:10px;

    background:#1e73be;
    color:#fff;

    font-weight:700;
    cursor:pointer;

    transition:all .3s ease;
}

.sidebar-search input[type="submit"]:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-2px);
}


/* =========================
ADS
========================= */

.sidebar-ad{
    height:250px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px dashed rgba(212,175,55,.8);
    border-radius:12px;

    background:rgba(30,115,190,.03);

    color:#777;
    font-weight:700;

    transition:all .3s ease;
}

.sidebar-ad:hover{
    border-color:#1e73be;
    background:rgba(30,115,190,.06);
}

.small-ad{
    height:120px;
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    #sidebar{
        width:100%;
        position:static;
        margin-top:30px;
    }

}















/* ====================================
   SIDEBAR
==================================== */

#sidebar{
    width:320px;
    flex-shrink:0;
    align-self:flex-start;

    position:sticky;
    top:20px;

    margin-left:auto;
}


/* =========================
SIDEBAR BOX
========================= */

.sidebar-box{
    background:#fff;

    margin-bottom:25px;
    padding:22px;

    border-radius:16px;

    border:1px solid rgba(30,115,190,.08);

    box-shadow:0 10px 28px rgba(0,0,0,.08);

    overflow:hidden;

    transition:all .35s ease;
}

.sidebar-box:hover{
    transform:translateY(-5px);

    border-color:rgba(30,115,190,.25);

    box-shadow:
        0 18px 35px rgba(30,115,190,.10),
        0 8px 20px rgba(0,0,0,.08);
}


/* decorative blue line */

.sidebar-box::before{
    content:"";

    display:block;

    width:70px;
    height:4px;

    margin-bottom:16px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #1e73be,
        #42a5f5,
        #d4af37
    );
}


/* =========================
TITLE
========================= */

.sidebar-title{
    margin-bottom:18px;
    padding-bottom:12px;

    font-size:21px;
    font-weight:800;

    color:#111;

    border-bottom:2px solid rgba(30,115,190,.18);
}


/* =========================
SEARCH
========================= */

.sidebar-search input[type="search"]{

    width:100%;

    padding:13px 14px;

    border:1px solid #d9d9d9;
    border-radius:12px;

    background:#fafafa;

    outline:none;

    transition:all .3s ease;
}

.sidebar-search input[type="search"]::placeholder{
    color:#999;
}

.sidebar-search input[type="search"]:focus{

    background:#fff;

    border-color:#1e73be;

    box-shadow:0 0 0 4px rgba(30,115,190,.15);
}


.sidebar-search input[type="submit"]{

    width:100%;

    margin-top:12px;

    padding:13px;

    border:none;
    border-radius:12px;

    background:linear-gradient(
        90deg,
        #1565c0,
        #1e88e5
    );

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;
}

.sidebar-search input[type="submit"]:hover{

    background:linear-gradient(
        90deg,
        #d4af37,
        #f5c84c
    );

    color:#111;

    transform:translateY(-2px);
}


/* =========================
ADS
========================= */

.sidebar-ad{

    height:250px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px dashed rgba(212,175,55,.75);

    border-radius:14px;

    background:linear-gradient(
        135deg,
        rgba(30,115,190,.04),
        rgba(66,165,245,.08)
    );

    color:#666;

    font-weight:700;
    text-align:center;

    transition:all .3s ease;
}

.sidebar-ad:hover{

    border-color:#1e73be;

    background:linear-gradient(
        135deg,
        rgba(30,115,190,.08),
        rgba(66,165,245,.14)
    );

    transform:scale(1.02);
}

.small-ad{
    height:120px;
}


/* =========================
DARK MODE
========================= */

body.dark-mode .sidebar-box{

    background:#171717;

    border-color:rgba(255,255,255,.08);

    box-shadow:0 10px 25px rgba(0,0,0,.45);
}

body.dark-mode .sidebar-title{

    color:#fff;

    border-bottom-color:rgba(66,165,245,.25);
}

body.dark-mode .sidebar-search input[type="search"]{

    background:#222;

    border-color:#333;

    color:#fff;
}

body.dark-mode .sidebar-search input[type="search"]::placeholder{
    color:#888;
}

body.dark-mode .sidebar-search input[type="search"]:focus{

    background:#2b2b2b;

    border-color:#42a5f5;
}

body.dark-mode .sidebar-ad{

    color:#bbb;

    background:linear-gradient(
        135deg,
        rgba(30,115,190,.08),
        rgba(66,165,245,.12)
    );

    border-color:rgba(212,175,55,.55);
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    #sidebar{

        width:100%;

        position:static;

        margin:35px 0 0;
    }

    .sidebar-box{

        padding:20px;
    }

}















/* ====================================
   HOME + SIDEBAR LAYOUT
==================================== */

.home-layout{
    max-width:1500px;
    margin:40px auto;
    padding:0 15px;

    display:flex;
    align-items:flex-start;
    gap:35px;
}

.main-content{
    flex:1;
    min-width:0;
}


/* ====================================
   TRENDING POSTS
==================================== */

.trend-item{
    margin-bottom:14px;
}

.trend-item:last-child{
    margin-bottom:0;
}

.trend-item a{
    display:flex;
    align-items:center;
    gap:12px;

    padding:10px;
    border-radius:12px;

    text-decoration:none;
    color:#111;

    transition:all .3s ease;
}

.trend-item a:hover{
    background:rgba(30,115,190,.05);
    transform:translateX(6px);
}


/* NUMBER */

.trend-number{
    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    border-radius:10px;

    background:linear-gradient(
        135deg,
        #d4af37,
        #f3cb54
    );

    color:#111;

    font-size:17px;
    font-weight:900;
}


/* IMAGE */

.trend-thumb{
    width:75px;
    height:75px;
    flex-shrink:0;

    overflow:hidden;
    border-radius:10px;
}

.trend-thumb img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.35s ease;
}

.trend-item:hover img{
    transform:scale(1.06);
}


/* CONTENT */

.trend-content{
    flex:1;
}

.trend-content h4{
    margin:0;

    color:#111;

    font-size:14px;
    line-height:1.45;
    font-weight:800;

    transition:.3s ease;
}

.trend-item:hover h4{
    color:#1e73be;
}


/* ====================================
   FEATURED ARTISTS
==================================== */

.featured-artists-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;

    justify-items:center;
}

.featured-artists-grid .center{
    grid-column:1 / 3;
}

.artist-circle{
    text-align:center;
    text-decoration:none;
    color:#111;

    transition:all .3s ease;
}

.artist-circle img{
    width:130px;
    height:130px;

    object-fit:cover;
    border-radius:50%;

    border:3px solid #d4af37;

    box-shadow:0 8px 18px rgba(0,0,0,.10);

    transition:all .35s ease;
}

.artist-circle:hover img{
    transform:scale(1.06);
    border-color:#1e73be;

    box-shadow:0 14px 30px rgba(30,115,190,.18);
}

.artist-circle span{
    display:block;

    margin-top:10px;

    font-size:13px;
    font-weight:700;

    transition:.3s ease;
}

.artist-circle:hover span{
    color:#1e73be;
}


/* ====================================
   FOLLOW US
==================================== */

.follow-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.follow-links a{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:13px 18px;

    border-radius:12px;

    color:#fff;
    font-weight:700;
    text-decoration:none;

    transition:all .3s ease;
}

.follow-links a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


/* BRAND COLOURS */

.facebook-btn{
    background:#1877f2;
}

.whatsapp-btn{
    background:#25d366;
}

.youtube-btn{
    background:#ff0000;
}


/* ====================================
   DARK MODE
==================================== */

body.dark-mode .trend-item a{
    color:#f2f2f2;
}

body.dark-mode .trend-item a:hover{
    background:rgba(66,165,245,.10);
}

body.dark-mode .trend-content h4{
    color:#f2f2f2;
}

body.dark-mode .trend-item:hover h4{
    color:#42a5f5;
}

body.dark-mode .artist-circle{
    color:#f2f2f2;
}

body.dark-mode .artist-circle:hover span{
    color:#42a5f5;
}


/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:992px){

    .home-layout{
        flex-direction:column;
    }

    #sidebar{
        width:100%;
    }

}















/* =======================================================
   FOOTER
======================================================= */

#footer{
    margin-top:70px;

    background:#0d0d0d;
    color:#fff;

    border-top:4px solid transparent;
    border-image:linear-gradient(
        90deg,
        #1e73be,
        #42a5f5,
        #d4af37,
        #42a5f5,
        #1e73be
    ) 1;
}


/* ==========================
FOOTER CONTAINER
========================== */

.footer-container{

    max-width:1500px;
    margin:0 auto;

    padding:60px 15px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:45px;
}


/* ==========================
LOGO
========================== */

.footer-logo{

    margin-bottom:18px;

    font-size:34px;
    font-weight:900;

    color:#d4af37;
}


/* ==========================
HEADINGS
========================== */

.footer-col h3{

    margin-bottom:20px;

    color:#fff;

    font-size:22px;
    font-weight:800;

    position:relative;
}

.footer-col h3::after{

    content:"";

    display:block;

    width:55px;
    height:3px;

    margin-top:10px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #1e73be,
        #42a5f5
    );
}


/* ==========================
TEXT
========================== */

.footer-col p{

    color:#c7c7c7;
    line-height:1.8;
}


/* ==========================
LINKS
========================== */

.footer-col a{

    display:block;

    margin-bottom:12px;

    color:#ccc;

    text-decoration:none;

    transition:all .3s ease;
}

.footer-col a:hover{

    color:#42a5f5;

    transform:translateX(8px);
}


/* ==========================
BOTTOM
========================== */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 15px;

    text-align:center;

    font-size:14px;

    color:#9d9d9d;

    background:#090909;
}


/* =======================================================
   FLOATING BUTTONS
======================================================= */

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:95px;

    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    background:#25D366;
    color:#fff;

    font-size:30px;

    box-shadow:0 10px 28px rgba(0,0,0,.28);

    z-index:999;

    transition:all .3s ease;
}

.floating-whatsapp:hover{

    transform:translateY(-4px) scale(1.08);

    box-shadow:0 15px 35px rgba(37,211,102,.35);
}


/* ==========================
BACK TO TOP
========================== */

#backTop{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:linear-gradient(
        135deg,
        #1565c0,
        #1e88e5
    );

    color:#fff;

    font-size:28px;

    cursor:pointer;

    box-shadow:0 10px 28px rgba(0,0,0,.28);

    opacity:0;
    visibility:hidden;

    transition:all .3s ease;

    z-index:999;
}

#backTop.show{

    opacity:1;
    visibility:visible;
}

#backTop:hover{

    background:linear-gradient(
        135deg,
        #d4af37,
        #f3cb54
    );

    color:#111;

    transform:translateY(-4px);
}


/* ==========================
DARK MODE
========================== */

body.dark-mode #footer{
    background:#0b0b0b;
}

body.dark-mode .footer-col p{
    color:#bdbdbd;
}

body.dark-mode .footer-col a{
    color:#d8d8d8;
}

body.dark-mode .footer-col a:hover{
    color:#42a5f5;
}

body.dark-mode .footer-bottom{
    background:#080808;
    color:#9b9b9b;
}


/* ==========================
MOBILE
========================== */

@media(max-width:768px){

    .footer-container{

        padding:50px 15px;

        gap:35px;

        text-align:center;
    }

    .footer-col h3::after{

        margin:10px auto 0;
    }

    .footer-col a:hover{

        transform:none;
    }

    .floating-whatsapp,
    #backTop{

        width:55px;
        height:55px;

        font-size:26px;

        right:18px;
    }

}


















/* ====================================
   SINGLE POST
==================================== */

/* =========================
POST WRAPPER
========================= */

.esco-single{
    max-width:1500px;
    width:100%;
    margin:40px auto;
    padding:0 20px;
    box-sizing:border-box;
}


/* =========================
BREADCRUMB
========================= */

.post-breadcrumb{
    margin-bottom:18px;
    font-size:14px;
    color:#777;
}

.post-breadcrumb a{
    color:#1e73be;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.post-breadcrumb a:hover{
    color:#d4af37;
}


/* =========================
CATEGORY BADGES
========================= */

.post-categories{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

.post-category{
    display:inline-block;
    padding:8px 18px;

    background:#1e73be;
    color:#fff;

    text-decoration:none;
    font-size:13px;
    font-weight:800;

    clip-path:polygon(
        10px 0,
        100% 0,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0 100%,
        0 10px
    );

    transition:all .3s ease;
}

.post-category:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-2px);
}


/* =========================
ACTION BUTTONS
========================= */

.post-actions{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin:30px 0;
}

.join-btn,
.follow-btn-post{
    flex:1;
    min-width:220px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:15px 20px;

    border-radius:12px;

    text-decoration:none;
    font-weight:800;

    transition:all .3s ease;
}

.join-btn{
    background:#25D366;
    color:#fff;
}

.follow-btn-post{
    background:#1e73be;
    color:#fff;
}

.join-btn:hover,
.follow-btn-post:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}


/* =========================
POST CONTAINER
========================= */

.single-container{
    background:#fff;

    padding:40px 35px;
    margin-top:20px;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}


/* =========================
FEATURED IMAGE
========================= */

.single-featured-image{
    text-align:center;
    margin:0 auto 30px;
}

.single-featured-image img{
    display:block;

    width:100%;
    max-width:700px;
    height:1%;

    margin:auto;

    border-radius:5px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:transform .35s ease;
}

.single-featured-image img:hover{
    transform:scale(1.02);
}


/* =========================
META
========================= */

.single-meta{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:18px;
}

.meta-author,
.meta-date{
    background:#f5f5f5;
    color:#444;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;
    font-weight:700;
}


/* =========================
TITLE
========================= */

.single-title{
    margin-bottom:25px;

    color:#111;

    font-size:36px;
    font-weight:900;
    line-height:1.2;
}


/* =========================
DARK MODE
========================= */

body.dark-mode .single-container{
    background:#1b1b1b;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
}

body.dark-mode .post-breadcrumb{
    color:#bdbdbd;
}

body.dark-mode .post-breadcrumb a{
    color:#4ea3ff;
}

body.dark-mode .post-breadcrumb a:hover{
    color:#d4af37;
}

body.dark-mode .single-title{
    color:#fff;
}

body.dark-mode .meta-author,
body.dark-mode .meta-date{
    background:#2b2b2b;
    color:#eee;
}

body.dark-mode .post-category:hover{
    color:#111;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:1000px){

    .single-featured-image img{
        max-width:550px;
    }

}

@media(max-width:768px){

    .single-container{
        padding:25px 20px;
    }

    .single-featured-image img{
        max-width:300px;
    }

    .single-title{
        font-size:28px;
    }

    .join-btn,
    .follow-btn-post{
        min-width:100%;
    }

}



















/* ====================================
   SINGLE CONTENT
==================================== */

.single-content{
    font-size:18px;
    line-height:1.9;
    color:#222;
}


/* =========================
TEXT ELEMENTS
========================= */

.single-content p{
    margin-bottom:20px;
}

.single-content h2,
.single-content h3{
    color:#1e73be;
    margin-top:30px;
}

.single-content strong{
    font-weight:800;
}


/* =========================
IMAGES
========================= */

.single-content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
}


/* =========================
VIDEO / EMBEDS
========================= */

.single-content iframe,
.single-content video{
    width:100% !important;
    max-width:100% !important;
    aspect-ratio:16/9;
    height:auto !important;

    border-radius:14px;
    display:block;
    margin:25px 0;
}


/* =========================
AUDIO PLAYER
========================= */

.audio-wrapper{
    background:#f2f2f2;
    border-radius:12px;

    padding:12px 16px;
    margin:25px 0;

    box-shadow:inset 0 0 0 1px #e0e0e0;
}

.audio-wrapper audio{
    width:100%;
    display:block;
    outline:none;
}

/* FIX AUDIO DISPLAY */
.single-content audio{
    width:100% !important;
    height:40px !important;
    display:block !important;
}

.single-content audio::-webkit-media-controls-panel{
    width:100%;
}


/* =========================
DARK MODE (CONTENT ONLY)
========================= */

body.dark-mode .single-content{
    color:#ddd;
}

body.dark-mode .single-content h1,
body.dark-mode .single-content h2,
body.dark-mode .single-content h3,
body.dark-mode .single-content h4,
body.dark-mode .single-content h5,
body.dark-mode .single-content h6{
    color:#4ea3ff;
}

body.dark-mode .single-content a{
    color:#4ea3ff;
}

body.dark-mode .single-content a:hover{
    color:#d4af37;
}

body.dark-mode .single-content strong{
    color:#fff;
}

body.dark-mode .single-content p,
body.dark-mode .single-content li,
body.dark-mode .single-content span{
    color:#ddd;
}

body.dark-mode .single-featured-image img{
    box-shadow:0 8px 25px rgba(0,0,0,.45);
}


/* =========================
RESPONSIVE SAFETY
========================= */

@media(max-width:768px){

    .single-content{
        font-size:16px;
    }

}














/* ====================================
   SHARE BOX
==================================== */

.share-title{
    text-align:center;
    font-size:20px;
    font-weight:800;
    margin-bottom:20px;
}

.share-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:15px;
}

.share-buttons a{
    min-width:140px;

    text-align:center;
    text-decoration:none;

    padding:14px 20px;
    border-radius:10px;

    font-weight:800;
    color:#fff;

    background:#1e73be;

    transition:.3s ease;
}

.share-buttons a:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){
    .share-buttons a{
        width:100%;
    }
}


/* ====================================
   PROMOTE MUSIC
==================================== */

.promote-music{
    background:linear-gradient(135deg,#1e73be,#0f5ca8);
    color:#fff;

    padding:35px;
    margin:40px 0;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.promote-icon{
    font-size:48px;
    margin-bottom:15px;
}

.promote-music h3{
    margin:0 0 15px;
    font-size:30px;
    font-weight:900;
}

.promote-music p{
    max-width:600px;
    margin:0 auto 25px;

    line-height:1.8;
    color:rgba(255,255,255,.95);
}

.promote-btn{
    display:inline-block;

    background:#25D366;
    color:#fff;

    padding:15px 30px;

    border-radius:50px;

    font-weight:900;
    text-decoration:none;

    transition:.3s ease;
}

.promote-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}


/* ====================================
   PREV / NEXT POSTS
==================================== */

.post-navigation{
    display:flex;
    gap:20px;
    margin:40px 0;
}

.post-navigation > a{
    flex:1;

    display:block;

    background:#fff;

    border-top:4px solid #1e73be;
    border-radius:14px;

    padding:20px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s ease;
}

.post-navigation > a:hover{
    transform:translateY(-4px);
}


/* NAV TEXT */
.nav-label{
    display:block;
    margin-bottom:10px;

    font-size:12px;
    font-weight:800;
    text-transform:uppercase;

    color:#1e73be;
}

.nav-title{
    display:block;

    font-size:18px;
    font-weight:800;
    line-height:1.4;

    color:#111;
}


/* ====================================
   MOBILE
==================================== */

@media(max-width:768px){

    .post-navigation{
        flex-direction:column;
    }

    .nav-title{
        font-size:16px;
    }
}











/* ====================================
   RELATED POSTS
==================================== */

.related-posts{
    margin:60px 0;
}

.related-title{
    font-size:28px;
    font-weight:900;
    margin-bottom:25px;
    text-align:center;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


/* CARD */
.related-card{
    background:#fff;

    border-radius:14px;
    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s ease;
}

.related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.related-card a{
    display:block;
    text-decoration:none;
}


/* IMAGE */
.related-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;

    transition:transform .4s ease;
}

.related-card:hover .related-thumb img{
    transform:scale(1.05);
}


/* CONTENT */
.related-content{
    padding:18px;
}

.related-content h3{
    font-size:18px;
    font-weight:800;
    line-height:1.4;

    margin:0 0 10px;

    color:#111;
    transition:.3s ease;
}

.related-card:hover .related-content h3{
    color:#1e73be;
}

.related-content span{
    font-size:13px;
    font-weight:600;
    color:#777;
}


/* MOBILE */
@media(max-width:768px){
    .related-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
}


/* ====================================
   AUTHOR BOX
==================================== */

.author-box{
    background:#fff;

    margin:60px 0;
    padding:35px;

    border-radius:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.author-box img{
    width:130px;
    height:130px;

    border-radius:50%;
    object-fit:cover;

    border:5px solid #d4af37;

    margin-bottom:20px;
}

.author-box h3{
    font-size:28px;
    font-weight:900;

    margin:0 0 12px;

    color:#111;
}

.author-box p{
    max-width:700px;

    font-size:16px;
    line-height:1.8;

    color:#555;
}

.author-links{
    margin-top:20px;
}

.author-links a{
    display:inline-block;

    padding:12px 24px;

    border-radius:30px;

    background:#1e73be;
    color:#fff;

    text-decoration:none;
    font-weight:700;

    transition:.3s ease;
}

.author-links a:hover{
    background:#d4af37;
    color:#111;
    transform:translateY(-3px);
}


/* ====================================
   DARK MODE
==================================== */

body.dark-mode .related-card{
    background:#1b1b1b;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

body.dark-mode .related-content h3{
    color:#eee;
}

body.dark-mode .related-card:hover .related-content h3{
    color:#4ea3ff;
}

body.dark-mode .related-content span{
    color:#aaa;
}

body.dark-mode .author-box{
    background:#1a1a1a;
    box-shadow:0 8px 25px rgba(0,0,0,.4);
}

body.dark-mode .author-box h3{
    color:#fff;
}

body.dark-mode .author-box p{
    color:#ddd;
}










/* ====================================
   COMMENTS (CLEAN SYSTEM)
==================================== */

.comments-area,
.esco-comments{
    background:#fff;
    margin:40px 0;
    padding:30px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}


/* =========================
TITLE
========================= */

.comments-title{
    font-size:26px;
    font-weight:900;
    margin-bottom:25px;
    text-align:center;
    color:#111;
}


/* =========================
COMMENT LIST
========================= */

.comment-list{
    list-style:none;
    margin:0;
    padding:0;
}

.comment{
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.comment:last-child{
    border-bottom:none;
}

.comment-body{
    display:flex;
    gap:18px;
}

.comment-author img{
    border-radius:50%;
    border:3px solid #d4af37;
}


/* =========================
META + CONTENT
========================= */

.comment-meta{
    margin-top:6px;
    font-size:13px;
    color:#777;
}

.comment-content{
    margin-top:15px;
    line-height:1.8;
    color:#222;
}


/* =========================
REPLY BUTTON
========================= */

.comment-reply-link,
.reply a{
    display:inline-block;
    margin-top:15px;
    padding:8px 16px;

    border-radius:8px;

    background:#1e73be;
    color:#fff;

    font-weight:700;
    text-decoration:none;

    transition:.3s ease;
}

.comment-reply-link:hover,
.reply a:hover{
    background:#d4af37;
    color:#111;
}


/* =========================
COMMENT FORM
========================= */

.comment-form input,
.comment-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:15px;
    background:#fff;
    color:#111;
}

.comment-form textarea{
    min-height:180px;
}

.comment-form input[type="submit"]{
    width:auto;
    padding:15px 35px;

    background:#1e73be;
    color:#fff;

    border:none;
    border-radius:10px;

    font-weight:800;
    cursor:pointer;

    transition:.3s ease;
}

.comment-form input[type="submit"]:hover{
    background:#d4af37;
    color:#111;
}


/* ====================================
   DARK MODE (FIXED + CONSISTENT)
==================================== */

body.dark-mode .comments-area,
body.dark-mode .esco-comments{
    background:#1a1a1a;
    box-shadow:0 5px 20px rgba(0,0,0,.35);
}

body.dark-mode .comments-title{
    color:#fff;
}

body.dark-mode .comment{
    border-bottom:1px solid rgba(255,255,255,.08);
}

body.dark-mode .comment-meta{
    color:#bdbdbd;
}

body.dark-mode .comment-content{
    color:#e5e5e5;
}

body.dark-mode .comment-form input,
body.dark-mode .comment-form textarea{
    background:#111;
    border:1px solid #333;
    color:#fff;
}

body.dark-mode .comment-form input::placeholder,
body.dark-mode .comment-form textarea::placeholder{
    color:#888;
}

/* =========================
ADVERTISEMENT BOX
========================= */

.ad-box{
    width:100%;

    margin:35px 0;
    padding:15px;

    background:#fff;

    border-radius:16px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    text-align:center;
}

.ad-label{
    display:inline-block;

    margin-bottom:12px;

    padding:4px 12px;

    background:#f3f3f3;

    border-radius:20px;

    font-size:11px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    color:#777;
}

.ad-placeholder{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px dashed #d4af37;
    border-radius:12px;

    background:#fafafa;

    color:#999;
    font-weight:700;
}

.ad-banner{ height:90px; }
.ad-rectangle{ height:280px; }
.ad-large{ height:300px; }

@media(max-width:768px){
    .ad-banner{ height:100px; }
    .ad-rectangle,
    .ad-large{ height:250px; }
}


/* ====================================
   SINGLE LAYOUT (MAIN + SIDEBAR)
==================================== */

.single-layout{
    display:flex;
    align-items:flex-start;
    gap:30px;
}

.single-main{
    flex:1;
    min-width:0;
}

/* SIDEBAR ONLY POSITIONING (NO REDESIGN HERE) */
.single-sidebar{
    width:330px;
    flex:0 0 330px;

    position:sticky;
    top:20px;

    align-self:flex-start;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .single-layout{
        flex-direction:column;
    }

    .single-sidebar{
        width:100%;
        position:static;
    }
}




















/* ==================================
CATEGORY / TAG ARCHIVES
================================== */

/* =========================
GLOBAL WIDTH SYSTEM
========================= */

.archive-container{
    max-width:1400px;
    margin:auto;
    padding:30px 20px;
}

/* =========================
BREADCRUMB
========================= */

.archive-breadcrumb{
    font-size:14px;
    margin-bottom:25px;
}

.archive-breadcrumb a{
    text-decoration:none;
    color:#1e73be;
}

.archive-breadcrumb span{
    margin:0 5px;
}

/* =========================
HEADER
========================= */

.archive-header{
    margin-bottom:35px;
    border-bottom:3px solid #d4af37;
    padding-bottom:15px;
}

.archive-header h1{
    font-size:36px;
    margin:0;
    color:#1e73be;
}

.archive-count{
    color:#777;
    font-size:15px;
}

/* =========================
LAYOUT (FIXED SIDEBAR SYSTEM)
========================= */

.archive-layout{
    display:flex;
    gap:35px;
    align-items:flex-start;
}

/* MAIN CONTENT */
.archive-main{
    flex:1;
    min-width:0;
}

/* SIDEBAR (RIGHT SIDE FIX) */
.archive-sidebar{
    width:330px;
    flex-shrink:0;

    position:sticky;
    top:20px;
}

/* =========================
POST CARD
========================= */

.archive-post{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
    border-left:4px solid transparent;

    transition:all .35s ease;
}

.archive-post:hover{
    transform:translateY(-5px);
    border-left:4px solid #d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.14);
}

.archive-post a{
    display:flex;
    gap:18px;
    align-items:center;

    text-decoration:none;
    color:inherit;

    padding:15px;
}

/* =========================
THUMBNAIL
========================= */

.archive-thumb{
    width:190px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
}

.archive-thumb img{
    width:100%;
    height:120px;
    object-fit:cover;
    transition:transform .4s ease;
}

.archive-post:hover .archive-thumb img{
    transform:scale(1.05);
}

/* =========================
CONTENT
========================= */

.archive-content{
    flex:1;
}

.archive-content h2{
    margin:0;
    font-size:24px;
    line-height:1.35;

    transition:color .3s ease;
}

.archive-post:hover h2{
    color:#1e73be;
}

.archive-meta{
    margin-top:12px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;

    color:#777;
    font-size:14px;
}

/* =========================
PAGINATION
========================= */

.archive-pagination{
    margin:40px 0;
    text-align:center;
}

.archive-pagination .page-numbers{
    display:inline-block;
    margin:5px;
    padding:10px 16px;

    border-radius:8px;
    background:#222;
    color:#fff;

    text-decoration:none;
}

.archive-pagination .current{
    background:#d4af37;
    color:#000;
}

/* =========================
MOBILE FIX (IMPORTANT)
========================= */

@media(max-width:768px){

    .archive-layout{
        flex-direction:column;
    }

    .archive-sidebar{
        width:100%;
        position:static;
        margin-top:30px;
    }

    .archive-post a{
        gap:12px;
    }

    .archive-thumb{
        width:120px;
    }

    .archive-thumb img{
        height:90px;
    }

    .archive-content h2{
        font-size:18px;
    }

    .archive-meta{
        font-size:12px;
        gap:10px;
    }
}


body.dark-mode .archive-post{
    background:#1b1b1b;
    box-shadow:0 8px 20px rgba(0,0,0,.35);
}

body.dark-mode .archive-content h2{
    color:#eaeaea;
}

body.dark-mode .archive-meta{
    color:#bdbdbd;
}

body.dark-mode .archive-header{
    border-color:#d4af37;
}

body.dark-mode .archive-count{
    color:#aaa;
}

body.dark-mode .archive-sidebar{
    background:#1a1a1a;
}







/* ==================================
   GLOBAL WIDTH SYSTEM (CONSISTENT)
================================== */

.archive-container,
.search-container,
.post-tags,
.search-page{
    max-width:1400px;
    margin:auto;
    padding:30px 20px;
    box-sizing:border-box;
}


/* ==================================
   ARCHIVE LAYOUT (SIDEBAR SAFE)
================================== */

.archive-layout{
    display:flex;
    gap:35px;
    align-items:flex-start;
}

.archive-main{
    flex:1;
    min-width:0;
}


/* ==================================
   ARCHIVE HEADER
================================== */

.archive-header{
    margin-bottom:30px;
    border-bottom:3px solid #d4af37;
    padding-bottom:12px;
}

.archive-header h1{
    font-size:36px;
    margin:0;
    color:#1e73be;
}

.archive-count{
    font-size:15px;
    color:#777;
    margin-top:6px;
}

.archive-breadcrumb{
    font-size:14px;
    margin-bottom:20px;
}

.archive-breadcrumb a{
    color:#1e73be;
    text-decoration:none;
}

.archive-breadcrumb span{
    margin:0 5px;
    color:#777;
}


/* ==================================
   ARCHIVE POST CARD
================================== */

.archive-post{
    background:#fff;
    border-radius:14px;
    margin-bottom:18px;
    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
    border-left:4px solid transparent;

    transition:all .3s ease;
}

.archive-post:hover{
    transform:translateY(-5px);
    border-left:4px solid #d4af37;
    box-shadow:0 15px 35px rgba(0,0,0,.14);
}

.archive-post a{
    display:flex;
    gap:18px;
    align-items:center;
    padding:15px;
    text-decoration:none;
    color:inherit;
}


/* ==================================
   THUMBNAIL (FIXED HEIGHT SYSTEM)
================================== */

.archive-thumb{
    width:190px;
    flex-shrink:0;
    border-radius:10px;
    overflow:hidden;
}

.archive-thumb img{
    width:100%;
    height:120px;
    object-fit:cover;
    transition:transform .4s ease;
}

.archive-post:hover .archive-thumb img{
    transform:scale(1.05);
}


/* ==================================
   CONTENT
================================== */

.archive-content{
    flex:1;
}

.archive-content h2{
    margin:0;
    font-size:24px;
    line-height:1.35;
    transition:.3s;
}

.archive-post:hover h2{
    color:#1e73be;
}

.archive-meta{
    margin-top:10px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    font-size:14px;
    color:#777;
}


/* ==================================
   PAGINATION
================================== */

.archive-pagination{
    margin:40px 0;
    text-align:center;
}

.archive-pagination .page-numbers{
    display:inline-block;
    padding:10px 16px;
    margin:4px;
    border-radius:8px;
    background:#222;
    color:#fff;
    text-decoration:none;
}

.archive-pagination .current{
    background:#d4af37;
    color:#000;
}


/* ==================================
   TAGS
================================== */

.tags-list{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
}

.tags-list a{
    background:#f3f3f3;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    color:#444;
    transition:.3s;
}

.tags-list a:hover{
    background:#1e73be;
    color:#fff;
    transform:translateY(-2px);
}


/* ==================================
   SEARCH PAGE
================================== */

.search-results{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.search-card{
    display:flex;
    gap:25px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.search-card:hover{
    transform:translateY(-4px);
}

.search-thumb{
    width:300px;
    flex-shrink:0;
}

.search-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.search-content{
    padding:25px;
    flex:1;
}


/* ==================================
   MOBILE FIX (IMPORTANT)
================================== */

@media(max-width:900px){

    .archive-layout{
        flex-direction:column;
    }

    .search-card{
        flex-direction:column;
    }

    .archive-thumb{
        width:120px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
  /* ==================================
   PAGE LAYOUT (WITH SIDEBAR)
================================== */

.esco-page-layout{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;

    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* MAIN AREA */
.esco-page-main{
    flex:1;
    min-width:0;
}


/* ==================================
   PAGE HERO
================================== */

.page-hero{
    text-align:center;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:3px solid #d4af37;
}

.page-title{
    font-size:38px;
    font-weight:900;
    margin:0;
    color:#1e73be;
}


/* ==================================
   PAGE CONTENT CARD
================================== */

.page-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

    font-size:18px;
    line-height:1.9;
    color:#222;
}


/* CONTENT STYLING */
.page-body h2,
.page-body h3{
    color:#1e73be;
    margin-top:25px;
}

.page-body p{
    margin-bottom:18px;
}


/* ==================================
   SIDEBAR POSITION FIX (RIGHT SIDE)
================================== */

#sidebar{
    width:330px;
    flex-shrink:0;

    position:sticky;
    top:20px;
    align-self:flex-start;
}


/* ==================================
   MOBILE FIX (IMPORTANT)
================================== */

@media(max-width:992px){

    .esco-page-layout{
        flex-direction:column;
    }

    #sidebar{
        width:100%;
        position:static;
    }

    .page-title{
        font-size:28px;
    }

    .page-card{
        padding:25px;
    }
}


/* ==================================
   DARK MODE
================================== */

body.dark-mode .page-card{
    background:#1a1a1a;
    color:#eaeaea;
    box-shadow:0 5px 20px rgba(0,0,0,.35);
}

body.dark-mode .page-title{
    color:#fff;
}

body.dark-mode .page-hero{
    border-color:#d4af37;
}

body.dark-mode .page-body h2,
body.dark-mode .page-body h3{
    color:#4ea3ff;
}

body.dark-mode .page-body p{
    color:#ddd;
}

    .archive-thumb img{
        height:90px;
    }

    .search-thumb{
        width:100%;
    }

    .search-thumb img{
        height:220px;
    }

    .archive-content h2{
        font-size:18px;
    }
}

/* ==========================
   PAGE LAYOUT SYSTEM
========================== */

.page-layout{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;

    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* MAIN CONTENT */
.page-content{
    flex:1;
    min-width:0;
}

/* SIDEBAR (RIGHT SIDE ON DESKTOP) */
.page-sidebar{
    width:330px;
    flex:0 0 330px;

    position:sticky;
    top:20px;
    align-self:flex-start;
}

/* ==========================
   MOBILE FIX
========================== */

@media(max-width:992px){

    .page-layout{
        flex-direction:column;
    }

    .page-sidebar{
        width:100%;
        position:static;
    }
}


/* ==========================
   PAGE DEFAULT STYLE RESET
========================== */

.page-content{
    font-size:18px;
    line-height:1.9;
    color:#222;
}

.page-content h1,
.page-content h2,
.page-content h3{
    color:#1e73be;
    margin-top:25px;
}

.page-content p{
    margin-bottom:18px;
}

.page-content img{
    max-width:100%;
    border-radius:12px;
}

/* ==========================
   PAGE LAYOUT FIX
========================== */

.page-layout{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;

    display:flex;
    gap:30px;
    align-items:flex-start;
}

/* MAIN */
.page-content{
    flex:1;
    min-width:0;
}

/* SIDEBAR (YOUR EXISTING ONE) */
#sidebar{
    width:330px;
    flex-shrink:0;

    position:sticky;
    top:20px;
    align-self:flex-start;
}

/* ==========================
   MOBILE FIX
========================== */

@media(max-width:992px){

    .page-layout{
        flex-direction:column;
    }

    #sidebar{
        width:100%;
        position:static;
    }
}
body.dark-mode .page-card{
    background:#1a1a1a;
    color:#ddd;
}

body.dark-mode .page-title{
    color:#fff;
}

body.dark-mode .page-body{
    color:#ddd;
}  