/* =========================================================
   SPACE VANTA
   BUYING GUIDE — BUYING TIPS

   File:
   public/buying-guide/cs/buying-tips.css

   Responsibility:
   - Buying Tips list
   - Editorial tip composition
   - Tip numbering
   - Tip typography
   - Optional visual
   - Tip CTA
   - Hover / spatial interaction
   ========================================================= */


/* =========================================================
   LIST
   ========================================================= */

.sv-buying-guide-buying-tips__list {
    display:
        flex;

    flex-direction:
        column;

    width:
        100%;
}


/* =========================================================
   TIP
   ========================================================= */

.sv-buying-guide-tip {
    position:
        relative;

    width:
        100%;

    border-top:
        1px solid rgba(0, 0, 0, 0.075);
}


.sv-buying-guide-tip:first-child {
    border-top:
        0;
}


/* =========================================================
   TIP INNER
   ========================================================= */

.sv-buying-guide-tip__inner {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        52px minmax(0, 1fr) minmax(170px, 0.38fr);

    grid-template-areas:
        "number content visual";

    gap:
        26px;

    align-items:
        center;

    min-height:
        160px;

    padding:
        26px 0;

    overflow:
        hidden;

    isolation:
        isolate;
}


/* =========================================================
   NUMBER
   ========================================================= */

.sv-buying-guide-tip__number {
    grid-area:
        number;

    align-self:
        start;

    display:
        block;

    padding-top:
        4px;

    font-size:
        9px;

    line-height:
        1;

    letter-spacing:
        0.19em;

    font-weight:
        500;

    opacity:
        0.4;

    transition:
        opacity 0.35s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   CONTENT
   ========================================================= */

.sv-buying-guide-tip__content {
    grid-area:
        content;

    position:
        relative;

    z-index:
        2;

    min-width:
        0;
}


/* =========================================================
   TITLE
   ========================================================= */

.sv-buying-guide-tip__title {
    max-width:
        720px;

    margin:
        0;

    font-size:
        clamp(20px, 2.15vw, 29px);

    line-height:
        1.06;

    letter-spacing:
        -0.038em;

    font-weight:
        500;

    text-wrap:
        balance;

    opacity:
        0.93;

    transform:
        translateX(0);

    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.sv-buying-guide-tip__description {
    max-width:
        650px;

    margin-top:
        12px;

    font-size:
        12px;

    line-height:
        1.65;

    letter-spacing:
        -0.005em;

    opacity:
        0.52;

    transition:
        opacity 0.4s ease;
}


/* =========================================================
   LINK
   ========================================================= */

.sv-buying-guide-tip__link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        18px;

    min-height:
        27px;

    color:
        inherit;

    text-decoration:
        none;

    font-size:
        8px;

    line-height:
        1;

    letter-spacing:
        0.17em;

    font-weight:
        500;

    text-transform:
        uppercase;

    opacity:
        0.6;

    transition:
        opacity 0.35s ease;
}


/* =========================================================
   LINK ARROW
   ========================================================= */

.sv-buying-guide-tip__arrow {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        14px;

    line-height:
        1;

    opacity:
        0.7;

    transform:
        translate3d(0, 0, 0);

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}


/* =========================================================
   VISUAL
   ========================================================= */

.sv-buying-guide-tip__visual {
    grid-area:
        visual;

    position:
        relative;

    width:
        100%;

    aspect-ratio:
        4 / 3;

    overflow:
        hidden;

    border:
        1px solid rgba(0, 0, 0, 0.09);

    border-radius:
        12px;

    background:
        rgba(0, 0, 0, 0.025);

    z-index:
        2;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.55s ease;
}


/* =========================================================
   IMAGE
   ========================================================= */

.sv-buying-guide-tip__image {
    display:
        block;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    transform:
        scale(1.001);

    filter:
        saturate(0.92);

    transition:
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.55s ease;
}


/* =========================================================
   LIGHT
   ========================================================= */

.sv-buying-guide-tip__light {
    position:
        absolute;

    inset:
        0;

    z-index:
        3;

    pointer-events:
        none;

    opacity:
        0;

    background:
        linear-gradient(120deg,
            transparent 22%,
            rgba(255, 255, 255, 0.16) 50%,
            transparent 76%);

    transform:
        translateX(-40%);

    transition:
        opacity 0.45s ease,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   EDITORIAL ACCENT
   ========================================================= */

.sv-buying-guide-tip__content::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        -17px;

    width:
        1px;

    height:
        0;

    background:
        rgba(72, 126, 177, 0.62);

    opacity:
        0;

    transition:
        height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.sv-buying-guide-tip:hover .sv-buying-guide-tip__number {
    opacity:
        0.7;

    transform:
        translateX(3px);
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__title {
    opacity:
        1;

    transform:
        translateX(4px);
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__description {
    opacity:
        0.66;
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__content::before {
    height:
        100%;

    opacity:
        1;
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__link {
    opacity:
        1;
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__arrow {
    opacity:
        1;

    transform:
        translateX(4px) translateY(-2px);
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__visual {
    transform:
        translateY(-3px);

    border-color:
        rgba(72, 126, 177, 0.38);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(72, 126, 177, 0.03);
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__image {
    transform:
        scale(1.035);

    filter:
        saturate(1);
}


.sv-buying-guide-tip:hover .sv-buying-guide-tip__light {
    opacity:
        1;

    transform:
        translateX(40%);
}


/* =========================================================
   FOCUS
   ========================================================= */

.sv-buying-guide-tip__link:focus-visible {
    outline:
        1px solid rgba(72, 126, 177, 0.6);

    outline-offset:
        5px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sv-buying-guide-tip__inner {
        grid-template-columns:
            42px minmax(0, 1fr);

        grid-template-areas:
            "number content";

        gap:
            20px;
    }


    .sv-buying-guide-tip__visual {
        display:
            none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .sv-buying-guide-tip__inner {
        grid-template-columns:
            30px minmax(0, 1fr);

        gap:
            12px;

        min-height:
            0;

        padding:
            22px 0 26px;
    }


    .sv-buying-guide-tip__number {
        padding-top:
            3px;

        font-size:
            8px;
    }


    .sv-buying-guide-tip__title {
        font-size:
            clamp(19px, 5.3vw, 24px);

        line-height:
            1.08;

        letter-spacing:
            -0.026em;
    }


    .sv-buying-guide-tip__description {
        margin-top:
            9px;

        font-size:
            11px;
    }


    .sv-buying-guide-tip__link {
        margin-top:
            16px;

        font-size:
            8px;
    }


    .sv-buying-guide-tip__content::before {
        left:
            -8px;
    }


    .sv-buying-guide-tip:hover .sv-buying-guide-tip__title,

    .sv-buying-guide-tip:hover .sv-buying-guide-tip__number,

    .sv-buying-guide-tip:hover .sv-buying-guide-tip__arrow {
        transform:
            none;
    }


    .sv-buying-guide-tip:hover .sv-buying-guide-tip__visual {
        transform:
            none;

        box-shadow:
            none;
    }


    .sv-buying-guide-tip:hover .sv-buying-guide-tip__image {
        transform:
            none;
    }


    .sv-buying-guide-tip:hover .sv-buying-guide-tip__light {
        opacity:
            0;

        transform:
            none;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sv-buying-guide-tip *,
    .sv-buying-guide-tip *::before,
    .sv-buying-guide-tip *::after {

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}