.chamadaBoxEspecial {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 282px;
}

.chamadaBoxEspecial>figure>img {
    border-radius: 15px;
    width: 282px;
    height: 230px;
    object-fit: cover;
}

.chamadaBoxEspecial>h3 {
    font-family: "NunitoSans-ExtraBold";
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    padding-top: 6px;
}

.chamadaBoxEspecial>h2 {
    font-family: "NunitoSans-ExtraBold";
    font-size: 22px;
    line-height: 26px;
    color: #4A4A4A;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

@media screen and (max-width:992px) {

    .chamadaBoxEspecial {
        max-width: unset;
        padding-bottom: 20px;
        border-bottom: 2px solid #9e9e9e66;
    }
    
    .chamadaBoxEspecial>figure>img {
        width: 100%;
        height: 180px;
    }
}