/* ==========================================================================
   INTRO 2 BLOCK - FRONTEND
   Layout: label + titolo sopra (full width), testo sotto allineato a destra
   ========================================================================== */
.wp-block-s4w-intro-2.s4w-intro-2 .s4w-title.title-large {
text-wrap: pretty !important;
}
.s4w-intro-2 {
    width: 100%;
    padding: 96px 0;
}

/* Main wrapper - layout verticale */
.s4w-intro-2-wrapper {
    display: flex;
    flex-direction: column;
}

/* Title wrapper - contiene label + titolo */
.s4w-intro-2-title-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}

/* Label */
.s4w-intro-2__label {
    margin-bottom: 16px;
}

.s4w-intro-2__label * {
    text-transform: uppercase;
}

/* Title */
.s4w-intro-2__title-col {
    width: 100%;
}

/* Text - allineato a destra, max 50% larghezza */
.s4w-intro-2__text-col {
    width: 100%;
}

.s4w-intro-2__text {
    max-width: 45%;
    margin-left: auto;
}

/* ==========================================================================
   MOBILE (<=768px)
   ========================================================================== */
@media (max-width: 768px) {
    .s4w-intro-2 {
        padding: 64px 0;
    }

    .s4w-intro-2-title-wrapper {
        margin-bottom: 24px;
    }

    .s4w-intro-2__label {
        margin-bottom: 12px;
    }

    /* Text full width su mobile */
    .s4w-intro-2__text {
        max-width: 100%;
        margin-left: 0;
    }
}
