.chamadaBoxGrande {
    grid-column: span 6;
    grid-row: span 7;
}
.chamadaBoxGrande > a {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}
.chamadaBoxGrande > a > figure {
    width: 100%;
    height: 425px;
    overflow: hidden;
}
.chamadaBoxGrande > a > figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chamadaBoxGrande:hover > a > figure > img {
    transform: scale(1.05);
}
.chamadaBoxGrande > a > div {
    display: flex;
    flex-direction: column;
}
.chamadaBoxGrande > a > div > h2 {
    font-family: "WorkSans",sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.12px;
    color: #0373BE;
    margin-bottom: 24px;
    text-align: center;
}
.chamadaBoxGrande > a > div > h3 {
    font-family: "Merriweather",sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -0.36px;
    color: #1C1C1C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    text-align: center;
}
.chamadaBoxGrande:hover > a > div > h3 {
    text-decoration: underline!important;
}
.chamadaBoxGrande > a > div > p {
    font-family: "WorkSans",sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
    color: #1C1C1C;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .chamadaBoxGrande {
        grid-column: 1/-1;
        grid-row: auto;
    }
    .chamadaBoxGrande > a {
        gap: 20px;
    }
    .chamadaBoxGrande > a > figure {
        height: 230px;
    }
    .chamadaBoxGrande > a > div > h2 {
        font-size: 10px;
        line-height: 14px;
        letter-spacing: 0.1px;
        margin-bottom: 10px;
    }
    .chamadaBoxGrande > a > div > h3 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -0.24px;
        margin-bottom: 6px;
    }
    .chamadaBoxGrande > a > div > p {
        font-size: 14px;
        line-height: 18px;
    }
}