
/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111827;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:#fff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}

.logo{
    font-size:30px;
    font-weight:800;
    color:#111827;
}

nav a{
    color:#374151;
    margin-left:25px;
    font-weight:500;
}

nav a:hover{
    color:#111827;
}

/* =========================
   HERO
========================= */

.hero{
    max-width:1320px;
    margin:40px auto 0px;
    padding:0 20px;
}

.hero-grid{
    display:grid;
    grid-template-columns:2fr 340px;
    gap:30px;
}

.hero-main{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    height:500px;
}

.hero-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15)
    );

    display:flex;
    align-items:flex-end;
    padding:50px;
}

.hero-category{
    display:inline-block;

    background:rgba(255,255,255,.15);

    color:white;

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;
}

.hero-content h1{
    color:white;
    font-size:54px;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    color:#e5e7eb;
    font-size:18px;
}

.hero-meta{
    margin-top:20px;
    color:#d1d5db;
    font-size:14px;
}

/* =========================
   HERO SIDEBAR
========================= */

.hero-side{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.side-highlight{
    background:white;

    border:1px solid #e4e4e4;

    border-radius:20px;

    padding:20px;
}

.side-highlight h3{
    margin-bottom:10px;
    font-size:18px;
}

.side-item{
    padding:10px 0;
    border-bottom:1px solid #f7f7f7;
}

.side-item:last-child{
    border:none;
}

.side-item a{
    color:#111827;
    font-weight:500;
}

.side-item a:hover{
    color:#2563eb;
}

/* =========================
   FEATURED INSIGHTS
========================= */

.editorial-section{
    max-width:1320px;
    margin:0 auto 80px;
    padding:0 20px;

    display:grid;
    grid-template-columns:2fr 320px;
    gap:60px;
}

.section-heading{
    margin-bottom:30px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
}

.editorial-item{
    display:grid;
    grid-template-columns:1fr 220px;
    gap:30px;

    padding:28px 0;

    border-bottom:1px solid #ececec;

    color:#111827;
}

.editorial-item:hover h3{
    color:#2563eb;
}

.editorial-category{
    font-size:12px;
    font-weight:700;
    color:#2563eb;
}

.editorial-item h3{
    margin:10px 0;
    font-size:28px;
    line-height:1.3;
}

.editorial-item p{
    color:#6b7280;
}

.editorial-meta{
    margin-top:15px;
    color:#9ca3af;
    font-size:14px;
}

.editorial-thumb img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:12px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar-box{
    margin-bottom:40px;
    padding-top: 30px;
}

.sidebar-box h3{
    margin-bottom:20px;
}

.topic-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.topic-pill{
    border:1px solid #e5e7eb;

    padding:10px 16px;

    border-radius:999px;

    color:#111827;

    font-size:14px;
}

.topic-pill:hover{
    background:#111827;
    color:white;
}

.newsletter-btn{
    display:inline-block;

    margin-top:15px;

    background:#111827;

    color:white;

    padding:12px 18px;

    border-radius:10px;
}

/* =========================
   LATEST ARTICLES
========================= */

.latest-section{
    padding-bottom:10px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:white;

    border:1px solid #ececec;

    border-radius:20px;

    overflow:hidden;

    color:#111827;

    transition:.25s;
}

.blog-card:hover{
    transform:translateY(-4px);
}

.blog-image{
    height:220px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.blog-content{
    padding:22px;
}

.blog-tag{
    color:#2563eb;
    font-size:12px;
    font-weight:700;
}

.blog-content h3{
    margin:12px 0;
    font-size:22px;
    line-height:1.35;
}

.blog-content p{
    color:#6b7280;
}

.blog-meta{
    margin-top:18px;
    color:#9ca3af;
    font-size:14px;
}

/* =========================
   PAGINATION
========================= */

.pagination{
    display:flex;
    justify-content:center;
    gap:12px;

    margin:70px 0;
}

.pagination a{
    width:46px;
    height:46px;

    border:1px solid #e5e7eb;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#111827;

    transition:.2s;
}

.pagination a:hover{
    background:#035ee6;
    color:white;
}

/* =========================
   CTA
========================= */

.cta-section{
    max-width:1320px;
    margin:auto;
    padding:0 20px 100px;
}

.cta-box{
    background:#035ee6;

    color:white;

    border-radius:30px;

    text-align:center;

    padding:90px 60px;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    color:#d1d5db;
}

.cta-buttons{
    margin-top:30px;
}

.cta-btn{
    display:inline-block;

    background:white;

    color:#111827;

    padding:14px 28px;

    border-radius:12px;

    font-weight:600;

    margin:0 8px;
}

.secondary-btn{
    background:transparent;
    color:white;
    border:1px solid rgba(255,255,255,.3);
}

/* =========================
   FOOTER
========================= */

footer{
    border-top:1px solid #ececec;
    padding:40px 0;
    text-align:center;
    color:#6b7280;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
}

.editorial-section{
    grid-template-columns:1fr;
}

.blog-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.hero-main{
    height:350px;
}

.hero-content h1{
    font-size:34px;
}

.editorial-item{
    grid-template-columns:1fr;
}

.blog-grid{
    grid-template-columns:1fr;
}

.cta-box{
    padding:60px 25px;
}

.cta-box h2{
    font-size:32px;
}

}




/* =========================
ARTICLE PAGE
========================= */

.article-page{
    padding:60px 0;
}

.article-container{
    max-width:900px;
    margin:auto;
    padding:0 20px;
}

.breadcrumb{
    display:flex;
    gap:10px;
    align-items:center;

    color:#9ca3af;

    font-size:14px;

    margin-bottom:30px;
}

.breadcrumb a{
    color:#6b7280;
}

.article-category{
    display:inline-block;

    color:#2563eb;

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

    margin-bottom:15px;
}

.article-header h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:25px;
}

