/* ============================================================================
   SAI WEB - MODULES STYLES (NUEVOS)
   Módulos de contenido adicionales (S5, S6, S7, S8)
   ============================================================================ */

/* ============================================================================
   PAGE CONTENT - Estructura Drupal-ready
   ============================================================================ */

.page-content {
    /* Wrapper general del contenido */
}

.page-content__header {
    padding-block: var(--spacing-3xl);
    background: #F3F4F6;
}

.page-content__header h1 {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-500);
}

.page-content__lead {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 800px;
}

.page-content__modules {
    /* Contenedor de todos los módulos/paragraphs */
}

/* ============================================================================
   MODULE BASE - Clase base para módulos nuevos
   ============================================================================ */

.module {
    padding-block: var(--spacing-3xl); /* 96px arriba/abajo */
}

.module--full-bg {
    width: 100%;
}

/* ============================================================================
   S1: HEADER AREA - Header de área o producto
   ============================================================================ */

.s1-header-area {
    background: 
        linear-gradient(-90deg, rgba(213, 0, 87, 0.85) 0%, rgba(0, 0, 0, 0.85) 100%),
        url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1920&q=80') center/cover no-repeat;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.header-area__content {
    max-width: 40%;
    color: white;
}

.header-area__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    color: white;
}

.header-area__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #D50057;
    border-radius: 50%;
}

.header-area__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    color: white;
}

.header-area__subtitle {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
}

.header-area__description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: calc(var(--spacing-xl) / 2);
    padding-bottom: calc(var(--spacing-xl) / 2);
    color: white;
    opacity: 0.9;
    position: relative;
}

.header-area__description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

.header-area__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9375rem;
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.header-area__link:hover {
    opacity: 1;
}

.header-area__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-size: 1.25rem;
}

/* ============================================================================
   S3: MODULE VIDEO - Video full width con aspect ratio 16:9
   ============================================================================ */

.s3-video {
    background: #000000;
    padding: 0; /* Sin padding para que el video ocupe todo */
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================================
   S5: MODULE PROMO CARD - Card promocional con gradiente (NUEVO)
   ============================================================================ */

.module--promo-card {
    background: #F3F4F6;
}

.promo-card {
    position: relative;
    border-radius: 16px;
    padding: var(--spacing-3xl) var(--spacing-2xl);
    color: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.promo-card__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-500);
    width: 100%;
    justify-content: center;
}

.promo-card__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-gradient-pink);
    border-radius: 50%;
}

.promo-card__subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: var(--spacing-sm);
}

.promo-card__title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
}

.promo-card__description {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.promo-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: var(--spacing-lg);
}

/* Gradientes para promo-card */
.promo-card[data-gradient="01"] { background: var(--gradient-01); }
.promo-card[data-gradient="02"] { background: var(--gradient-02); }
.promo-card[data-gradient="03"] { background: var(--gradient-03); }
.promo-card[data-gradient="04"] { background: var(--gradient-04); }
.promo-card[data-gradient="05"] { background: var(--gradient-05); }
.promo-card[data-gradient="06"] { background: var(--gradient-06); }
.promo-card[data-gradient="07"] { background: var(--gradient-07); }
.promo-card[data-gradient="08"] { background: var(--gradient-08); }
.promo-card[data-gradient="09"] { background: var(--gradient-09); }
.promo-card[data-gradient="10"] { background: var(--gradient-10); }
.promo-card[data-gradient="11"] { background: var(--gradient-11); }
.promo-card[data-gradient="12"] { background: var(--gradient-12); }
.promo-card[data-gradient="corporate"] { background: var(--gradient-corporate); }

/* ============================================================================
   S4: MODULE STATS - Datos con fondo blanco
   ============================================================================ */

.s4-dades {
    /* Fondo blanco - sin background */
}

.s4-dades .stats__header {
    margin-bottom: var(--spacing-xl);
}

.s4-dades .stats__header h2 {
    color: #000000;
}

.s4-dades .stats__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-500);
}

.s4-dades .stats__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-gradient-pink);
    border-radius: 50%;
}

.s4-dades .stats__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #000000;
}

.s4-dades .stats__description {
    font-size: 1.125rem;
    color: #000000;
    max-width: 700px;
}

.s4-dades .stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.s4-dades .stats__grid-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.s4-dades .stats__grid-right {
    display: flex;
}

.s4-dades .stat-card {
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    color: white;
    box-shadow: var(--shadow-card);
}

