/* ===================================
   BLOG MATERNITATE
=================================== */

.maternity-blog-page {
    background: #fff8f4;
    padding: 130px 24px 80px;
}

/* ===================================
   HERO
=================================== */

.maternity-blog-hero {
    max-width: 980px;
    margin: 0 auto 60px;
    text-align: center;
}

.maternity-blog-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;

    color: #df7c6b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.maternity-blog-badge::before,
.maternity-blog-badge::after {
    content: "";
    width: 70px;
    height: 1px;
    background: #e7a899;
}

.maternity-blog-hero h1 {
    max-width: 980px;
    margin: 0 auto 26px;

    font-family: Georgia, serif;
    font-size: clamp(52px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -3px;
    color: #241612;
}

.maternity-blog-hero p {
    max-width: 760px;
    margin: 0 auto;

    color: #6f5a52;
    font-size: 22px;
    line-height: 1.6;
}

/* ===================================
   GRID
=================================== */

.maternity-blog-list {
    max-width: 1320px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===================================
   CARD
=================================== */

.maternity-blog-card {
    background: #fffdfb;
    border: 1px solid #f0d4cc;
    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(60, 35, 25, 0.06);

    transition: all .25s ease;
}

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

.maternity-blog-image {
    display: block;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-bottom: 1px solid #f0d4cc;
}

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

.maternity-blog-content {
    padding: 26px;
}

.maternity-blog-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #df7c6b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.maternity-blog-content h2 {
    margin: 0 0 14px;

    color: #241612;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.maternity-blog-meta {
    display: flex;
    gap: 14px;

    margin-bottom: 18px;

    color: #9b7c72;
    font-size: 13px;
}

.maternity-blog-content p {
    margin: 0 0 18px;

    color: #3b2d28;
    font-size: 15px;
    line-height: 1.7;
}

.maternity-blog-btn {
    display: inline-flex;

    padding: 12px 18px;

    background: #df7c6b;
    color: #fff;

    border-radius: 12px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.maternity-blog-btn:hover {
    background: #cf6b5a;
}

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

@media (max-width: 1200px) {

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

}

@media (max-width: 768px) {

    .maternity-blog-page {
        padding: 110px 18px 60px;
    }

    .maternity-blog-list {
        grid-template-columns: 1fr;
    }

    .maternity-blog-hero h1 {
        font-size: 42px;
        line-height: 1;
    }

    .maternity-blog-hero p {
        font-size: 18px;
    }

    .maternity-blog-image {
        height: 280px;
    }

    .maternity-blog-content h2 {
        font-size: 26px;
    }

}