.article-excerpt{
    font-size:24px;
    line-height:1.6;
    color:#6b7280;
    margin-bottom:35px;
}

.article-meta{
    margin-bottom:40px;
}

.author-box{
    display:flex;
    align-items:center;
    gap:15px;
}

.author-avatar{
    width:50px;
    height:50px;

    border-radius:50%;

    background:#111827;

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
}

.meta-small{
    color:#9ca3af;
    margin-top:4px;
    font-size:14px;
}

.article-cover{
    width:100%;
    border-radius:24px;
    margin-bottom:60px;
    max-height:550px;
    object-fit:cover;
}

.article-content{
    font-size:19px;
    line-height:1.9;
}

.article-content h2{
    margin-top:60px;
    margin-bottom:20px;
    font-size:38px;
}

.article-content h3{
    margin-top:40px;
    margin-bottom:15px;
}

.article-content p{
    margin-bottom:25px;
}

.article-content img{
    max-width:100%;
    border-radius:16px;
    margin:30px 0;
}

.article-content ul,
.article-content ol{
    margin-left:25px;
    margin-bottom:25px;
}

.article-content blockquote{
    border-left:4px solid #2563eb;
    padding-left:20px;
    color:#6b7280;
    margin:30px 0;
}

/* =========================
RELATED ARTICLES
========================= */

.related-section{
    padding:80px 0;
}

.related-section h2{
    margin-bottom:30px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.related-card{
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    color:#111827;
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-content{
    padding:20px;
}

.related-content span{
    color:#2563eb;
    font-size:12px;
    font-weight:700;
}

.related-content h3{
    margin-top:10px;
    font-size:20px;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.article-header h1{
    font-size:38px;
}

.article-excerpt{
    font-size:18px;
}

.related-grid{
    grid-template-columns:1fr;
}

}


/* CATEGORY PAGE */

.category-hero{
    padding:80px 0 50px;
    text-align:center;
}

.category-label{
    display:inline-block;
    font-size:12px;
    letter-spacing:.1em;
    color:#2563eb;
    font-weight:700;
    margin-bottom:15px;
}

.category-hero h1{
    font-size:56px;
    margin-bottom:15px;
}

.category-hero p{
    color:#6b7280;
    max-width:600px;
    margin:auto;
}

.category-posts{
    padding-bottom:100px;
}


.logo img {
  height: 74px;
  width: auto;
  display: block;
}

