.chamadaUltimas {
    grid-column: span 3;
    grid-row: span 7;
}
.chamadaUltimas > h2 {
    padding-left: 24px;
    position: relative;
    font-family: "Merriweather", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.32px;
    color: #1c1c1c;
}
.chamadaUltimas > h2:after {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    background-color: #0373be;
    width: 14px;
    height: 14px;
}
.chamadaUltimas > div {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.chamadaUltimas > div > a {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
.chamadaUltimas > div > a > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chamadaUltimas > div > a div > h3 {
    font-family: "WorkSans",sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
}
.chamadaUltimas > div > a > div > h4 {
    font-family: "WorkSans",sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #1c1c1c;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.chamadaUltimas > div > a:hover > div > h4 {
    text-decoration: underline!important;
}
.chamadaUltimas > div > a > figure {
    width: 100px;
    min-width: 100px;
    height: 100px;
    overflow: hidden;
}
.chamadaUltimas > div > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .chamadaUltimas {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .chamadaUltimas > h2 {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: -0.28px;
    }
    .chamadaUltimas > div {
        margin-top: 18px;
        padding-top: unset;
        border-top: unset;
        gap: 18px;
    }
    .chamadaUltimas > div > a {
        gap: 16px;
    }
    .chamadaUltimas > div > a > div {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .chamadaUltimas > div > a > div > h3 {
        font-size: 10px;
        letter-spacing: 0.1px;
    }
    .chamadaUltimas > div > a > figure {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }
}