/* ==========================================================
   STAGE 2 — TENTANG PRODUK SEMEN
========================================================== */

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

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


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

.semen-about-panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;

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

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

    overflow: hidden;
}


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

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

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

.semen-about-eyebrow {
    margin: 0 0 20px;

    color: #ef0000;

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

.semen-about-title {
    margin: 0;

    color: #090909;

    font-size: clamp(38px, 3.7vw, 56px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -2.2px;
}

.semen-about-description {
    max-width: 650px;
    margin: 27px 0 0;

    color: #333333;

    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 400;
    line-height: 1.85;
}


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

.semen-about-visual {
    position: relative;

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

    background-color: #eeeeee;

    overflow: hidden;
}

.semen-about-image {
    display: block;

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

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

    transition: transform 650ms ease;
}

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

.semen-about-image-overlay {
    position: absolute;
    inset: 0;

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

    pointer-events: none;
}


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

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

    width: 150px;

    pointer-events: none;
}

.semen-about-chevron-top,
.semen-about-chevron-bottom {
    position: absolute;
    right: 39px;

    width: 31px;
    height: 58%;

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

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

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

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

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


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

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

    .semen-about-content {
        padding:
            48px 52px;
    }

    .semen-about-title {
        font-size: 46px;
    }

    .semen-about-description {
        margin-top: 23px;

        font-size: 15px;
        line-height: 1.8;
    }

    .semen-about-visual,
    .semen-about-image {
        min-height: 420px;
    }

    .semen-about-chevron {
        width: 130px;
    }

    .semen-about-chevron-top,
    .semen-about-chevron-bottom {
        right: 34px;

        width: 28px;
    }
}


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

@media (max-width: 1050px) {
    .semen-about-panel {
        grid-template-columns:
            minmax(0, 0.95fr) minmax(0, 1.05fr);
    }

    .semen-about-content {
        padding:
            42px 38px;
    }

    .semen-about-title {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .semen-about-description {
        font-size: 14px;
    }
}


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

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

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

        min-height: 0;
    }

    .semen-about-content {
        min-height: 400px;
        padding:
            52px 45px;
    }

    .semen-about-title {
        font-size: clamp(40px, 7vw, 52px);
    }

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


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

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

    .semen-about-panel {
        border-radius: 9px;
    }

    .semen-about-content {
        min-height: 0;
        padding:
            40px 25px 46px;
    }

    .semen-about-eyebrow {
        margin-bottom: 16px;

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

    .semen-about-title {
        font-size: 34px;
        line-height: 1.17;
        letter-spacing: -1.4px;
    }

    .semen-about-title br {
        display: none;
    }

    .semen-about-description {
        margin-top: 22px;

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

    .semen-about-visual,
    .semen-about-image {
        min-height: 300px;
    }

    .semen-about-chevron {
        width: 95px;
    }

    .semen-about-chevron-top,
    .semen-about-chevron-bottom {
        right: 23px;

        width: 22px;
    }
}


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

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

    .semen-about-title {
        font-size: 30px;
    }

    .semen-about-visual,
    .semen-about-image {
        min-height: 260px;
    }
}