﻿.rize-advantage {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 34px;
    color: #241C4F;
    margin-bottom: 50px;
}

.advantage-wrapper {
    display: flex;
    gap: 50px;
}

/* RIGHT SIDE MAIN IMAGE */
.advantage-images {
    width: 50%;
    position: relative;
}

.adv-img {
    width: 100%;
    border-radius: 14px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .35s ease;
}

    .adv-img.active {
        opacity: 1;
        position: relative;
    }

/* RIGHT SIDE LIST */
.advantage-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* BASE LIST ITEM */
.advantage-item {
    display: flex;
    width: 100%;
    max-width: 563px; /* replaces hard width */
    padding: 36px;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    border-bottom: 1px solid #E6E6E6;
    transition: 0.25s ease;
}

/* Prevent icon squish */
.icon-box {
    /*    flex-shrink: 0;
    display: flex;
    align-items: flex-start;*/
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background-color: #595861; /* inactive color */
    mask: var(--icon-url) no-repeat center / contain;
    -webkit-mask: var(--icon-url) no-repeat center / contain;
}

.advantage-item.active .icon-box {
    background-color: #F36C37; /* active color */
}

/*    .icon-box img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }*/

/* TEXT */
.text-box h4 {
    margin: 0;
    font-size: 19.2px;
    font-weight: 700;
    line-height: 23px;
    font-family: Poppins;
    color: #595861;
}

.text-box p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 28px;
    font-family: Poppins;
    color: #595861;
    display: none; /* Hidden until active */
}

/* ACTIVE BLOCK */
.advantage-item.active {
    background: white;
    /*    border-radius: 12px;*/
    border-bottom: none;
    /*    box-shadow: 0px 12px 40px rgba(0,0,0,0.12);*/
    box-shadow: 0px 20px 55px rgba(0, 0, 0, 0.17);
}

    .advantage-item.active h4 {
        color: #F36C37;
    }

    .advantage-item.active p {
        display: block;
    }

/* INACTIVE BLOCK */
.advantage-item:not(.active) {
    padding-right: 115px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .advantage-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .advantage-images,
    .advantage-list {
        width: 100%;
    }

    .advantage-item {
        max-width: 100%;
        padding: 26px;
        gap: 16px;
    }

        .advantage-item:not(.active) {
            padding-right: 26px;
        }

/*    .icon-box img {
        width: 24px;
        height: 24px;
    }*/
}
