/* ── ABOUT SPLIT HERO ── */
.ash-wrap {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    width: 100%;
    position: relative;
    overflow: visible;
}

/* ── BLUE HERO BOX ── */
.ash-hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    background: linear-gradient(256deg, #5372b0b3 0%, #5372b0 88%);
    border-radius: 20px;
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 52px 52px 52px 52px;
    box-sizing: border-box;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}

/* ── IMAGE WRAP — strict right half, image centered within it, bleeds upward ── */
.ash-image-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: calc(100% + 180px);
    z-index: 10;
    pointer-events: none;
    clip-path: inset(-9999px -9999px 0px -9999px);
    overflow: visible;
    opacity: 0;
    /* Always centers image horizontally within the right column */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.ash-image {
    display: block;
    /* Auto width + full height = image scales from its own center */
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom center;
    transform-origin: bottom center;
    transform: scale(1.1);
    flex-shrink: 0;
    /* Never overflow left into text column */
    max-width: 100%;
}

/* ── LEFT COL ── */
.ash-hero__left {
    position: relative;
    z-index: 15;
    width: 46%;
    max-width: 480px;
    align-self: center;
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
}

/* Heading — large, white, heavy */
h2.ash-heading,
.ash-heading {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 24px 0;
    letter-spacing: -0.4px;
    padding: 0;
    border: none;
    background: none;
    text-transform: none;
}

/* Description — smaller, dimmer, lighter weight */
.ash-description {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}
.ash-description p {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
.ash-description p + p {
    margin-top: 16px;
}

/* ── MOBILE IMAGE ── */
.ash-mobile-img-wrap {
    display: none;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 5;
    width: 85%;
    height: 320px;
    margin: 0 auto -80px auto;
    pointer-events: none;
    overflow: visible;
    opacity: 0;
    transform: translateY(30px);
}
.ash-mobile-img-wrap img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* ── TABLET ── structural only, values via Elementor responsive controls ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .ash-image-wrap { width: 48%; }
    .ash-hero__left { width: 48%; max-width: 48%; }
}

/* ── MOBILE ── structural only, values via Elementor responsive controls ── */
@media (max-width: 767px) {
    .ash-image-wrap { display: none !important; }
    .ash-mobile-img-wrap { display: flex !important; }
    .ash-hero {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
        overflow: hidden !important;
    }
    .ash-hero__left {
        width: 100% !important;
        max-width: 100% !important;
    }
}
