.blog-detail-hero {
    background: #303F9F;
    padding: 60px 20px;
    text-align: center;
    color: white;
    
}

.blog-detail-container {
    width: 62.5%;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    font-family: "Poppins", sans-serif;
}



.blog-detail-img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 auto 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}

.full-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #0056b3;
}

.blog-gallery {
    margin-top: 30px;
}

.blog-image-block {
    margin-bottom: 30px;
}

.blog-image-block img {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.full-content p{
    line-height: 1.9;
}

.full-content p:not(:has(strong)){
    margin-bottom: 18px;
}

.full-content p:has(strong){
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (max-width: 916px) {

    .blog-detail-container {
        margin: 20px auto;
        padding: 20px;
    }

    .full-content p {
        font-size: 16px;
    }

    .blog-detail--container.show {
        position: relative;
        top: 380px;
    }
}


@media (max-width: 480px) {
    .blog-detail-hero h1 {
        font-size: 22px;
    }
   
    .blog-detail-container {
        width: 80%;
    }
    

    .blog-detail-img {
        max-height: 280px;
    }
    .full-content p{
        font-size: 15px;
    }
}