.seccion_blog {
    width: 85%;
    margin: auto;
    margin-top: 60px;
}

.fondo_img {
    height: 10vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-top-right-radius: 11px;
    border-top-left-radius: 11px;
}

.botones {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.carousel-viewport .articulos .cont_art .cabecera_art .tit_art{
    width: 90%;
    font-weight: 600;
    font-family: var(--tipo1);
    margin-bottom: 5px;
    font-size: 16px;
}

.icono_carousel {
    width: 25px;
    height: 25px;
    display: block;
}

.cabecera_art {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.blog_carrousel {
    position: relative;
    gap: 10px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.articulos {
    display: flex;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px 0;
}

.articulo {
    border: 1px solid #e8e9eb;
    border-radius: 11px;
    flex: 0 0 auto;
    width: 90%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 10px;
}

.prev-review,
.next-review {
    cursor: pointer;
    font-size: 2rem;
    user-select: none;
}

.txt_blog h2 {
    color: black;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.txt_blog p {
    font-weight: 400;
    font-size: 0.9em;
    color: grey;
}

.txt_blog {
    margin-bottom: 25px;
}

.tit_art {
    width: 90%;
    font-weight: bold;
    font-family: var(--tipo1);
    margin: 0;
}

.desc_art {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 4;   /* 👈 límite de 4 líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cont_art {
    width: 80%;
    margin: auto;
    margin-top: 20px;
}

.datos_entrada {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

.datos_entrada p {
    font-size: 12px;
}

@media (min-width: 768px) {
    .articulo {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .seccion_blog {
        width: 85%;
    }

    .articulo {
        width: 33.33%;
    }

    .txt_blog h2 {
        font-size: 2em;
    }

    .articulos {
        gap: 20px;
    }

    .icono_carousel {
        width: 27px;
        height: 27px;
    }

    .seccion_blog {
        margin-top: 5%;
    }
}

@media (min-width: 1440px) {
    .articulos {
        gap: 20px;
    }
}


.botones .next-review-button-locales rect, 
.botones .prev-review-button-locales rect {
    stroke: #e0e0e0;
    stroke-width: 2;
}

.botones .next-review-button-locales:hover rect, 
.botones .prev-review-button-locales:hover rect {
    fill: var(--color1);
    stroke: none;
}
.botones .next-review-button-locales:hover g path:last-child, 
.botones .prev-review-button-locales:hover g path:last-child {
    fill: var(--neutro1);
    stroke: none;
}
@media (max-width: 425px){
    .seccion_blog {
    width: 100%;
}
}

.articulo {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.articulo:hover {
    transform: translateY(-6px);
    border-color: transparent;
}

/* Efecto sobre la imagen de fondo */
.articulo .fondo_img {
    transition: transform 0.5s ease, filter 0.4s ease;
}

.articulo:hover .fondo_img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Pequeño cambio en el título e icono al pasar el mouse */
.articulo:hover .tit_art {
    color: var(--color1);
    transition: color 0.3s ease;
}

.articulo:hover .icono_carousel {
    transition: transform 0.3s ease;
}

.listadoBlog.cat-blog.category.container .laCategoria .ultimosPost .losPost .post{
    overflow: visible;
}