/* Estilo automático para o tipo de post: post */
.hero-section {
    overflow: hidden;
    /* padding-top: 98px; */
    position: relative;
    min-height: 72svh;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        right: 0;
        filter: brightness(0.6);
    }

    .hero-content {
        position: absolute;
        top: 35%;
        width: 100%;
        /* background-color: #2C267B; */
        z-index: 2;
        pointer-events: none;

        h1,
        p {
            color: #FFFCF5;
            font-size: 20px;
        }

        a {
            pointer-events: auto;
        }

        a.cta {
            background-color: #D5B991;
            font-size: 20px;
        }

        h1 {
            font-size: 46px;
            line-height: 60px;
            font-weight: 500;
            margin-bottom: 16px;

            span {
                color: #D5B991;
            }
        }
    }

    /* &::after {
        content: '';
        position: absolute;
        width: 50%;
        height: 100%;
        left: 0;
        top: 0;
        background: #2C267B;
        background: linear-gradient(135deg, rgba(44, 38, 123, 1) 0%, rgba(47, 43, 96, 1) 100%);
        z-index: 1;
        clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    } */
}

article {
    .the-date {
        margin-bottom: 18px;
        p {
            color: #C8AC78;
            font-weight: 600;
        }
    }
    .share-this {
        background-color: #FFF9F1;
        border: 1px solid #C8AC78;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 26px;
        p {
            color: #33142A;
            font-weight: 500;
        }
    }
}

section.blog {
    background-color: #FBF5EB;
    .card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

        img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .texto {
            h3 {
                font-size: 20px;
                font-weight: 500;
            }

            p {
                color: #5A5A5A;
                font-weight: 400;
            }
        }

        a.cta {
            width: 100%;
            background-color: #FFF;
            border: 1px solid #C8AC78;
            color: #472135;
            text-align: center;
            transition: 0.3s all ease-in-out;

            &:hover {
                background-color: #33142A;
                border: 1px solid #33142A;
                color: #FFFCF5;
            }
        }
    }

    .swiper-wrapper {
        padding: 12px;
    }

    .swiper-slide {
        max-width: 400px;
    }
}