
/* ================= BLOG DETAIL ================= */

.blog-detail-hero img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.blog-detail-section {
    padding: 50px 0;
}

.blog-detail-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.blog-detail-breadcrumb a {
    text-decoration: none;
    color: #777;
}

.blog-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 34px;
    font-weight: 700;
    /* margin-bottom: 20px; */
}

.blog-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-hero img {
        height: 260px;
    }

    .blog-title {
        font-size: 26px;
    }
}


.related-blogs-section {
    background: #f7f7f7;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-card-body {
    padding: 18px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-card-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}


/* Tablet (≤ 992px) */
@media (max-width: 992px) {

    .blog-detail-hero img {
        height: 380px;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-content-text {
        font-size: 15.5px;
    }

    .blog-card-img {
        height: 210px;
    }

    .blog-card-title {
        font-size: 17px;
    }
}

/* Mobile (≤ 576px) */
@media (max-width: 768px) {

    .blog-detail-section {
        padding: 35px 0;
    }

    .blog-detail-hero img {
        height: 260px;
        border-radius: 12px;
    }

    .blog-detail-breadcrumb {
        font-size: 13px;
    }

    .blog-date {
        font-size: 13px;
    }

    .blog-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .blog-content-text {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Related blogs */
    .blog-card {
        border-radius: 14px;
    }

    .blog-card-img {
        height: 190px;
    }

    .blog-card-body {
        padding: 15px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-desc {
        font-size: 13.5px;
    }
}

/* Small Mobile (≤ 480px) */

@media (max-width: 480px) {

    .blog-detail-hero img {
        height: 220px;
    }

    .blog-title {
        font-size: 22px;
    }

    .blog-content-text {
        font-size: 14.5px;
    }

    .blog-card-img {
        height: 170px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-desc {
        font-size: 13px;
    }
}

/* 🔹 Extra Small Mobile (≤ 360px) */
@media (max-width: 360px) {

    .blog-detail-hero img {
        height: 190px;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-content-text {
        font-size: 14px;
        line-height: 1.65;
    }

    .blog-card-img {
        height: 150px;
    }

    .blog-card-body {
        padding: 13px;
    }

    .blog-card-title {
        font-size: 14px;
    }

    .blog-card-desc {
        font-size: 12.5px;
    }
}

