.content-showcase-section {
    background-color: var(--color-white);
    padding: 50px 0;
}

.content-showcase-wrap {
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(0, 91, 155, 0.15);
    position: relative;
    overflow: hidden;
    position: relative;
    background-color: var(--color-white);
}

.content-showcase-left-col,
.content-showcase-right-col {
    width: 50%;
    flex: 1 1 50%;
}

.image-right .content-showcase-wrap {
    flex-direction: row-reverse;
}

.image-right .section-glow {
    left: unset;
    right: 0;
}

.content-showcase-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
    box-sizing: border-box;
}


.content-showcase-image-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-showcase-image-wrap img {
    height: 100%;
    width: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.content-showcase-content p:has(+ ul) {
    margin: 0 0 20px 0;
}

.section-glow {
    position: absolute;
    width: 17%;
    height: 80%;
    left: -130px;
    top: -60px;
    background-color: var(--color-secondary-light);
    filter: blur(242px);
    border-radius: 600px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.image-content-section.image-right .section-glow {
    left: auto;
    right: -180px;
    top: 0;
}

.content-showcase-content ul {
    margin: 0;
}


@media (max-width: 1200px) {
    .content-showcase-section {
        padding: 40px 0;
    }

    .content-showcase-box {
        padding: 40px;
    }

    .content-showcase-title {
        margin: 0 0 20px 0;
    }
}

@media (max-width: 992px) {

    .content-showcase-left-col,
    .content-showcase-right-col {
        width: 100%;
        flex: 1 1 100%;
    }

    .content-showcase-wrap {
        flex-direction: column;
    }

    .image-right .content-showcase-wrap {
        flex-direction: column;
    }

    .section-glow {
        width: 30%;
        height: 50%;
        left: -80px;
        top: -30px;
    }

    .image-content-section.image-right .section-glow {
        right: -100px;
        top: -20px;
    }
}

@media (max-width: 576px) {
    .content-showcase-box {
        padding: 30px 20px;
    }

    .section-glow {
        width: 40%;
        height: 40%;
        left: -50px;
        top: -20px;
        filter: blur(180px);
    }

    .image-content-section.image-right .section-glow {
        right: -60px;
        top: -10px;
    }

    .showcase-image-wrap img {
        height: auto;
        width: 100%;
    }
}