/* ----------------------------------------------------------------
    Blog Details Page Custom Styling
---------------------------------------------------------------- */

.blog-details-section {
    background-color: #f8fafc; /* Premium Soft Grey */
    padding: 20px 0 100px;
}

.blog-post-content p {
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 1.9;
    color: #334155;
    letter-spacing: -0.01em;
}

.post-title-link {
    transition: 0.4s ease;
}

.post-title-link:hover {
    color: var(--theme) !important;
}

.drop-cap::first-letter {
    font-size: 64px;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 10px;
    color: var(--theme-3);
    font-family: var(--header-font);
}

.blog-post-wrapper {
    background: transparent;
    padding-bottom: 60px;
}

.blog-body-card {
    background: #ffffff;
    padding: 60px 8% 80px 8%;
    border-radius: 0; /* Full covered edge to edge */
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-body-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(15, 23, 42, 0.12);
}

/* Luxury Blog Hero Transitions */
.blog-hero-image img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post-wrapper:hover .blog-hero-image img {
    transform: scale(1.1) !important;
}

/* Vertical Gap between Hero and Content */
.mt-gap-premium {
    margin-top: 40px !important;
}

@media (max-width: 991px) {
    .mt-gap-premium {
        margin-top: 20px !important;
    }
    
    .blog-hero-image {
        height: 550px !important;
    }
    
    .blog-body-card {
        padding: 40px 6% 40px 6% !important;
    }

    .blog-post-content p {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .blog-hero-image {
        height: 450px !important;
    }
    
    .blog-body-card {
        border-radius: 30px;
    }
}
