.blog-hero {
    display: flex;
    align-items: center;
    min-height: 320px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(2, 12, 28, 0.92), rgba(2, 12, 28, 0.45)), url('https://images.unsplash.com/photo-1495020689067-958852a7765e?auto=format&fit=crop&w=1800&q=85');
    background-position: center;
    background-size: cover;
}

.blog-hero > div {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.blog-hero p {
    margin: 0 0 12px;
    color: #ff8a00;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.1;
}

.blog-hero span {
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 22px;
    background: #ff8a00;
}

.blog-grid-wrap {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 42px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-body span {
    color: #ff8a00;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card-body h2 {
    margin: 10px 0;
    color: #07101d;
    font-size: 22px;
    line-height: 1.25;
}

.blog-card-body p {
    margin: 0 0 16px;
    color: #64748b;
    line-height: 1.55;
}

.read-more {
    color: #061b4a;
    font-weight: 900;
}

.blog-empty {
    padding: 34px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
