.blog-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.blog-kicker {
    text-align: center;
    color: #d4593a;
    font-weight: 800;
    letter-spacing: 2px;
}

.blog-title {
    text-align: center;
    font-size: 48px;
    margin: 10px 0 50px;
    color: #2d4563;
    font-weight: 900;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    padding: 28px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.blog-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #2d4563;
    font-weight: 900;
    line-height: 1.25;
}

.blog-card p {
    margin: 0 0 18px;
    color: #666;
    line-height: 1.6;
}

.read-more {
    color: #d4593a;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .5px;
}

@media (max-width: 980px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-title {
        font-size: 40px;
    }
}

@media (max-width: 620px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}