.chamadaHome{
    grid-column: span 4;
    grid-row: span 1;
    display: flex;
}
.chamadaHome a{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
    
}
.chamadaHome figure{
    height: 180px;
}
.chamadaHome img{
    border-radius: 20px;
    width: 225px!important;
    height: inherit;
    object-fit: cover;
}
.chamadaHome .chamadaHome-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chamadaHome .chamadaHome-text h2{
    font-family: "NunitoSans-Black";
    font-size: 22px;
    line-height: 26px;
    color: #4A4A4A;
}
.chamadaHome .chamadaHome-text h3{
    font-family: "NunitoSans-ExtraBold";
    font-size: 13px;
    line-height: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.chamadaHome-text .description{
    color: #696A6C;
    font-family: "NunitoSans-SemiBold";
    font-size: 15px;
    line-height: 19px;
}

.chamadaHome-text .description.limitlines{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width:1024px){
    .chamadaHome {
        grid-column: span 2;
        grid-row: span 2;
        padding-bottom: 20px;
    }
    .chamadaHome a {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 10px;
        height: fit-content;
        border-bottom: 2px solid #9e9e9e66;
    }
    /* .chamadaHome .chamada-box-container {
        width: 100%;
    } */
    .chamadaHome figure {
        width: 100%;
        height: 205px;
    }
    .chamadaHome-text .description{
        display: block;
        color: #9E9A99;
        font-family: "NunitoSans-SemiBold" !important;
        font-size: 15px !important;
        line-height: 19px !important;
    }
    .chamadaHome img{
        border-radius: 20px;
        width: 100% !important;
        height: 204px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .chamadaHome .chamadaHome-text {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .chamadaHome figure{
        height: auto;
        width: 100%;
        aspect-ratio: 1.6;
    }
    .chamadaHome img{
        width: 100%!important;
        height: 100%;
    }
}