/* ============================================
   cat WALK BLOG SECTION STYLES
   2-column layout matching reference theme
   ============================================ */

.blog-section {
    padding: 100px 0;
    background-color: #fff;
}

/* 2-Column Header */
.blog-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.blog-header-left .blog-title {
    font-family: 'futura-pt', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #151515;
    margin: 0;
    letter-spacing: -0.5px;
}

.blog-header-right {
    padding-top: 10px;
}

.blog-header-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.blog-header-right .blog-subtitle {
    font-weight: 500;
    color: #333;
}

/* Blog Posts Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-post-card {
    position: relative;
    overflow: hidden;
}

.blog-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 4 / 5;
    /* Tall images like reference theme */
}

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

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

/* Blog Content */
.blog-content {
    padding: 0;
}


.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'futura-pt', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.blog-line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #333;
    margin-right: 15px;
}


.blog-date {
    color: #999;
    font-weight: 500;
}

.blog-post-title {
    font-family: 'futura-pt', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 0;
}

.blog-post-title a {
    color: #151515;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--catwalk-pink, #eca3b6);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .blog-header-left .blog-title {
        font-size: 32px;
    }

    .blog-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-section {padding: 40px 0;
    }

    .blog-header-left .blog-title {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-image {
        aspect-ratio: 4 / 3;
        /* Shorter on mobile */
    }

    .blog-post-title {
        font-size: 20px;
    }
}
