.chamadaVertical {
    grid-column: span 3;
    grid-row: span 7;
}
.chamadaVertical > a {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}
.chamadaVertical > a > figure {
    width: 100%;
    height: 227px;
    overflow: hidden;
}
.chamadaVertical > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chamadaVertical:hover > a > figure > img {
    transform: scale(1.05);
}
.chamadaVertical > a > div {
    display: flex;
    flex-direction: column;
}
.chamadaVertical > a > div > h3 {
    font-family: "WorkSans",sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
    color: #0373BE;
    margin-bottom: 12px;
}
.chamadaVertical > a > div > h4 {
    font-family: "Merriweather",sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #1C1C1C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.chamadaVertical > a:hover > div > h4 {
    text-decoration: underline!important;
}
.chamadaVertical > div {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e7e7e7;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.chamadaVertical > div > a {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
}
.chamadaVertical > div > a > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chamadaVertical > div > a div > h3 {
    font-family: "WorkSans",sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
}
.chamadaVertical > 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;
}
.chamadaVertical > div > a:hover > div > h4 {
    text-decoration: underline!important;
}
.chamadaVertical > div > a > figure {
    display: none;
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
}
.chamadaVertical > div > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .chamadaVertical {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .chamadaVertical > a {
        gap: 16px;
    }
    .chamadaVertical > a > figure {
        height: 210px;
    }
    .chamadaVertical > a > div > h3 {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.1px;
        margin-bottom: 10px;
    }
    .chamadaVertical > a > div > h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .chamadaVertical > div {
        gap: 26px;
    }
    .chamadaVertical > div > a {
        gap: 16px;
    }
    .chamadaVertical > div > a > div {
        gap: 12px;
    }
    .chamadaVertical > div > a div > h3 {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.1px;
    }
    .chamadaVertical > div > a > figure {
        display: block;
    }
}