
/* =========================================
BLOG PAGE
========================================= */

.blog-hero-section{
    position:relative;
    overflow:hidden;
    padding:180px 0 140px;
    background:
    radial-gradient(circle at top left,
    rgba(255,0,0,0.15),
    transparent 40%),
    radial-gradient(circle at bottom right,
    rgba(255,80,0,0.12),
    transparent 40%),
    #050505;
}

.blog-hero-glow{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(255,0,0,0.2);
    filter:blur(140px);
    top:-120px;
    right:-120px;
}

.blog-hero-content{
    position:relative;
    z-index:2;
    max-width:950px;
    margin:auto;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:60px;
    background:rgba(255,0,0,0.08);
    border:1px solid rgba(255,0,0,0.2);
    color:#ff3b1d;
    font-size:13px;
    font-weight:700;
    margin-bottom:28px;
}

.blog-hero-title{
    font-size:68px;
    line-height:1.08;
    font-weight:900;
    color:#ffffff;
    letter-spacing:-2px;
    margin-bottom:30px;
}

.blog-hero-desc{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:2;
    color:#b5b5b5;
}

/* =========================================
GLOBAL SECTION
========================================= */

.section-title{
    font-size:52px;
    line-height:1.1;
    color:#ffffff;
    font-weight:900;
    letter-spacing:-2px;
}

.section-center{
    max-width:850px;
    margin:auto auto 80px;
    text-align:center;
}

/* =========================================
FEATURED BLOG
========================================= */

.featured-blog-section{
    padding:140px 0;
    background:#070707;
}

.featured-blog-card{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    padding:50px;
    border-radius:40px;
    background:
    linear-gradient(
    135deg,
    rgba(45,0,0,0.85),
    rgba(0,0,0,0.98)
    );
    border:1px solid rgba(255,0,0,0.12);
}

.featured-blog-image img{
    width:100%;
    border-radius:30px;
}

.featured-blog-content h2{
    font-size:48px;
    line-height:1.15;
    color:#ffffff;
    font-weight:900;
    margin-bottom:24px;
}

.featured-blog-content p{
    color:#b5b5b5;
    font-size:16px;
    line-height:2;
    margin-bottom:30px;
}

.blog-category{
    display:inline-flex;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,0,0,0.08);
    border:1px solid rgba(255,0,0,0.2);
    color:#ff3b1d;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
}

.blog-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.blog-meta span{
    color:#b5b5b5;
    font-size:14px;
}

.blog-meta i{
    color:#ff3b1d;
    margin-right:6px;
}

/* =========================================
LATEST BLOGS
========================================= */

.latest-blogs-section{
    padding:140px 0;
    background:#050505;
}

.blogs-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    overflow:hidden;
    border-radius:35px;
    background:
    linear-gradient(
    180deg,
    rgba(45,0,0,0.7),
    rgba(0,0,0,0.98)
    );
    border:1px solid rgba(255,0,0,0.12);
    transition:0.4s ease;
}

.blog-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,0,0,0.35);
}

.blog-image{
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding:35px;
}

.blog-content h3{
    font-size:28px;
    line-height:1.3;
    color:#ffffff;
    font-weight:800;
    margin-bottom:20px;
}

.blog-content p{
    color:#b5b5b5;
    line-height:1.9;
    font-size:15px;
    margin-bottom:28px;
}

/* =========================================
CATEGORIES
========================================= */

.blog-categories-section{
    padding:140px 0;
    background:#070707;
}

.categories-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:center;
}

.category-item{
    padding:18px 34px;
    border-radius:60px;
    background:
    linear-gradient(
    180deg,
    rgba(45,0,0,0.7),
    rgba(0,0,0,0.95)
    );
    border:1px solid rgba(255,0,0,0.12);
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    transition:0.4s ease;
}

.category-item:hover{
    transform:translateY(-6px);
    border-color:rgba(255,0,0,0.35);
    color:#ff3b1d;
}

/* =========================================
NEWSLETTER
========================================= */

.newsletter-section{
    padding:140px 0;
    background:#050505;
}

.newsletter-box{
    position:relative;
    overflow:hidden;
    padding:100px 70px;
    border-radius:45px;
    text-align:center;
    background:
    linear-gradient(
    135deg,
    rgba(45,0,0,0.95),
    rgba(0,0,0,1)
    );
    border:1px solid rgba(255,0,0,0.12);
}

.newsletter-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,0,0,0.16);
    filter:blur(130px);
    top:-120px;
    right:-120px;
}

.newsletter-box h2{
    position:relative;
    z-index:2;
    font-size:56px;
    line-height:1.1;
    color:#ffffff;
    font-weight:900;
    margin-bottom:28px;
}

.newsletter-box p{
    position:relative;
    z-index:2;
    max-width:720px;
    margin:auto;
    color:#b5b5b5;
    font-size:17px;
    line-height:2;
}

.newsletter-form{
    position:relative;
    z-index:2;
    max-width:700px;
    margin:45px auto 0;
    display:flex;
    gap:20px;
}

.newsletter-form input{
    flex:1;
    height:65px;
    border:none;
    outline:none;
    border-radius:60px;
    background:#ffffff;
    padding:0 28px;
    font-size:15px;
}

.newsletter-form button{
    height:65px;
    border:none;
    padding:0 40px;
    border-radius:60px;
    background:linear-gradient(135deg,#ff3300,#ff0033);
    color:#ffffff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s ease;
}

.newsletter-form button:hover{
    transform:translateY(-4px);
}

/* =========================================
CTA
========================================= */

.blog-cta-section{
    padding:140px 0;
    background:#070707;
}

.blog-cta-box{
    position:relative;
    overflow:hidden;
    padding:100px 70px;
    border-radius:45px;
    text-align:center;
    background:
    linear-gradient(
    135deg,
    rgba(45,0,0,0.95),
    rgba(0,0,0,1)
    );
    border:1px solid rgba(255,0,0,0.12);
}

.blog-cta-box::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,0,0,0.16);
    filter:blur(130px);
    top:-120px;
    right:-120px;
}

.blog-cta-box h2{
    position:relative;
    z-index:2;
    font-size:56px;
    line-height:1.1;
    color:#ffffff;
    font-weight:900;
    margin-bottom:28px;
}

.blog-cta-box p{
    position:relative;
    z-index:2;
    max-width:720px;
    margin:auto;
    color:#b5b5b5;
    font-size:17px;
    line-height:2;
}

.blog-cta-buttons{
    position:relative;
    z-index:2;
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .featured-blog-card{
        grid-template-columns:1fr;
    }

    .blogs-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-hero-title{
        font-size:42px;
    }

    .section-title{
        font-size:38px;
    }

    .featured-blog-content h2{
        font-size:36px;
    }

    .blogs-grid{
        grid-template-columns:1fr;
    }

    .newsletter-form{
        flex-direction:column;
    }

    .newsletter-box,
    .blog-cta-box{
        padding:70px 30px;
    }

    .newsletter-box h2,
    .blog-cta-box h2{
        font-size:38px;
    }

}

@media(max-width:576px){

    .blog-hero-section{
        padding:150px 0 90px;
    }

    .blog-hero-title{
        font-size:34px;
    }

    .section-title{
        font-size:30px;
    }

    .featured-blog-card{
        padding:30px;
    }

    .featured-blog-content h2{
        font-size:30px;
    }

    .blog-content{
        padding:28px;
    }

    .blog-content h3{
        font-size:24px;
    }

    .newsletter-box h2,
    .blog-cta-box h2{
        font-size:30px;
    }

}

