/* ==========================================================
   STAGE 2 — TENTANG PEREKAT & PLASTER
========================================================== */

.perekat-about-section {
    width: 100%;
    padding:
        clamp(70px, 7vw, 105px) 0;

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


/* ==========================================================
   MAIN PANEL
========================================================== */

.perekat-about-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: stretch;

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

    background-color: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;

    overflow: hidden;
}


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

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

    min-width: 0;
    padding:
        55px clamp(42px, 5vw, 72px);
}

.perekat-about-eyebrow {
    margin: 0 0 17px;

    color: var(--perekat-red);

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

.perekat-about-title {
    max-width: 650px;
    margin: 0;

    color: var(--perekat-black);

    font-size: clamp(35px, 3.4vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.9px;
}

.perekat-about-description {
    max-width: 650px;
    margin: 24px 0 0;

    color: var(--perekat-text);

    font-size: clamp(14px, 1.05vw, 17px);
    font-weight: 400;
    line-height: 1.85;
}


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

.perekat-about-visual {
    position: relative;

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

    background-color: #eeeeee;

    overflow: hidden;
}

.perekat-about-image {
    display: block;

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

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

    transition: transform 650ms ease;
}

.perekat-about-panel:hover .perekat-about-image {
    transform: scale(1.025);
}

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

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

    pointer-events: none;
}


/* ==========================================================
   RED CHEVRON
========================================================== */

.perekat-about-chevron {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 145px;

    pointer-events: none;
}

.perekat-about-chevron-top,
.perekat-about-chevron-bottom {
    position: absolute;
    right: 38px;

    width: 31px;
    height: 58%;

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

.perekat-about-chevron-top {
    top: -30px;

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

.perekat-about-chevron-bottom {
    bottom: -30px;

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


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

@media (max-width: 1380px) {
    .perekat-about-panel {
        min-height: 400px;
    }

    .perekat-about-content {
        padding:
            46px 50px;
    }

    .perekat-about-title {
        font-size: 42px;
    }

    .perekat-about-description {
        margin-top: 21px;

        font-size: 14px;
    }

    .perekat-about-visual,
    .perekat-about-image {
        min-height: 400px;
    }

    .perekat-about-chevron {
        width: 125px;
    }

    .perekat-about-chevron-top,
    .perekat-about-chevron-bottom {
        right: 32px;

        width: 27px;
    }
}


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

@media (max-width: 1050px) {
    .perekat-about-panel {
        grid-template-columns:
            minmax(0, 0.98fr) minmax(0, 1.02fr);
    }

    .perekat-about-content {
        padding:
            42px 37px;
    }

    .perekat-about-title {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .perekat-about-description {
        font-size: 13px;
        line-height: 1.8;
    }
}


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

@media (max-width: 820px) {
    .perekat-about-section {
        padding:
            65px 0;
    }

    .perekat-about-panel {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .perekat-about-content {
        min-height: 370px;
        padding:
            48px 42px;
    }

    .perekat-about-title {
        max-width: 620px;

        font-size: clamp(38px, 7vw, 49px);
    }

    .perekat-about-visual,
    .perekat-about-image {
        min-height: 380px;
    }
}


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

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

    .perekat-about-panel {
        border-radius: 7px;
    }

    .perekat-about-content {
        min-height: 0;
        padding:
            38px 24px 43px;
    }

    .perekat-about-eyebrow {
        margin-bottom: 15px;

        font-size: 11px;
        letter-spacing: 2.1px;
    }

    .perekat-about-title {
        font-size: 32px;
        line-height: 1.18;
        letter-spacing: -1.25px;
    }

    .perekat-about-description {
        margin-top: 20px;

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

    .perekat-about-visual,
    .perekat-about-image {
        min-height: 290px;
    }

    .perekat-about-chevron {
        width: 92px;
    }

    .perekat-about-chevron-top,
    .perekat-about-chevron-bottom {
        right: 22px;

        width: 21px;
    }
}


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

@media (max-width: 390px) {
    .perekat-about-content {
        padding-inline: 19px;
    }

    .perekat-about-title {
        font-size: 29px;
    }

    .perekat-about-visual,
    .perekat-about-image {
        min-height: 250px;
    }
}