.mw-CacadoresDeDestino{
    display: flex;
    flex-direction: column;
    grid-column: span 8;
    grid-row: span 2;
}

.mw-CacadoresDeDestino header{
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.mw-CacadoresDeDestino header .espacador{
    width: 100%;
    height: 1px;
    background-color: #B5B5B5;
}
.mw-CacadoresDeDestino header .logo-header {
    width: 220px;
}

.mw-CacadoresDeDestino .card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 9px;
    background-color: unset;
    border: unset;
}
.mw-CacadoresDeDestino .card figure {
    width: 282px;
    height: 180px;
    object-fit: cover;
}
.mw-CacadoresDeDestino .card figure img{
    width: 281px !important;
    height: inherit;
    border-radius: 15px;
    object-fit: cover;
}
.mw-CacadoresDeDestino .card h3 {
    background-color:#F0002D !important;
    padding: 3px 15px;
    font-size: 13px;
    line-height: 50px;
    
}
.mw-CacadoresDeDestino .card h2 {
    margin-top: 2px;
    font-family: "NunitoSans-Black";
    font-size: 20px;
    line-height: 24px;
    color: #4A4A4A;
    text-align: left;
}

@media (max-width:1024px){
    .mw-CacadoresDeDestino{
        grid-column: span 2;
        grid-row: span 7;
        justify-content: space-evenly;
    }
    .mw-CacadoresDeDestino header {
        gap: 15px;
    }
    .mw-CacadoresDeDestino header .logo-header {
        width: 180px;
        object-fit: fill !important;
    }
    .mw-CacadoresDeDestino .card {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin: unset;
    }
    .mw-CacadoresDeDestino .card a {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 2px solid #9e9e9e66;
    }
    .mw-CacadoresDeDestino .card figure {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .mw-CacadoresDeDestino .card figure img{
        width: 90vw !important;
        height: 249px;
        border-radius: 15px;
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .mw-CacadoresDeDestino .card figure img{
        width: 100% !important;
    }
}
@media screen and (max-width: 550px) {
    .mw-CacadoresDeDestino .card figure {
        width: 100%;
        height: auto;
        aspect-ratio: 1.6;
    }
    .mw-CacadoresDeDestino .card figure img{
        width: 100%!important;
        height: 100%;
    }
}