/* ============================= */
/* BLOCO LEIA TAMBÉM */
/* ============================= */

.leia-tambem {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

/* Título */
.leia-tambem h3 {
    width: 192px;
    height: auto;

    font-family: 'Encode Sans', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;

    display: flex;
    align-items: center;

    color: #4C5053;
}

/* Imagem destaque */
.leia-tambem img {
    box-sizing: border-box;
    width: 709px;
    max-width: 100%;
    height: auto;

    border: 1px solid #D3D4D4;
    border-radius: 16px;

    object-fit: contain;
}

/* ============================= */
/* GRID DE POSTS */
/* ============================= */

.leia-tambem-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 50px;
    width: 100%;
    margin: auto;
}

/* ============================= */
/* CARD INDIVIDUAL */
/* ============================= */

.leia-tambem-01 {
    display: flex;
    border-radius: 16px;
    border: 1px solid #D3D4D4;
    padding: 20px;
}

/* Link interno do card */
.leia-tambem-01 a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    width: 100%;
