.for-you-section {
    background: var(--theme-color2);
    padding: clamp(64px, 8vw, 112px) 0;
}
.for-you-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
    grid-template-rows: auto auto;
    column-gap: clamp(48px, 10vw, 120px);
    row-gap: 36px;
    align-items: stretch;
}

.for-you-left {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    position: relative;
    min-height: 100%;
}

.for-you-sticky-card {
    position: relative;
    max-width: 420px;
    margin-left: auto;
    background: #050505;
    color: #ffffff;
    border-radius: 46px 46px 46px 46px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    will-change: transform;
    transition: transform 0.08s linear;
}

.for-you-heading {
    margin: 0 0 18px;
    color: var(--theme-color);
    font-family: "Shrikhand", serif;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.06;
    text-wrap: balance;
}

.for-you-heading span {
    display: block;
}

.for-you-description {
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 700;
    line-height: 1.55;
}

.for-you-description p,
.for-you-item-text p {
    margin: 0;
}

.for-you-right {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    display: grid;
    gap: clamp(32px, 5vw, 56px);
}

.for-you-item {
    animation: forYouFadeIn 680ms ease both;
    animation-delay: var(--item-delay);
}

.for-you-image-wrap {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
        var(--theme-color);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.for-you-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.for-you-item:hover .for-you-image-wrap img {
    transform: scale(1.06);
}

.for-you-image-wrap--empty::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.18));
}

.for-you-copy {
    padding-top: 20px;
}

.for-you-copy h3 {
    margin: 0 0 10px;
    color: var(--theme-color);
    font-family: "Shrikhand", serif;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.1;
}

.for-you-item-text {
    color: #261b18;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 1.65;
}

.for-you-actions {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: clamp(12px, 2vw, 24px);
}

.for-you-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 28px;
    background: var(--theme-color);
    color: #ffffff !important;
    border: 1px solid var(--theme-color);
    font-family: "Shrikhand", serif;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.for-you-btn:hover,
.for-you-btn:focus {
    background: #050505;
    color: #ffffff !important;
    transform: translateY(-2px);
}

@keyframes forYouFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .for-you-layout {
        grid-template-columns: 1fr;
    }

    .for-you-left,
    .for-you-right,
    .for-you-actions {
        grid-column: 1;
        grid-row: auto;
    }

    .for-you-sticky-card {
        position: relative;
        top: auto;
        max-width: none;
        margin: 0;
    }
}
@media (max-width: 575px) {
    .for-you-section {
        padding: 48px 0;
    }

    .for-you-sticky-card {
        padding: 26px 22px;
    }

    .for-you-image-wrap {
        aspect-ratio: 4 / 3;
    }

    .for-you-actions {
        gap: 12px;
    }

    .for-you-btn {
        width: 100%;
    }
}
.for-you-section,
.for-you-section .container,
.for-you-layout {
    overflow: visible !important;
}

@media (max-width: 991px) {
    .for-you-sticky-card {
        transform: none !important;
    }
}
