/* ==========================================================
   STAGE 4 — INFORMASI PRODUK PEREKAT & PLASTER
========================================================== */

.perekat-information-section {
    width: 100%;
    padding:
        clamp(70px, 7vw, 104px) 0 clamp(80px, 8vw, 118px);

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


/* ==========================================================
   HEADER
========================================================== */

.perekat-information-header {
    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    margin-bottom: 29px;
}

.perekat-information-title {
    margin: 0;

    color: var(--perekat-black);

    font-size: clamp(34px, 3.2vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.7px;
}


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

.perekat-information-heading-mark {
    position: relative;

    flex: 0 0 auto;

    width: 30px;
    height: 43px;
}

.perekat-information-heading-mark span {
    position: absolute;
    left: 8px;

    display: block;

    width: 8px;
    height: 26px;

    background-color: var(--perekat-red);
}

.perekat-information-heading-mark span:first-child {
    top: 0;

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

.perekat-information-heading-mark span:last-child {
    bottom: 0;

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


/* ==========================================================
   INFORMATION TABLE
========================================================== */

.perekat-information-table {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    width: 100%;

    background-color: #ffffff;
    border: 1px solid #d7d7d7;
    border-radius: 7px;

    overflow: hidden;
}

.perekat-information-column {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.perekat-information-column-right {
    border-left: 1px solid #d7d7d7;
}

.perekat-information-row {
    display: grid;
    grid-template-columns:
        minmax(170px, 0.87fr) minmax(230px, 1.13fr);

    min-height: 65px;

    border-bottom: 1px solid #d7d7d7;
}

.perekat-information-column .perekat-information-row:last-child {
    border-bottom: 0;
}

.perekat-information-row-large {
    flex: 1;
}

.perekat-information-label,
.perekat-information-value {
    display: flex;
    align-items: center;

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

.perekat-information-label {
    background-color: #ffffff;
    border-right: 1px solid #d7d7d7;

    color: #171717;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.perekat-information-value {
    color: #575757;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
}


/* ==========================================================
   NOTICE CARD
========================================================== */

.perekat-information-notice {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 17px;

    width: 100%;
    min-height: 67px;
    margin-top: 21px;
    padding:
        14px 20px;

    background-color: #ffffff;
    border: 1px solid #9e9e9e;
    border-radius: 5px;

    color: #171717;

    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.perekat-information-notice:hover {
    border-color: var(--perekat-red);
    box-shadow: 0 11px 27px rgba(0, 0, 0, 0.06);

    transform: translateY(-2px);
}

.perekat-information-notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    color: #151515;
}

.perekat-information-notice-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.perekat-information-notice-text {
    margin: 0;

    color: #414141;

    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.perekat-information-notice-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: var(--perekat-red);

    transition: transform 180ms ease;
}

.perekat-information-notice-arrow svg {
    width: 21px;
    height: 21px;
}

.perekat-information-notice:hover .perekat-information-notice-arrow {
    transform: translateX(4px);
}


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

@media (max-width: 1380px) {
    .perekat-information-row {
        grid-template-columns:
            minmax(150px, 0.84fr) minmax(190px, 1.16fr);

        min-height: 60px;
    }

    .perekat-information-label,
    .perekat-information-value {
        padding:
            14px 18px;
    }

    .perekat-information-label {
        font-size: 13px;
    }

    .perekat-information-value {
        font-size: 12px;
    }
}


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

@media (max-width: 1000px) {
    .perekat-information-table {
        grid-template-columns: 1fr;
    }

    .perekat-information-column-right {
        border-top: 1px solid #d7d7d7;
        border-left: 0;
    }

    .perekat-information-row {
        grid-template-columns:
            minmax(190px, 0.76fr) minmax(280px, 1.24fr);

        min-height: 64px;
    }

    .perekat-information-label {
        font-size: 14px;
    }

    .perekat-information-value {
        font-size: 13px;
    }
}


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

@media (max-width: 760px) {
    .perekat-information-section {
        padding:
            64px 0 78px;
    }

    .perekat-information-header {
        gap: 15px;

        margin-bottom: 25px;
    }

    .perekat-information-title {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .perekat-information-heading-mark {
        width: 26px;
        height: 37px;
    }

    .perekat-information-heading-mark span {
        left: 7px;

        width: 7px;
        height: 23px;
    }

    .perekat-information-row {
        grid-template-columns:
            minmax(170px, 0.8fr) minmax(220px, 1.2fr);
    }

    .perekat-information-notice {
        gap: 14px;

        padding:
            14px 17px;
    }
}


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

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

    .perekat-information-header {
        align-items: flex-start;
        gap: 12px;
    }

    .perekat-information-title {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -1.2px;
    }

    .perekat-information-heading-mark {
        width: 22px;
        height: 32px;
        margin-top: 4px;
    }

    .perekat-information-heading-mark span {
        left: 6px;

        width: 6px;
        height: 20px;
    }

    .perekat-information-table {
        border-radius: 6px;
    }

    .perekat-information-row {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .perekat-information-label,
    .perekat-information-value {
        min-height: 52px;
        padding:
            13px 16px;
    }

    .perekat-information-label {
        background-color: #fafafa;
        border-right: 0;
        border-bottom: 1px solid #e1e1e1;

        font-size: 13px;
    }

    .perekat-information-value {
        font-size: 12px;
    }

    .perekat-information-notice {
        grid-template-columns:
            auto minmax(0, 1fr);
        align-items: flex-start;
        gap: 13px;

        margin-top: 17px;
    }

    .perekat-information-notice-arrow {
        display: none;
    }

    .perekat-information-notice-icon {
        width: 31px;
        height: 31px;
    }

    .perekat-information-notice-text {
        font-size: 12px;
        line-height: 1.6;
    }
}


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

@media (max-width: 390px) {
    .perekat-information-title {
        font-size: 30px;
    }

    .perekat-information-label,
    .perekat-information-value {
        padding-inline: 14px;
    }
}