/* Blog Cards Section - Matching Design */
.blog-section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-main-title {
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-title {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.blog-read-more:hover {
    color: var(--gold);
}

/* Mobile responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-main-title {
        font-size: 2.5rem;
    }

    .blog-image {
        height: 250px;
    }
}