/* =====================================================
   BLOG SINGLE HERO
===================================================== */

.blog-single-hero {
    min-height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.blog-single-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.85)
    );
}

.blog-single-hero__inner {
    position: relative;
    color: #fff;
    max-width: 900px;
    text-align: center;
}

.blog-single-hero__tag {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

.blog-single-hero__title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.blog-single-hero__meta {
    font-size: 14px;
    opacity: 0.85;
}

/* =====================================================
   BLOG CONTENT SECTION (CENTERED – NO SIDEBAR)
===================================================== */

.blog-single {
    padding: 90px 0;
    background: #0b1118;
}

.centered-content {
    /*max-width: 900px;*/
    margin: 0 auto;
    /*background: #ffffff;*/
    /*padding: 50px;*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);*/
}

/* Blog text */
.blog-single__text {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    text-align: start;
}

.blog-single__text p {
    margin-bottom: 20px;
}

/* Optional heading styles inside content */
.blog-single__text h2,
.blog-single__text h3,
.blog-single__text h4 {
    margin: 35px 0 15px;
    color: #111;
}

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

.back-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 14px 28px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #ff6b00;
    transform: translateY(-2px);
}

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

@media (max-width: 992px) {
    .blog-single-hero__title {
        font-size: 36px;
    }

    .centered-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-single {
        padding: 70px 0;
    }

    .blog-single-hero {
        min-height: 50vh;
    }

    .blog-single-hero__title {
        font-size: 30px;
    }

    .centered-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .blog-single {
        padding: 55px 0;
    }

    .blog-single-hero {
        min-height: 42vh;
    }

    .blog-single-hero__title {
        font-size: 24px;
    }

    .blog-single__text {
        font-size: 15px;
    }

    .centered-content {
        padding: 22px;
        border-radius: 12px;
    }
}
