/* =========================
   Contenedor de la tarjeta
========================= */
.review-card {
    background: #f0f3f19d url('https://www.cipcdahuaraz.org/zip/wp-content/plugins/domika-proformas/assets/img/cumple.png') no-repeat center center;
    background-size: cover; 
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(107, 15, 26, 0.87);
    text-align: left;
    flex: 1 1 300px; /* flexible y responsive */
    max-width: 400px;
    height: 350px; /* altura fija para todas las tarjetas */
    margin: 20px auto;
    display: flex;
    flex-direction: column; /* distribuir verticalmente */
    justify-content: flex-start; /* contenido inicia arriba */
    overflow: hidden; /* recorta lo que sobresalga */
}

/* =========================
   Contenedor interno del texto
========================= */
/* Texto principal */
.review-text {
    text-align: center;
    font-weight: bold;
    font-style: normal;
    color: #8B0000;
    line-height: 1.3;       /* reduce espacio entre líneas */
    font-size: 1.7rem;
    margin: 4px 0;          /* margen superior e inferior pequeño */
    font-family: 'Pacifico', cursive;
}

/* Subtítulo / descripción */
.review-subtext {
    color: #444;
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.3;       /* reduce espacio entre líneas */
    margin: 8px 0;          /* margen superior e inferior pequeño */
    font-family: 'Comic Neue', sans-serif;
}

/* Subtítulo o descripción */
.review-subtext {
    text-align: center;
    color: #444;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.2;
    font-family: 'Comic Neue', sans-serif;
}

/* Encabezado de la tarjeta */
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #0a244e;
}

/* Valoración / estrellas (opcional si lo usas) */
.review-rating i {
    color: #01c911;
    margin: 0 2px;
}

/* =========================
   Contenedor del carrusel
========================= */
.carousel-wrap {
    position: relative;
    overflow: visible; /* permite que los gradientes se vean fuera del contenedor */
}

/* =========================
   Gradientes laterales del carrusel
========================= */
.carousel-wrap::before,
.carousel-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;          /* ancho del fade */
    pointer-events: none;  /* permite clic sobre las cards */
    z-index: 10;           /* sobre las cards */
}

/* Gradiente izquierda */
.carousel-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* Gradiente derecha */
.carousel-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* =========================
   Archivos estáticos: caché
========================= */
<FilesMatch "\.(css|js|png|jpg|jpeg|gif|webp|svg|ico)$">
  Header set Cache-Control "max-age=31536000, public"
</FilesMatch>
