/* ==========================================================
   STAGE 2 — TENTANG FLOORING & NATURAL STONE
========================================================== */

.flooring-about-section {
    width: 100%;
    padding:
        clamp(56px, 6vw, 86px) 0;

    background-color: #ffffff;
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}


/* ==========================================================
   LAYOUT
========================================================== */

.flooring-about-layout {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.74fr) minmax(0, 1.26fr);
    align-items: stretch;
    gap: clamp(44px, 5vw, 78px);

    width: 100%;
}


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

.flooring-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-width: 0;
    padding:
        22px 0;
}

.flooring-about-eyebrow {
    margin: 0 0 13px;

    color: var(--flooring-red);

    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.flooring-about-title {
    max-width: 580px;
    margin: 0;

    color: var(--flooring-black);

    font-size: clamp(34px, 3.2vw, 49px);
    font-weight: 700;
    line-height: 1.13;
    letter-spacing: -1.8px;
}

.flooring-about-description {
    max-width: 600px;
    margin: 20px 0 0;

    color: var(--flooring-text);

    font-size: clamp(13px, 1vw, 16px);
    font-weight: 400;
    line-height: 1.78;
}


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

.flooring-about-visual {
    position: relative;

    min-width: 0;
    min-height: 355px;

    background-color: #eeeeee;
    border-radius: 6px;

    overflow: hidden;
}

.flooring-about-image {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 355px;

    object-fit: cover;
    object-position: center;

    transition: transform 650ms ease;
}

.flooring-about-visual:hover .flooring-about-image {
    transform: scale(1.025);
}

.flooring-about-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.04) 0%,
            transparent 25%,
            transparent 100%);

    pointer-events: none;
}


/* ==========================================================
   CHEVRON
   Shape hanya berada di dalam area gambar.
========================================================== */

.flooring-about-chevron {
    position: absolute;
    top: 0;
    right: -20px;
    bottom: 0;

    width: 128px;

    pointer-events: none;
}

.flooring-about-chevron-top,
.flooring-about-chevron-bottom {
    position: absolute;
    right: 36px;

    width: 28px;
    height: 59%;

    background:
        linear-gradient(180deg,
            #ff1424 0%,
            #d90010 100%);
}

.flooring-about-chevron-top {
    top: -32px;

    transform: rotate(-38deg);
    transform-origin: bottom center;
}

.flooring-about-chevron-bottom {
    bottom: -32px;

    transform: rotate(38deg);
    transform-origin: top center;
}


/* ==========================================================
   LARGE LAPTOP
========================================================== */

@media (max-width: 1380px) {
    .flooring-about-layout {
        grid-template-columns:
            minmax(290px, 0.78fr) minmax(0, 1.22fr);
        gap: 48px;
    }

    .flooring-about-title {
        font-size: 40px;
    }

    .flooring-about-description {
        font-size: 13px;
    }

    .flooring-about-visual,
    .flooring-about-image {
        min-height: 320px;
    }
}


/* ==========================================================
   SMALL LAPTOP
========================================================== */

@media (max-width: 1050px) {
    .flooring-about-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .flooring-about-content {
        max-width: 720px;
        padding: 0;
    }

    .flooring-about-title {
        max-width: 680px;

        font-size: clamp(39px, 5vw, 50px);
    }

    .flooring-about-description {
        max-width: 700px;

        font-size: 14px;
    }

    .flooring-about-visual,
    .flooring-about-image {
        min-height: 410px;
    }
}


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

@media (max-width: 760px) {
    .flooring-about-section {
        padding:
            58px 0;
    }

    .flooring-about-layout {
        gap: 28px;
    }

    .flooring-about-title {
        font-size: 39px;
        letter-spacing: -1.4px;
    }

    .flooring-about-visual,
    .flooring-about-image {
        min-height: 350px;
    }

    .flooring-about-chevron {
        right: -30px;

        width: 105px;
    }

    .flooring-about-chevron-top,
    .flooring-about-chevron-bottom {
        right: 30px;

        width: 24px;
    }
}


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

@media (max-width: 560px) {
    .flooring-about-section {
        padding:
            49px 0;
    }

    .flooring-about-eyebrow {
        margin-bottom: 11px;

        font-size: 10px;
    }

    .flooring-about-title {
        font-size: 32px;
        line-height: 1.17;
        letter-spacing: -1.2px;
    }

    .flooring-about-description {
        margin-top: 17px;

        font-size: 13px;
        line-height: 1.72;
    }

    .flooring-about-visual,
    .flooring-about-image {
        min-height: 280px;
    }

    .flooring-about-chevron {
        right: -34px;

        width: 90px;
    }

    .flooring-about-chevron-top,
    .flooring-about-chevron-bottom {
        right: 26px;

        width: 21px;
    }
}


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

@media (max-width: 390px) {
    .flooring-about-title {
        font-size: 29px;
    }

    .flooring-about-visual,
    .flooring-about-image {
        min-height: 245px;
    }
}