@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

.aafe-content-showcase-wrapper h1,
.aafe-content-showcase-wrapper h2,
.aafe-content-showcase-wrapper h3,
.aafe-content-showcase-wrapper h4,
.aafe-content-showcase-wrapper h5,
.aafe-content-showcase-wrapper h6 {
    font-family: 'Sora', sans-serif;
}
.aafe-content-showcase-wrapper p,
.aafe-content-showcase-wrapper span,
.aafe-content-showcase-wrapper li,
.aafe-content-showcase-wrapper a,
.aafe-content-showcase-wrapper .aafe-content-showcase__description,
.aafe-content-showcase-wrapper .aafe-content-showcase__body-text {
    font-family: 'Inter', sans-serif;
}

.aafe-content-showcase-wrapper * {
    transition: all var(--aafe-transition, 300ms) ease;
}

.aafe-content-showcase-wrapper[data-hover="border-pop"]:hover {
    transform: scale(var(--aafe-hover-scale, 1.03));
    box-shadow: 0 0 0 2px var(--aafe-glow-color, #4F46E5);
}

.aafe-content-showcase-wrapper[data-hover="overlay"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aafe-hover-overlay, rgba(0,0,0,0.5));
    opacity: 0;
    transition: opacity var(--aafe-transition, 300ms) ease;
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
}

.aafe-content-showcase-wrapper[data-hover="overlay"] {
    position: relative;
    overflow: hidden;
}

.aafe-content-showcase-wrapper[data-hover="overlay"]:hover::before {
    opacity: var(--aafe-hover-overlay-opacity, 0.5);
}

.aafe-content-showcase-wrapper[data-hover="lift"]:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.aafe-content-showcase-wrapper[data-hover="scale"]:hover {
    transform: scale(var(--aafe-hover-scale, 1.03));
}
.aafe-content-showcase-wrapper[data-hover="glow"]:hover {
    box-shadow: 0 0 0 3px var(--aafe-glow-color, #4F46E5),
    0 8px 30px rgba(79,70,229,0.25);
}
.aafe-content-showcase-wrapper[data-hover="shine"] {
    position: relative;
    overflow: hidden;
}
.aafe-content-showcase-wrapper[data-hover="shine"]::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
    z-index: 10;
}
.aafe-content-showcase-wrapper[data-hover="shine"]:hover::after {
    left: 125%;
    transition: left var(--aafe-transition, 600ms) ease;
}

.aafe-content-showcase-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    background-color: #EDE9DE;
    padding: 80px 60px;
    box-sizing: border-box;
    width: 100%;
}

.aafe-content-showcase-wrapper--img-left {
    flex-direction: row-reverse;
}

.aafe-content-showcase__content {
    flex: 0 0 55%;
    min-width: 0;
}

.aafe-content-showcase__image {
    flex: 1 1 0%;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

.aafe-content-showcase__image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.aafe-content-showcase__img.aafe-cs-img--default {
    position: relative;
    z-index: 1;
}

.aafe-content-showcase__img.aafe-cs-img--feature {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.aafe-content-showcase__img.aafe-cs-img--feature.aafe-cs-img--active {
    opacity: 1;
}

.aafe-content-showcase__eyebrow {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0D2137;
    margin-bottom: 16px;
}

.aafe-content-showcase__heading {
    font-family: "Sora", sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    color: #0D2137;
    margin: 0 0 24px 0;
    padding: 0;
}

.aafe-content-showcase__description {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #3B4A5A;
    margin: 0 0 40px 0;
}

.aafe-content-showcase__features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.aafe-content-showcase__feature {
    border-inline-start: 3px solid #0D2137;
    padding-inline-start: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.aafe-content-showcase__feature-title {
    font-family: "Sora", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0D2137;
    margin: 0 0 8px 0;
    padding: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.aafe-content-showcase__feature-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.aafe-content-showcase__feature-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #3B4A5A;
    margin: 0;
    padding: 0;
    transition: color 0.3s ease;
}

.aafe-content-showcase__img {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .aafe-content-showcase-wrapper {
        gap: 40px;
        padding: 60px 40px;
    }
    .aafe-content-showcase__content {
        flex: 0 0 52%;
    }
}

@media (max-width: 768px) {
    .aafe-content-showcase-wrapper,
    .aafe-content-showcase-wrapper--img-left {
        flex-direction: column;
        gap: 40px;
        padding: 48px 24px;
    }
    .aafe-content-showcase__content {
        flex: 0 0 100%;
        width: 100%;
    }
    .aafe-content-showcase__image {
        width: 100%;
    }
    .aafe-content-showcase__image img {
        height: 320px;
    }
    .aafe-content-showcase__heading {
        font-size: 32px;
    }
}
