.bca-pool-why-images {
    --bca-green: #0f5a42;
    --bca-dark: #0b3f31;
    --bca-body: #3e5b50;
    position: relative;
    overflow: hidden;
    background: #f7fbf7;
    isolation: isolate;
}

.bca-pool-why-images::before,
.bca-pool-why-images::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    height: 80px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.bca-pool-why-images::before {
    top: -45px;
    background: rgba(255,255,255,.76);
}

.bca-pool-why-images::after {
    bottom: -50px;
    background: rgba(255,255,255,.82);
}

.bca-pool-why-images__inner {
    position: relative;
    z-index: 2;
    width: min(100%, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 2.18fr;
    gap: clamp(38px, 5vw, 72px);
    align-items: stretch;
}

.bca-pool-why-images__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bca-pool-why-images__heading {
    display: flex;
    flex-direction: column;
    margin: 0;
    color: var(--bca-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -.03em;
}

.bca-pool-why-images__heading .is-highlight {
    color: var(--bca-green);
}

.bca-pool-why-images__wave {
    width: 54px;
    height: 12px;
    margin: 18px 0 20px;
    background:
        radial-gradient(circle at 8px 6px, transparent 4px, var(--bca-green) 4.5px, var(--bca-green) 5.5px, transparent 6px)
        0 0 / 19px 12px repeat-x;
    opacity: .8;
}

.bca-pool-why-images__description {
    color: var(--bca-body);
    font-size: 16px;
    line-height: 1.72;
}

.bca-pool-why-images__description p {
    margin: 0;
}

.bca-pool-why-images__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bca-pool-why-images__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 285px;
    padding: 28px 24px 28px;
    text-align: center;
    border: 1px solid rgba(15,90,66,.08);
    background: #fff;
    box-shadow: 0 16px 38px rgba(15,90,66,.08);
    transition: transform .22s ease, box-shadow .22s ease;
}

.bca-pool-why-images__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15,90,66,.13);
}

.bca-pool-why-images__image-wrap {
    width: 92px;
    height: 92px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(15,90,66,.14);
    background: transparent;
}

.bca-pool-why-images__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.bca-pool-why-images__card-title {
    margin: 0 0 12px;
    color: var(--bca-dark);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.25;
}

.bca-pool-why-images__card-text {
    color: var(--bca-body);
    font-size: 15px;
    line-height: 1.6;
}

.bca-pool-why-images__card-text p {
    margin: 0;
}

.bca-pool-why-images__leaf {
    position: absolute;
    z-index: 1;
    width: 88px;
    height: 42px;
    border: 3px solid rgba(15,90,66,.12);
    border-radius: 100% 0 100% 0;
    pointer-events: none;
}

.bca-pool-why-images__leaf--left {
    left: 2%;
    bottom: 55px;
    transform: rotate(-28deg);
}

.bca-pool-why-images__leaf--right {
    right: 2%;
    top: 52px;
    transform: rotate(148deg);
}

.bca-pool-why-images__sparkle {
    position: absolute;
    z-index: 3;
    color: #f4c542;
    font-size: 24px;
    animation: bca-why-images-float 3.5s ease-in-out infinite;
}

.bca-pool-why-images__sparkle--one {
    left: 27%;
    top: 42px;
}

.bca-pool-why-images__sparkle--two {
    right: 4%;
    bottom: 54px;
    animation-delay: -1.6s;
}

@keyframes bca-why-images-float {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(7deg); }
}

@media (prefers-reduced-motion: reduce) {
    .bca-pool-why-images__sparkle {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .bca-pool-why-images__inner {
        grid-template-columns: 1fr;
    }

    .bca-pool-why-images__intro {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .bca-pool-why-images__wave {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .bca-pool-why-images__cards {
        grid-template-columns: 1fr;
    }

    .bca-pool-why-images__heading {
        font-size: 42px;
    }

    .bca-pool-why-images__card {
        min-height: 0;
        padding: 26px 22px;
    }
}
