.ae-spotlight-block {
    /* width: 100%; */
    padding: 80px 0;
}



.spotlight-layout {
    display: flex;
    gap: 0;
    justify-content: space-between;
    background-color: var(--theme-color, var(--al-white));
}

.spotlight-layout__image {
    /* width: 53.282%;
    flex: none; */
    flex: 0 0 53.282%;
    /* min-width: 53.282%; */
    min-width: 0%;
}

.spotlight-layout__image img {
    width: 100%;
    /* height: 100%; */
    height: auto;
    /* object-fit: cover; */
    display: block;
}
.spotlight-layout__content{
    /* flex-shrink: 0; */
    /* order: 2; */
    display: flex;
    /* width: 100%; */
    flex: 1 1 0;      /* grow into remaining space, don't overflow */
    min-width: 0;     /* allow text to wrap instead of overflow */
    /* max-width: 39.22%;     */
}

.spotlight-layout__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding-left: 48px;
    min-width: 0;
    width: 100%;

}

.spotlight-layout__details h1 {
    color: var(--text-color, var(--al-black));

}

.spotlight-layout__details p {
    color: var(--text-color, var(--al-black));
    font-family: var(--font-regular);
    font-size: var(--font-size-main);
    line-height: var(--line-height-main);
}

@media (max-width: 1023.98px) and (min-width: 767.98px){
    .spotlight-layout__details h1 {
        font-size: clamp(1.75rem, 3.5vw, var(--font-size-h1));
        line-height: clamp(2rem, 4vw, var(--line-height-h1));
    }
}

/* ── MOBILE ── */
@media (max-width: 767.98px) {
    .ae-spotlight-block {
        padding: 64px 0px;
    }

    .spotlight-layout {
        flex-direction: column;
        gap: 24px;
    }

    .spotlight-layout__image {
        width: 100%;
        /* order: 1; */
    }
    /* .spotlight-layout__content{
        order: 2;
    } */

    .spotlight-layout__details {
        width: 100%;
        max-width: 100%;
        padding: 0px;
        gap: 16px;
    }
    .spotlight-layout__details p{
        margin-bottom: 8px;
    }
}

