.blog-section {
    padding: 70px 0;
    background: #f8f9fc;
}

.blog-section .container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 35px;
    font-weight: 600;
    color: #000066;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

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

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-content h3 {
    margin: 0 0 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    text-decoration: none;
    color: #121212;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}

.blog-content h3 a:hover {
    color: #000066;
}

.blog-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 25px;
    flex: 1;
    margin: 0 0 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 31px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 22px;
    background: #000066;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.read-more-btn:hover {
    background: #ffb400;
    color: #000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

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

    .section-heading h2 {
        font-size: 30px;
    }


    .blog-content {
        padding: 20px;
    }

    .blog-content h3 a {
        font-size: 20px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 375px) {}