/*=========================================
BLOG HERO
=========================================*/

.blog-hero{

    position:relative;

    padding:120px 0 60px;

    background:linear-gradient(135deg,#07111f,#0f172a,#111827);

    overflow:hidden;

}

.blog-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    right:-220px;

    top:-220px;

    background:rgba(212,175,55,.08);

    border-radius:50%;

    filter:blur(90px);

}

.blog-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    bottom:-180px;

    background:rgba(255,255,255,.03);

    border-radius:50%;

    filter:blur(80px);

}

.blog-hero .container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

/*====================
Badge
=====================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:rgba(212,175,55,.12);

    border:1px solid rgba(212,175,55,.35);

    color:#d4af37;

    font-weight:600;

    margin-bottom:28px;

}

.hero-badge i{

    font-size:18px;

}

/*====================
Heading
=====================*/

.blog-hero h1{

    color:#fff;

    font-size:64px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:28px;

}

.blog-hero h1 span{

    color:#d4af37;

}

.blog-hero p{

    color:#cbd5e1;

    font-size:18px;

    line-height:32px;

    margin-bottom:38px;

    max-width:640px;

}

/*====================
Search
=====================*/

.blog-search{

    display:flex;

    background:#fff;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

    margin-bottom:35px;

}

.blog-search input{

    flex:1;

    border:none;

    outline:none;

    padding:20px 25px;

    font-size:17px;

    color:#111827;

}

.blog-search button{

    background:#d4af37;

    color:#111827;

    border:none;

    padding:0 34px;

    cursor:pointer;

    font-weight:700;

    transition:.35s;

}

.blog-search button:hover{

    background:#f2c94c;

}

/*====================
Trending
=====================*/

.trending-tags{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:14px;

}

.trending-tags span{

    color:#fff;

    font-weight:700;

}

.trending-tags a{

    text-decoration:none;

    color:#d4af37;

    border:1px solid rgba(212,175,55,.35);

    padding:10px 18px;

    border-radius:40px;

    transition:.35s;

}

.trending-tags a:hover{

    background:#d4af37;

    color:#111827;

}

/*====================
Image
=====================*/

.blog-hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.blog-hero-image img{

    width:100%;

    max-width:560px;

    display:block;

    border-radius:24px;

    box-shadow:0 40px 80px rgba(0,0,0,.35);

    transition:.5s;

}

.blog-hero-image img:hover{

    transform:translateY(-8px);

}

@keyframes floatHero{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================
Stats
=====================*/

.hero-stats{

    max-width:1350px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    padding:0 20px;

}

.stat-item{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    border:1px solid rgba(212,175,55,.18);

    border-radius:18px;

    padding:30px;

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

}

.stat-item:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

}

.stat-item i{

    width:62px;

    height:62px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#d4af37;

    color:#111827;

    font-size:24px;

}

.stat-item h3{

    color:#fff;

    font-size:34px;

    margin-bottom:6px;

}

.stat-item p{

    color:#cbd5e1;

    margin:0;

    font-size:15px;

    line-height:24px;

}

/*====================
Responsive
=====================*/

