.scroll-morph-container-0e54022a {
    width: 100%;
    min-height: 90vh;
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--morph-radius-0e54022a, 50% 50% 50% 50% / 150px 150px 150px 150px);
    transition: border-radius 0.1s ease-out;
    margin: 4rem 0;
    overflow: hidden;
}

.scroll-morph-grid-0e54022a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.scroll-morph-image-item-0e54022a {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background-color: #ffffff;
}

.scroll-morph-image-bg-0e54022a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-morph-image-item-0e54022a:hover .scroll-morph-image-bg-0e54022a {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .scroll-morph-grid-0e54022a {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .scroll-morph-container-0e54022a {
        padding: 4rem 1rem;
        border-radius: var(--morph-radius-0e54022a, 20% 20% 20% 20% / 50px 50px 50px 50px);
    }
    .scroll-morph-grid-0e54022a {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .scroll-morph-image-item-0e54022a {
        padding-bottom: 60%;
        border-radius: 1.5rem;
    }
}
