.chamadaCharge {
    grid-column: span 4;
    grid-row: span 6;
    border: 1px solid #E3E3E3;
}
.chamadaCharge > a {
    padding: 24px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.chamadaCharge > a > h3 {
    font-family: 'WorkSans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
    color: #FFFFFF;
    margin-bottom: 18px;
    padding: 2px 8px;
    background-color: #0373BE;
    text-align: center;
}
.chamadaCharge > a > h4 {
    font-family: 'Merriweather', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -0.3px;
    color: #1C1C1C;
    margin-bottom: 20px;
    text-align: center;
}
.chamadaCharge > a:hover > h4 {
    text-decoration: underline!important;
}
.chamadaCharge > a > figure {
    width: 100%;
    height: auto;
    margin-top: auto;
}
.chamadaCharge > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .chamadaCharge {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .chamadaCharge > a {
        padding: 16px 35px 35px 35px;
    }
    .chamadaCharge > a > h4 {
        font-size: 24px;
        line-height: 28px;
        letter-spacing: -0.24px;
        margin-bottom: 22px;
    }
}