/* Home Blog Section - PNJ Luxury Style */
.vbbk-home-blog {
    padding: 80px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Column: Featured Creative */
.blog-featured-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    display: block;
}

.blog-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-card:hover img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.featured-overlay h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-feat-more {
    display: inline-block;
    padding: 12px 35px;
    background-color: #f7e7ce; /* Light gold background */
    color: #0F2A44;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-feat-more:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Right Column: Latest Posts */
.blog-latest-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.blog-thumb-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-item:hover img {
    transform: scale(1.1);
}

.blog-item-content h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px;
    font-weight: 700;
    color: #0F2A44;
    margin: 0 0 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 56px;
    transition: color 0.3s ease;
}

.blog-item:hover h3 {
    color: #005696;
}

.blog-item-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-link {
    font-weight: 600;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more-link::after {
    content: '›';
    font-size: 20px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.blog-item:hover .read-more-link::after {
    transform: translateX(5px);
}

/* View All Bar */
.blog-actions {
    margin-top: auto;
}

.btn-view-all-blog {
    display: block;
    width: 100%;
    padding: 18px;
    background-color: #f4f7f9;
    color: #0F2A44;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all-blog:hover {
    background-color: #e9eff4;
    color: #005696;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-featured-card {
        min-height: 400px;
    }
    
    .latest-posts-grid {
        grid-template-columns: 1fr;
    }
}
