.vm-c201d396,
.vm-c201d396 * {
    box-sizing: border-box;
}

.vm-c201d396 {
    --vm-height: 680px;
    --vm-column-gap: 22px;
    --vm-item-gap: 18px;
    --vm-fade-size: 62px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--vm-column-gap);
    width: 100%;
    max-width: none;
    height: var(--vm-height);
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
}

.vm-c201d396 .vm-column {
    position: relative;
    width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    contain: layout paint;
}

.vm-c201d396.vm-has-edge-fade .vm-column {
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--vm-fade-size),
        #000 calc(100% - var(--vm-fade-size)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--vm-fade-size),
        #000 calc(100% - var(--vm-fade-size)),
        transparent 100%
    );
}

.vm-c201d396 .vm-track {
    --vm-from: 0px;
    --vm-to: -50%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    animation-duration: 26s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.vm-c201d396 .vm-track--up {
    animation-name: vm-c201d396-fallback-up;
}

.vm-c201d396 .vm-track--down {
    animation-name: vm-c201d396-fallback-down;
}

.vm-c201d396 .vm-track.vm-is-ready {
    animation-name: vm-c201d396-dynamic-loop;
}

.vm-c201d396 .vm-group {
    display: flex;
    flex-direction: column;
    gap: var(--vm-item-gap);
    width: 100%;
    min-width: 0;
    padding-bottom: var(--vm-item-gap);
}

.vm-c201d396 .vm-item {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
    perspective: 900px;
}

.vm-c201d396 .vm-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(68, 58, 52, 0.08);
    border-radius: 18px;
    background: #f4f1ed;
    box-shadow:
        0 1px 2px rgba(50, 42, 37, 0.05),
        0 12px 30px rgba(50, 42, 37, 0.09);
    transform: translateZ(0);
    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 320ms ease,
        border-color 320ms ease;
}

.vm-c201d396 .vm-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.08) 22%,
        transparent 48%
    );
}

.vm-c201d396 .vm-card--link {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.vm-c201d396 .vm-card--link:focus-visible {
    outline: 3px solid rgba(73, 111, 94, 0.55);
    outline-offset: 4px;
}

.vm-c201d396 .vm-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.001);
    transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 320ms ease;
    user-select: none;
}

/* Editorial pattern inspired by the supplied reference image. */
.vm-c201d396.vm-shape-editorial .vm-column--left .vm-item:nth-child(4n + 1) .vm-card {
    aspect-ratio: 4 / 5;
}

.vm-c201d396.vm-shape-editorial .vm-column--left .vm-item:nth-child(4n + 2) .vm-card {
    aspect-ratio: 1 / 1;
}

.vm-c201d396.vm-shape-editorial .vm-column--left .vm-item:nth-child(4n + 3) .vm-card {
    aspect-ratio: 5 / 6;
}

.vm-c201d396.vm-shape-editorial .vm-column--left .vm-item:nth-child(4n + 4) .vm-card {
    aspect-ratio: 3 / 4;
}

.vm-c201d396.vm-shape-editorial .vm-column--right .vm-item:nth-child(4n + 1) .vm-card {
    aspect-ratio: 1 / 1;
}

.vm-c201d396.vm-shape-editorial .vm-column--right .vm-item:nth-child(4n + 2) .vm-card {
    aspect-ratio: 3 / 4;
}

.vm-c201d396.vm-shape-editorial .vm-column--right .vm-item:nth-child(4n + 3) .vm-card {
    aspect-ratio: 4 / 5;
}

.vm-c201d396.vm-shape-editorial .vm-column--right .vm-item:nth-child(4n + 4) .vm-card {
    aspect-ratio: 5 / 6;
}

.vm-c201d396.vm-shape-portrait .vm-card {
    aspect-ratio: 4 / 5;
}

.vm-c201d396.vm-shape-square .vm-card {
    aspect-ratio: 1 / 1;
}

.vm-c201d396.vm-shape-landscape .vm-card {
    aspect-ratio: 4 / 3;
}

.vm-c201d396.vm-shape-natural .vm-card {
    aspect-ratio: auto;
}

.vm-c201d396.vm-shape-natural .vm-image {
    height: auto;
}

.vm-c201d396.vm-pause-on-hover:hover .vm-track,
.vm-c201d396.vm-pause-on-hover:focus-within .vm-track,
.vm-c201d396.vm-is-offscreen .vm-track {
    animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
    .vm-c201d396.vm-has-hover .vm-item:hover .vm-card {
        z-index: 3;
        border-color: rgba(68, 58, 52, 0.14);
        box-shadow:
            0 2px 5px rgba(50, 42, 37, 0.06),
            0 20px 44px rgba(50, 42, 37, 0.15);
        transform: translate3d(0, -5px, 0) scale(1.012);
    }

    .vm-c201d396.vm-has-hover .vm-item:hover .vm-image {
        transform: scale(1.055);
        filter: saturate(1.035) contrast(1.015);
    }
}

@keyframes vm-c201d396-fallback-up {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -50%, 0);
    }
}

@keyframes vm-c201d396-fallback-down {
    from {
        transform: translate3d(0, -50%, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes vm-c201d396-dynamic-loop {
    from {
        transform: translate3d(0, var(--vm-from), 0);
    }
    to {
        transform: translate3d(0, var(--vm-to), 0);
    }
}

@media (max-width: 767px) {
    .vm-c201d396 {
        --vm-height: 560px;
        --vm-column-gap: 14px;
        --vm-item-gap: 14px;
        --vm-fade-size: 46px;
    }

    .vm-c201d396 .vm-card {
        border-radius: 16px;
        box-shadow:
            0 1px 2px rgba(50, 42, 37, 0.04),
            0 9px 22px rgba(50, 42, 37, 0.08);
    }
}

@media (max-width: 479px) {
    .vm-c201d396 {
        --vm-height: 440px;
        --vm-column-gap: 9px;
        --vm-item-gap: 10px;
        --vm-fade-size: 32px;
    }

    .vm-c201d396 .vm-card {
        border-radius: 13px;
    }

    .vm-c201d396 .vm-card::after {
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vm-c201d396 .vm-track {
        animation: none !important;
        transform: none !important;
        will-change: auto;
    }

    .vm-c201d396 .vm-card,
    .vm-c201d396 .vm-image {
        transition: none !important;
    }
}