/* Degradados originales para cards de S4 */
.s4-dades .stats__grid-left .stat-card:nth-child(1) {
    background: linear-gradient(45deg, #C028B9 0%, #1E194D 100%);
}

.s4-dades .stats__grid-left .stat-card:nth-child(2) {
    background: linear-gradient(45deg, #DC2597 0%, #1E194D 100%);
}

.s4-dades .stats__grid-left .stat-card:nth-child(3) {
    background: linear-gradient(45deg, #3BBFAD 0%, #1E194D 100%);
}

.s4-dades .stats__grid-left .stat-card:nth-child(4) {
    background: linear-gradient(45deg, #A73439 0%, #1E194D 100%);
}

.s4-dades .stat-card--large {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: linear-gradient(45deg, #D50057 0%, #1E194D 100%);
}

.s4-dades .stat-card__number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

/* Números más pequeños en las cards del grid 2x2 */
.s4-dades .stats__grid-left .stat-card__number {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.s4-dades .stat-card__label {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* ============================================================================
   S6: MODULE STATS - Datos con fondo gris
   ============================================================================ */

.s6-dades-fons {
    background: #898C8D;
}

.s6-dades-fons .stats__header {
    margin-bottom: var(--spacing-xl);
}

.s6-dades-fons .stats__header h2 {
    color: #000000;
}

.s6-dades-fons .stats__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: #D40957;
}

.s6-dades-fons .stats__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #D40957;
    border-radius: 50%;
}

.s6-dades-fons .stats__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #000000;
}

.s6-dades-fons .stats__description {
    font-size: 1.125rem;
    color: #000000;
    max-width: 700px;
}

.s6-dades-fons .stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.s6-dades-fons .stats__grid-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.s6-dades-fons .stats__grid-right {
    display: flex;
}

.s6-dades-fons .stat-card {
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    color: white;
    box-shadow: var(--shadow-card);
}

/* Colores específicos para cards de S6 */
.s6-dades-fons .stats__grid-left .stat-card:nth-child(1) {
    background: linear-gradient(45deg, #D40957 0%, #241D4E 100%);
}

.s6-dades-fons .stats__grid-left .stat-card:nth-child(2) {
    background: linear-gradient(45deg, #241D4E 0%, #D40957 100%);
}

.s6-dades-fons .stats__grid-left .stat-card:nth-child(3) {
    background: linear-gradient(45deg, #241D4E 0%, #D40957 100%);
}

.s6-dades-fons .stats__grid-left .stat-card:nth-child(4) {
    background: linear-gradient(45deg, #D40957 0%, #241D4E 100%);
}

.s6-dades-fons .stat-card--large {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #D40957;
}

.s6-dades-fons .stat-card__number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

/* Números más pequeños en las cards del grid 2x2 */
.s6-dades-fons .stats__grid-left .stat-card__number {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
}

.s6-dades-fons .stat-card__label {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* ============================================================================
   S7: MODULE TEXT COLUMNS - Texto en 3 columnas (NUEVO)
   ============================================================================ */

.s7-text-cols {
    background: #898C8D;
}

.s7-text-cols .text-cols__header {
    margin-bottom: var(--spacing-xl);
}

.s7-text-cols .text-cols__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: #000000;
}

.s7-text-cols .text-cols__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-gradient-pink);
    border-radius: 50%;
}

.s7-text-cols .text-cols__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #000000;
}

.s7-text-cols .text-cols__description {
    font-size: 1.125rem;
    color: #000000;
    max-width: 700px;
    margin-bottom: var(--spacing-2xl);
}

.s7-text-cols .text-cols__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.s7-text-cols .text-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #000000;
    margin-bottom: var(--spacing-md);
}

.s7-text-cols .text-col p:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   S7-BLANC: MODULE TEXT COLUMNS - Texto en 3 columnas con fondo degradado
   ============================================================================ */

.s7-text-cols-blanc {
    background: linear-gradient(45deg, #D40957 0%, #1E194D 100%);
}

.s7-text-cols-blanc .text-cols__header {
    margin-bottom: var(--spacing-xl);
}

.s7-text-cols-blanc .text-cols__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
}

.s7-text-cols-blanc .text-cols__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border-radius: 50%;
}

.s7-text-cols-blanc .text-cols__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: #FFFFFF;
}

.s7-text-cols-blanc .text-cols__description {
    font-size: 1.125rem;
    color: #FFFFFF;
    max-width: 700px;
    margin-bottom: var(--spacing-2xl);
}

.s7-text-cols-blanc .text-cols__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.s7-text-cols-blanc .text-col p {
    font-size: 1rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: var(--spacing-md);
}

.s7-text-cols-blanc .text-col p:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   S8: MODULE CTA - Call to action con imagen (NUEVO)
   ============================================================================ */

.module--cta {
    /* Sin fondo especial */
}

.cta__wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Collage de imágenes - columna izquierda */
.cta__images {
    position: relative;
    min-height: 450px;
}

.cta__image-small {
    position: relative;
    width: 300px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    z-index: 2;
}

.cta__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta__image-large {
    position: absolute;
    left: 150px;
    top: 50px;
    width: 600px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    z-index: 1;
}

.cta__image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenido - columna derecha */
.cta__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
    margin-bottom: var(--spacing-lg);
}

.cta__badge::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-gradient-pink);
    border-radius: 50%;
}

.cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-500);
}

.cta__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: var(--spacing-lg);
}

.cta__description strong {
    color: var(--color-primary-500);
}

.cta__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: calc(var(--space-base) * 1.5) var(--spacing-sm);
    background: transparent;
    border: 2px solid var(--color-primary-500);
    border-radius: 22px;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-primary-500);
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta__button:hover {
    background: var(--color-primary-500);
    color: white;
}


/* ============================================================================
   RESPONSIVE - Módulos nuevos
   ============================================================================ */

@media (max-width: 1172px) {
    .stats__grid {
        gap: var(--spacing-md);
    }
    
    .stats__grid-left {
        gap: var(--spacing-xs);
    }
    
    .stat-card {
        padding: var(--spacing-sm);
        min-height: 160px;
    }
}

@media (max-width: 900px) {
    .header-area__content {
        max-width: 60%;
    }
    
    .promo-card {
        padding: var(--spacing-2xl) var(--spacing-xl);
        min-height: 250px;
    }
    
    .stats__grid {
        grid-template-columns: 1fr;
    }
    
    .stats__grid-left {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .stat-card {
        min-height: 140px;
    }
    
    .text-cols__content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .cta__wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .cta__images {
        min-height: 350px;
    }
    
    .cta__image-small {
        width: 250px;
        height: 200px;
    }
    
    .cta__image-large {
        width: 500px;
        height: 333px;
        left: 100px;
        top: 40px;
    }
}

@media (max-width: 500px) {
    .s1-header-area {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .header-area__content {
        max-width: 100%;
    }
    
    .header-area__title {
        margin-bottom: var(--spacing-lg);
    }
    
    .module {
        padding-block: var(--spacing-2xl);
    }
    
    .promo-card {
        padding: var(--spacing-xl) var(--spacing-lg);
        min-height: 220px;
    }
    
    .promo-card__icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
        bottom: var(--spacing-lg);
        right: var(--spacing-lg);
    }
    
    .stat-card {
        padding: var(--spacing-md);
        min-height: 120px;
    }
    
    .stat-card__number {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .text-cols__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .cta__wrapper {
        gap: var(--spacing-lg);
    }
    
    .cta__images {
        min-height: 280px;
    }
    
    .cta__image-small {
        width: 180px;
        height: 144px;
    }
    
    .cta__image-large {
        width: 360px;
        height: 240px;
        left: 60px;
        top: 30px;
    }
    
    .cta__button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================================
   S10: NEWSLETTER - Prefooter de suscripción
   ============================================================================ */

.module.s10-newsletter {
    background: linear-gradient(45deg, #000000 0%, #2D82B7 100%);
    padding-block: var(--spacing-3xl);
    border-bottom: 1px solid #2D82B7;
}

.newsletter__grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: var(--spacing-3xl);
    align-items: center;
}

/* Bloque A - Contenido izquierda */
.newsletter__label {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: var(--spacing-md);
}

.newsletter__title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.newsletter__legal {
    font-size: 0.875rem;
    color: white;
    opacity: 0.8;
    line-height: 1.6;
}

.newsletter__legal a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.newsletter__legal a:hover {
    opacity: 0.8;
}

/* Bloque B - Formulario derecha */
.newsletter__form {
    /* Contenedor del formulario */
}

.newsletter__input-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.newsletter__input {
    width: 100%;
    padding: var(--spacing-sm) 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter__input:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.newsletter__button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 18px;
    background: transparent;
    border: 1px solid white;
    border-radius: 26px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.newsletter__button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.newsletter__arrow {
    font-size: 1.25rem;
}

.newsletter__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.newsletter__checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.newsletter__checkbox:checked {
    background: transparent;
}

.newsletter__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.newsletter__checkbox-label {
    color: white;
    font-size: 0.875rem;
    opacity: 0.9;
    cursor: pointer;
}

/* ============================================================================
   S10 RESPONSIVE
   ============================================================================ */

@media (max-width: 900px) {
    .newsletter__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .newsletter__title {
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 500px) {
    .s10-newsletter {
        padding-block: var(--spacing-2xl);
    }
    
    .newsletter__button {
        width: 100%;
        justify-content: center;
    }
}
