.wp-block .grilla-destinos-relacionados{
    list-style: none;
    padding: 0px !important;
    margin-top: 20px;
}
.wp-block .grilla-destinos-relacionados .swiper .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}
.wp-block .grilla-destinos-relacionados .swiper-button-next, 
.wp-block .grilla-destinos-relacionados .swiper-button-prev{
    display: none;
}
.wp-block .grilla-destinos-relacionados .otro-destino{
    box-sizing: border-box;
    padding: 18px;
}
.wp-block .destinos-relacionados .wp-block-button__link{
    padding: 12px 16px !important;
    background: #B34F36 !important;
    color: #FFF !important;
    height: auto;
    border-radius: 0px !important;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 16px !important;
    transition: color 300ms ease, background-color 500ms ease;
    text-transform: uppercase !important;
}
.wp-block .destinos-relacionados h2{
    font-weight: 300 !important;
    font-size: 42px !important;
    line-height: 50px !important;
    font-family: Georgia, 'Times New Roman', Times, serif !important;
}
.wp-block .grilla-destinos-relacionados .otro-destino h3{
    margin-bottom: 0px;
    line-height: 1.3em;
}
.wp-block .destinos-relacionados .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.grilla-destinos-relacionados{
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    border: none !important;
}
.grilla-destinos-relacionados.columnas-1{
    gap: 0px;
}
.grilla-destinos-relacionados.columnas-1 li{
    width: 100%;
}
.grilla-destinos-relacionados.columnas-2 li{
    width: 50%;
}
.grilla-destinos-relacionados.columnas-3 li{
    width: 33.33%;
}
.grilla-destinos-relacionados.columnas-4 li{
    width: 25%;
}
.grilla-destinos-relacionados.columnas-5 li{
    width: 20%;
}
.grilla-destinos-relacionados li{
    border: none !important;
    padding: 0px !important;
}
.grilla-destinos-relacionados .otro-destino-item{
    position: relative;
    height: 360px;
    overflow: hidden;
}
.grilla-destinos-relacionados .otro-destino-item:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(80,63,71,1) 100%);
    z-index: 2
}
.grilla-destinos-relacionados .otro-destino-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}
.grilla-destinos-relacionados a:hover.otro-destino-item img{
    transform: scale(1.05);
}
.grilla-destinos-relacionados .otro-destino{
    position: absolute;
    width: 100%;
    bottom: 0px;
    left: 0px;
    padding: 24px;
    z-index: 2;
}
.grilla-destinos-relacionados .otro-destino h3{
    color: #FFF;
    font-size: 26px;
    font-weight: 300;
    text-transform: none;
    margin-bottom: 0px !important;
}
.grilla-destinos-relacionados .swiper-button-prev{
    left: -10px;
    margin-top: -10px;
}
.grilla-destinos-relacionados .swiper-button-next{
    right: -10px;
    margin-top: -10px;
}
.grilla-destinos-relacionados .swiper-button-next:after, 
.grilla-destinos-relacionados .swiper-button-prev:after{
  display: none !important;
}


/* RESPONSIVO */
@media only screen and (min-width: 0px) and (max-width: 480px){
    .grilla-destinos-relacionados{
        flex-wrap: wrap;
    }
    .grilla-destinos-relacionados.columnas-2 li,
    .grilla-destinos-relacionados.columnas-3 li,
    .grilla-destinos-relacionados.columnas-4 li,
    .grilla-destinos-relacionados.columnas-5 li{
        width: 100%;
    }
}