.rl-intro img{
    height: 472px;
    width: 100%;
    border-top-left-radius: 124px;
    border-top-right-radius: 124px;
    overflow: hidden; /* ensure child content respects border radius */
}

.rl-intro-v2 img {
    border-radius: 24px;
}

.project-details__text1-img {
    margin-bottom: 32px;
}

.image-split-gallery {
    margin-bottom: 40px;
}

.image-stack-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.single-img-wrapper img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-img-wrapper:hover img {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .image-stack-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .single-img-wrapper img {
        height: 200px;
    }
}