@media(max-width:1200px){

.blog-hero h1{

font-size:52px;

}

.hero-stats{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.blog-hero{

padding:90px 0 50px;

}

.blog-hero .container{

grid-template-columns:1fr;

text-align:center;

}

.blog-hero p{

margin:auto auto 35px;

}

.blog-search{

flex-direction:column;

}

.blog-search button{

padding:18px;

}

.trending-tags{

justify-content:center;

}

.blog-hero-image{

margin-top:50px;

}

.hero-stats{

grid-template-columns:1fr;

margin-top:50px;

}

.stat-item{

text-align:left;

}

}

@media(max-width:768px){

.blog-hero h1{

font-size:40px;

line-height:1.2;

}

.blog-hero p{

font-size:16px;

line-height:28px;

}

.blog-search input{

padding:18px;

}

.blog-search button{

width:100%;

}

.hero-stats{

padding:0 15px;

}

.stat-item{

padding:22px;

}

.stat-item h3{

font-size:28px;

}

}

/*=========================================
LATEST POSTS
=========================================*/

.latest-posts{

    padding:120px 0;

    background:#f8fafc;

}

.posts-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.post-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.post-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.post-image{

    position:relative;

    overflow:hidden;

}

.post-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.post-card:hover img{

    transform:scale(1.08);

}

.category{

    position:absolute;

    top:18px;

    left:18px;

    background:#d4af37;

    color:#111827;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

}

.post-content{

    padding:28px;

}

.post-meta{

    display:flex;

    justify-content:space-between;

    margin-bottom:18px;

    color:#64748b;

    font-size:14px;

}

.post-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.post-content h3{

    font-size:24px;

    color:#111827;

    margin-bottom:15px;

    line-height:1.4;

}

.post-content p{

    color:#64748b;

    line-height:30px;

    margin-bottom:22px;

}

.read-more{

    color:#d4af37;

    text-decoration:none;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:10px;

    transition:.3s;

}

.read-more:hover{

    gap:16px;

}

@media(max-width:992px){

.posts-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.latest-posts{

padding:80px 0;

}

.posts-grid{

grid-template-columns:1fr;

}

.post-image img{

height:220px;

}

.post-content{

padding:22px;

}

.post-content h3{

font-size:21px;

}

}

/*=========================================
BLOG CATEGORIES
=========================================*/

.blog-categories{

    padding:120px 0;

    background:#ffffff;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.category-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    text-decoration:none;

    border:1px solid #ececec;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.category-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.category-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111827;

    color:#d4af37;

    font-size:34px;

    transition:.35s;

}

.category-card:hover .category-icon{

    transform:rotate(8deg) scale(1.08);

    background:#d4af37;

    color:#111827;

}

.category-card h3{

    font-size:24px;

    color:#111827;

    margin-bottom:10px;

}

.category-card span{

    color:#64748b;

    font-size:15px;

}

/*====================
Responsive
====================*/

@media(max-width:1200px){

.category-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.category-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.blog-categories{

padding:80px 0;

}

.category-grid{

grid-template-columns:1fr;

gap:20px;

}

.category-card{

padding:30px;

}

.category-icon{

width:75px;

height:75px;

font-size:28px;

}

.category-card h3{

font-size:22px;

}

}

/*=========================================
POPULAR POSTS
=========================================*/

.popular-posts{

    padding:120px 0;

    background:#f8fafc;

}

.popular-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:40px;

    margin-top:70px;

}

/* FEATURED */

.featured-post{

    position:relative;

    border-radius:24px;

    overflow:hidden;

}

.featured-post img{

    width:100%;

    height:100%;

    min-height:520px;

    object-fit:cover;

    transition:.5s;

}

.featured-post:hover img{

    transform:scale(1.08);

}

.featured-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.92),
    rgba(0,0,0,.25));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:45px;

}

.featured-badge{

    display:inline-block;

    width:max-content;

    background:#d4af37;

    color:#111827;

    padding:8px 18px;

    border-radius:30px;

    font-weight:700;

    margin-bottom:18px;

}

.featured-overlay h2{

    color:#fff;

    font-size:34px;

    line-height:1.35;

    margin-bottom:18px;

}

.featured-overlay p{

    color:#e5e7eb;

    line-height:30px;

    margin-bottom:28px;

}

.featured-btn{

    width:max-content;

    text-decoration:none;

    background:#d4af37;

    color:#111827;

    padding:15px 28px;

    border-radius:10px;

    font-weight:700;

    transition:.35s;

}

.featured-btn:hover{

    background:#f3c948;

}

/* LIST */

