/* Estilo automático para a página: blog */
section.blog {
    margin: 60px 0;

    .tag {
        font-size: 16px;
        font-weight: 600;
        background-color: #936037;
        border-radius: 40px;
        width: fit-content;
        color: #fff;
        padding: 2px 10px;
    }

    img {
        width: 100%;
        border-radius: 6px;
        max-height: 34svh;
        object-fit: cover;
    }

    .post {
        color: #1C1C1C;
        display: block;
        transition: 0.3s all ease-in-out;
        padding: 32px;
        border-radius: 4px;
        &:hover {
            background-color: #F4FBF7;
        }
        a.mt-auto {
            color: #0078B7;
        }
    }
}