/* ════════════════════════════════════════════════
BLOG / NEWS SECTION
════════════════════════════════════════════════ */

.blog-section {
    padding: 4rem 0 5rem;
    /* background: #0d0d0d; */
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Section Header ── */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header .tag {
    display: inline-block;
    background: rgba(186, 23, 40, 0.15);
    color: #ba1728;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(186, 23, 40, 0.2);
    margin-bottom: 0.8rem;
}

.blog-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d0d0d;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.blog-header h2 span {
    color: #ba1728;
}

.blog-header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Blog Grid 2×2 ── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

/* ── Blog Card ── */
.blog-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 1.8rem 1.8rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(186, 23, 40, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(186, 23, 40, 0.06);
}

/* ── Blog Date (styled like screenshot) ── */
.blog-date {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.blog-date .day {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ba1728;
}

.blog-date .month {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-date .year {
    color: rgba(255, 255, 255, 0.25);
}

.blog-date .separator {
    margin: 0 0.1rem;
}

/* ── Blog Content ── */
.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #ba1728;
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
    flex: 1;
}

/* ── Read More Link ── */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ba1728;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-more i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #d01f34;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* ── Responsive ── */

/* Tablet: 2 columns, smaller padding */
@media (max-width: 992px) {
    /* .blog-header h2 {
        font-size: 2.2rem;
    } */
    .blog-grid {
        gap: 1.4rem;
    }
    .blog-card {
        padding: 1.5rem 1.5rem 1.8rem;
    }
    .blog-content h3 {
        font-size: 1.1rem;
    }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
    .blog-section {
        padding: 3rem 0 4rem;
    }
    .blog-section .container {
        padding: 0 1.2rem;
    }
    /* .blog-header h2 {
        font-size: 1.8rem;
    } */
    .blog-header p {
        font-size: 0.95rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .blog-card {
        padding: 1.2rem 1.2rem 1.5rem;
    }
    .blog-content h3 {
        font-size: 1rem;
    }
    .blog-content p {
        font-size: 0.9rem;
    }
    .blog-date {
        font-size: 0.8rem;
    }
    .blog-date .day {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 400px) {
    /* .blog-header h2 {
        font-size: 1.5rem;
    } */
    .blog-card {
        padding: 1rem;
    }
}