.ananda-gallery-intro,
.ananda-gallery-intro *{
    box-sizing:border-box;
}

.ananda-gallery-intro{
    --ananda-gallery-intro-bg:#fbfaf5;
    --ananda-gallery-leaf-color:#8bc5ee;
    --ananda-gallery-blob-color:#eaf5ff;
    --ananda-gallery-circle-color:#eef7e6;
    position:relative;
    z-index:0;
    width:100%;
    padding:70px 0;
    background:transparent;
    overflow:hidden;
    font-family:var(--e-global-typography-text-font-family, Inter, Arial, sans-serif);
}

.ananda-gallery-intro::before{
    content:"";
    position:absolute;
    z-index:-3;
    top:0;
    bottom:0;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    background:var(--ananda-gallery-intro-bg);
}

.ananda-gallery-intro__inner{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
    box-sizing:border-box;
    position:relative;
    z-index:2;
}

.ananda-gallery-intro__grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,52%);
    align-items:center;
    gap:70px;
}

.ananda-gallery-intro--image-text .ananda-gallery-intro__content{
    order:2;
}

.ananda-gallery-intro--image-text .ananda-gallery-intro__image{
    order:1;
}

.ananda-gallery-intro__content{
    max-width:560px;
    min-width:0;
    position:relative;
    z-index:2;
    text-align:left;
}

.ananda-gallery-intro__badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:0 0 48px;
    padding:12px 20px;
    border-radius:28px;
    background:#dcecff;
    color:#1f55a8;
    font-size:17px;
    line-height:1.2;
    font-weight:800;
    box-shadow:0 10px 30px rgba(47,107,177,.08);
}

.ananda-gallery-intro__badge-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    color:#438cf1;
    line-height:1;
}

.ananda-gallery-intro__badge-icon i{
    font-size:22px;
    line-height:1;
}

.ananda-gallery-intro__badge-icon svg{
    width:22px;
    height:22px;
    display:block;
    fill:currentColor;
}

.ananda-gallery-intro__title{
    margin:0 0 26px;
    color:#174a97;
    font-family:var(--e-global-typography-primary-font-family, Inter, Arial, sans-serif);
    font-size:54px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-.045em;
}

.ananda-gallery-intro__description{
    margin:0;
    color:#526071;
    font-size:19px;
    line-height:1.78;
    font-weight:500;
}

.ananda-gallery-intro__image{
    position:relative;
    z-index:2;
    min-width:0;
}

.ananda-gallery-intro__image a{
    display:block;
    text-decoration:none;
}

.ananda-gallery-intro__image img{
    display:block;
    width:100%;
    height:520px;
    object-fit:cover;
    object-position:center center;
    border-radius:32px;
    box-shadow:0 24px 55px rgba(32,45,61,.13);
}

.ananda-gallery-intro--decorated.ananda-gallery-intro--leaf::after{
    content:"";
    position:absolute;
    z-index:-1;
    left:50%;
    bottom:18px;
    width:100vw;
    height:270px;
    transform:translateX(-50%);
    pointer-events:none;
    background:
        radial-gradient(ellipse at 4% 92%, transparent 0 26px, var(--ananda-gallery-leaf-color) 27px 28px, transparent 29px),
        radial-gradient(ellipse at 8% 82%, transparent 0 42px, var(--ananda-gallery-leaf-color) 43px 44px, transparent 45px),
        radial-gradient(ellipse at 2% 62%, transparent 0 54px, var(--ananda-gallery-leaf-color) 55px 56px, transparent 57px),
        linear-gradient(135deg, transparent 0 12%, color-mix(in srgb, var(--ananda-gallery-leaf-color) 78%, transparent) 12.2% 12.8%, transparent 13% 100%);
    opacity:.28;
}

.ananda-gallery-intro--decorated.ananda-gallery-intro--blob .ananda-gallery-intro__inner::before{
    content:"";
    position:absolute;
    z-index:-1;
    left:-32px;
    bottom:-96px;
    width:180px;
    height:140px;
    border-radius:58% 42% 0 0;
    background:var(--ananda-gallery-blob-color);
    opacity:.9;
    pointer-events:none;
}

