/**
 * Banner CTA Component Styles
 * Componente: Banner promocional con texto, botón CTA e imagen lateral
 * Figma: node 2438-27819
 */

/* ==========================================================================
   Banner Container
   ========================================================================== */

.banner-cta {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: var(--wp--style--global--wide-size, 1400px);
    background-color: var(--wp--preset--color--white, #FFFFFF);
    border-radius: var(--wp--custom--border-radius--lg, 16px);
    box-shadow: var(--wp--custom--shadow--lg, 0px 14px 24px 0px rgba(0, 0, 0, 0.12));
    overflow: hidden;
}

/* ==========================================================================
   Content Area (Left Side)
   ========================================================================== */

.banner-cta__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 64px;
    flex: 1;
    padding: 64px 40px;
    overflow: hidden;
}

/* ==========================================================================
   Text Group
   ========================================================================== */

.banner-cta__text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.banner-cta__title {
    font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
    font-size: var(--wp--preset--font-size--large, 36px);
    font-weight: 700;
    line-height: 1.21;
    color: var(--wp--preset--color--text-dark, #333333);
    margin: 0;
}

.banner-cta__description {
    font-family: var(--wp--preset--font-family--inter, 'Inter', sans-serif);
    font-size: var(--wp--preset--font-size--body-large, 18px);
    font-weight: 500;
    line-height: 1.21;
    color: var(--wp--preset--color--text-light, #787878);
    margin: 0;
}

/* ==========================================================================
   Button
   ========================================================================== */

.banner-cta__button {
    align-self: flex-start;
}

/* ==========================================================================
   Decorative Icons
   ========================================================================== */

.banner-cta__icon {
    position: absolute;
    width: 98px;
    height: 95px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.banner-cta__icon--top {
    top: -13px;
    left: -38px;
}

.banner-cta__icon--bottom {
    bottom: -13px;
    left: -9px;
}

/* ==========================================================================
   Image Area (Right Side)
   ========================================================================== */

.banner-cta__image-wrapper {
    flex-shrink: 0;
    width: 336px;
    min-height: 336px;
}

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

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */

@media (max-width: 1024px) {
    .banner-cta {
        gap: 24px;
    }

    .banner-cta__content {
        padding: 40px 32px;
        gap: 40px;
    }

    .banner-cta__image-wrapper {
        width: 260px;
        min-height: 260px;
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 768px) {
    .banner-cta {
        flex-direction: column;
        gap: 0;
    }

    .banner-cta__content {
        padding: 32px 24px;
        gap: 32px;
    }

    .banner-cta__title {
        font-size: var(--wp--preset--font-size--medium, 24px);
    }

    .banner-cta__description {
        font-size: var(--wp--preset--font-size--normal, 16px);
    }

    .banner-cta__image-wrapper {
        width: 100%;
        min-height: 200px;
        max-height: 260px;
        order: -1;
    }

    .banner-cta__icon {
        display: none;
    }
}

/* ==========================================================================
   Editor Styles
   ========================================================================== */

.is-admin .banner-cta,
.block-editor-block-list__block .banner-cta {
    min-height: 200px;
}
