.chamadaFundo {
    grid-column: span 3;
    grid-row: span 3;
}
.chamadaFundo > a {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 282 / 348;
    overflow: hidden;
    background-color: #1c1c1c;
}
.chamadaFundo > a::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.88) 100%);
}
.chamadaFundo figure,
.chamadaFundo figure > img {
    width: 100%;
    height: 100%;
}
.chamadaFundo figure > img {
    object-fit: cover;
}
.chamadaFundo > a:hover figure > img {
    transform: scale(1.05);
}
.chamadaFundo > a > div {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 14px 16px;
}
.chamadaFundo h2 {
    padding: 5px 8px;
    font-family: "WorkSans", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.1px;
    color: #fff;
}
.chamadaFundo h3 {
    font-family: "Merriweather", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.2px;
    color: #fff;
}
.chamadaFundo > a:hover h3 {
    text-decoration: underline!important;
}
@media screen and (max-width: 768px) {
    .chamadaFundo {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .chamadaFundo > a {
        aspect-ratio: 32 / 26;
    }
    .chamadaFundo > a > div {
        padding: 14px 14px 16px;
    }
    .chamadaFundo h3 {
        font-size: 22px;
        line-height: 25px;
        letter-spacing: -0.22px;
    }
}