.popular-list{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.popular-item{

    display:flex;

    gap:18px;

    background:#fff;

    border-radius:18px;

    padding:18px;

    align-items:center;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.popular-item:hover{

    transform:translateX(8px);

}

.popular-item img{

    width:130px;

    height:100px;

    border-radius:12px;

    object-fit:cover;

}

.popular-category{

    display:inline-block;

    background:#111827;

    color:#d4af37;

    padding:6px 14px;

    border-radius:20px;

    font-size:13px;

    margin-bottom:12px;

}

.popular-item h4{

    color:#111827;

    font-size:20px;

    line-height:1.4;

    margin-bottom:10px;

}

.popular-item small{

    color:#64748b;

}

.popular-item i{

    color:#d4af37;

    margin-right:6px;

}

/* RESPONSIVE */

@media(max-width:992px){

.popular-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.popular-posts{

padding:80px 0;

}

.featured-overlay{

padding:30px;

}

.featured-overlay h2{

font-size:28px;

}

.popular-item{

flex-direction:column;

align-items:flex-start;

}

.popular-item img{

width:100%;

height:220px;

}

}

/*=========================================
NEWSLETTER
=========================================*/

.newsletter{

    padding:120px 0;

    background:linear-gradient(135deg,#0f172a,#111827);

}

.newsletter-wrapper{

    display:grid;

    grid-template-columns:1fr 480px;

    gap:60px;

    align-items:center;

}

.newsletter-content h2{

    color:#fff;

    font-size:48px;

    margin:25px 0;

    line-height:1.25;

}

.newsletter-content p{

    color:#d1d5db;

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

}

.newsletter-features{

    list-style:none;

    padding:0;

}

.newsletter-features li{

    display:flex;

    align-items:center;

    gap:14px;

    color:#fff;

    margin-bottom:18px;

    font-size:17px;

}

.newsletter-features i{

    color:#d4af37;

}

.newsletter-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:35px;

    text-align:center;

}

.newsletter-box img{

    width:170px;

    margin-bottom:25px;

}

.newsletter-box form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.newsletter-box input{

    width:100%;

    height:58px;

    border:none;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;

    outline:none;

}

.newsletter-box button{

    height:58px;

    border:none;

    border-radius:12px;

    background:#d4af37;

    color:#111827;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.newsletter-box button:hover{

    background:#f3c948;

}

.newsletter-box small{

    display:block;

    margin-top:20px;

    color:#d1d5db;

}

.newsletter-box small i{

    color:#d4af37;

    margin-right:8px;

}

/*====================
Responsive
====================*/

@media(max-width:992px){

.newsletter{

padding:90px 0;

}

.newsletter-wrapper{

grid-template-columns:1fr;

}

.newsletter-content{

text-align:center;

}

.newsletter-features{

display:inline-block;

text-align:left;

margin-top:20px;

}

.newsletter-box{

margin-top:20px;

}

}

@media(max-width:768px){

.newsletter-content h2{

font-size:34px;

}

.newsletter-content p{

font-size:16px;

line-height:28px;

}

.newsletter-box{

padding:25px;

}

.newsletter-box img{

width:140px;

}

}

/*=========================================
BLOG CTA
=========================================*/

.blog-cta{

    padding:120px 0;

    background:linear-gradient(135deg,#111827,#0f172a,#07111f);

    overflow:hidden;

}

.cta-wrapper{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    align-items:center;

    gap:70px;

}

.cta-content h2{

    color:#ffffff;

    font-size:52px;

    line-height:1.2;

    margin:25px 0;

}

.cta-content p{

    color:#d1d5db;

    font-size:18px;

    line-height:32px;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#d4af37;

    color:#111827;

    padding:18px 34px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    background:#f4c94b;

    transform:translateY(-4px);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.25);

    padding:18px 34px;

    border-radius:10px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-secondary:hover{

    background:#ffffff;

    color:#111827;

}

.cta-image{

    text-align:center;

}

.cta-image img{

    width:100%;

    max-width:500px;

    animation:floatCTA 5s ease-in-out infinite;

}

@keyframes floatCTA{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================
Responsive
====================*/

@media(max-width:992px){

.blog-cta{

padding:90px 0;

}

.cta-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.cta-buttons{

justify-content:center;

}

.cta-image{

margin-top:40px;

}

}

@media(max-width:768px){

.cta-content h2{

font-size:38px;

}

.cta-content p{

font-size:16px;

line-height:28px;

}

.cta-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

justify-content:center;

width:100%;

}

}