/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 12 2026 | 22:00:33 */
/* 1. EL CONTENEDOR (La Pista) */
.content-qh-otraspaginas {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    
    /* ESTA ES LA CLAVE PARA QUE NO SE CORTE A LA IZQUIERDA: */
    justify-content: flex-start !important; 
    
    overflow-x: auto !important;
    overflow-y: hidden !important;
    
    gap: 16px; 
    
    /* Padding: Arriba 20px, Derecha 20px, Abajo 20px, Izquierda 16px */
    padding: 20px 20px 20px 16px !important; 
    
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
    /* Esto asegura que al soltar, no se pegue al borde 0, sino al 16px */
    scroll-padding-left: 16px; 
    
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.content-qh-otraspaginas::-webkit-scrollbar {
    display: none;
}

/* Eliminamos los ::before/::after complejos y usamos padding en el padre */
/* Solo dejamos un pequeño espaciador final por seguridad en Safari */
.content-qh-otraspaginas::after {
    content: "";
    display: block;
    flex: 0 0 1px;
    width: 1px;
}

/* 2. LA TARJETA (El Elemento Fijo) */
.card-otras-qh {
    /* TAMAÑO FIJO */
    flex: 0 0 296px !important;
    width: 296px !important;
    height: 289px !important;
    
    /* Snap al inicio */
    scroll-snap-align: start; 
    scroll-snap-stop: always;
    
    display: flex !important;
    align-items: flex-start !important; /* Texto abajo */
    justify-content: flex-end !important; /* Texto izquierda */
    
    padding: 32px 23px;
    border-radius: 8px;
    box-sizing: border-box;
    text-decoration: none;
    
    transition: transform 0.25s ease;
}

/* 3. TEXTO */
.card-otras-qh h3 {
    color: #fff !important;
    font-family: "DM Sans", sans-serif;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 30px;
    margin: 0;
    z-index: 2;
}