.ananda-gallery-intro--decorated.ananda-gallery-intro--circle .ananda-gallery-intro__inner::after{
    content:"";
    position:absolute;
    z-index:-1;
    top:-145px;
    left:48%;
    width:160px;
    height:160px;
    border-radius:50%;
    border:16px solid var(--ananda-gallery-circle-color);
    opacity:.62;
    pointer-events:none;
}

@supports not (color:color-mix(in srgb, white, black)){
    .ananda-gallery-intro--decorated.ananda-gallery-intro--leaf::after{
        background:
            radial-gradient(ellipse at 4% 92%, transparent 0 26px, var(--ananda-gallery-leaf-color) 27px 28px, transparent 29px),
            radial-gradient(ellipse at 8% 82%, transparent 0 42px, var(--ananda-gallery-leaf-color) 43px 44px, transparent 45px),
            radial-gradient(ellipse at 2% 62%, transparent 0 54px, var(--ananda-gallery-leaf-color) 55px 56px, transparent 57px),
            linear-gradient(135deg, transparent 0 12%, rgba(139,197,238,.78) 12.2% 12.8%, transparent 13% 100%);
    }
}

@media(max-width:1200px){
    .ananda-gallery-intro__title{
        font-size:46px;
    }
    .ananda-gallery-intro__description{
        font-size:18px;
    }
}

@media(max-width:1024px){
    .ananda-gallery-intro{
        padding:54px 0;
    }
    .ananda-gallery-intro__inner{
        width:100%;
        max-width:100%;
        padding-left:22px;
        padding-right:22px;
    }
    .ananda-gallery-intro__grid{
        grid-template-columns:1fr;
        gap:42px;
    }
    .ananda-gallery-intro--image-text .ananda-gallery-intro__content,
    .ananda-gallery-intro--image-text .ananda-gallery-intro__image{
        order:initial;
    }
    .ananda-gallery-intro__content{
        max-width:760px;
    }
    .ananda-gallery-intro__badge{
        margin-bottom:30px;
    }
    .ananda-gallery-intro__image img{
        height:430px;
    }
    .ananda-gallery-intro--decorated.ananda-gallery-intro--circle .ananda-gallery-intro__inner::after{
        left:auto;
        right:4%;
    }
}

@media(max-width:767px){
    .ananda-gallery-intro{
        padding:42px 0;
    }
    .ananda-gallery-intro__inner{
        width:100%;
        max-width:100%;
        padding-left:18px;
        padding-right:18px;
    }
    .ananda-gallery-intro__grid{
        gap:28px;
    }
    .ananda-gallery-intro__badge{
        margin-bottom:24px;
        padding:10px 16px;
        font-size:15px;
    }
    .ananda-gallery-intro__badge-icon,
    .ananda-gallery-intro__badge-icon svg{
        width:20px;
        height:20px;
    }
    .ananda-gallery-intro__badge-icon i{
        font-size:19px;
    }
    .ananda-gallery-intro__title{
        font-size:36px;
        line-height:1.13;
        margin-bottom:20px;
    }
    .ananda-gallery-intro__description{
        font-size:16px;
        line-height:1.7;
    }
    .ananda-gallery-intro__image img{
        height:320px;
        border-radius:22px;
    }
    .ananda-gallery-intro--decorated.ananda-gallery-intro--leaf::after{
        height:190px;
        opacity:.20;
    }
    .ananda-gallery-intro--decorated.ananda-gallery-intro--blob .ananda-gallery-intro__inner::before{
        left:-28px;
        bottom:-74px;
        width:134px;
        height:100px;
    }
    .ananda-gallery-intro--decorated.ananda-gallery-intro--circle .ananda-gallery-intro__inner::after{
        top:-120px;
        right:-38px;
        width:130px;
        height:130px;
        border-width:13px;
    }
}
