/* Estilo automático para a página: blog */
section.blog {
    position: relative;

    .tabs {
        padding: 14px;
        background-color: #EFEFEF;
        border-radius: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .filter-btn {
        width: fit-content;
        display: inline-block;
        color: #2A373A;
        border-radius: 5px;
        font-family: 'Linear Grotesk';
        font-size: 18px;
        border: none;
        background-color: transparent;
        transition: 300ms all ease-in-out;
        padding: 10px 24px;
        white-space: nowrap;
        text-wrap-mode: nowrap;

        &.active {
            background-color: #00687E;
            color: #fff;
        }
    }

    .card-blog {
        border: none;
        border-radius: 5px;
        box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.08);
        text-decoration: none;

        .post-cat {
            z-index: 2;
            padding: 8px 12px 4px 12px;
            border-radius: 5px;
            background-color: #43B1D4;
            width: fit-content;
            color: #fff;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 1px;
            font-family: 'Linear Grotesk';
            display: flex;
            justify-content: center;
            align-items: center;
        }


        img {
            height: 275px;
            object-fit: cover;
        }

        .card-body {
            border: 1px solid #EBDFD0;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            justify-content: space-between;
            padding: 24px;
        }

        button.cta {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #EFEFEF;
            border-radius: 5px;
            border: transparent;
            padding: 10px;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1px;
            font-family: 'Linear Grotesk';
            color: #2A373A;
        }

        .card-date {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            background-color: #00687E;
            height: 50px;
            color: #fff;

            p {
                font-family: 'Linear Grotesk';
                font-weight: 400;
                font-size: 15px;
                line-height: 100%;
                color: #fff;
                margin: 0;
            }
        }

        h5 {
            font-family: "Axiforma";
            font-weight: 700;
            font-size: 20px;
            line-height: 160%;
            vertical-align: middle;
            color: #204F5D;
        }

        p {
            font-family: "Axiforma";
            font-weight: 300;
            font-size: 16px;
            line-height: 160%;
        }
    }

    .imagem-decorativa-infra {
        position: absolute;
        top: -150px;
        left: 0;
        z-index: -1;
    }

    .imagem-decorativa-infra img {
        width: 260px;
        opacity: 0.7;
        pointer-events: none;
    }

    hr {
        border-top: 1px solid #d9d9d9;
        opacity: 1;
    }
}