/* ==========================================================
   STAGE 5 — PERTIMBANGAN MEMILIH SEMEN
========================================================== */

.semen-considerations-section {
    width: 100%;
    padding:
        clamp(76px, 8vw, 118px) 0 clamp(88px, 9vw, 135px);

    background-color: #f8f8f7;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
}


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

.semen-considerations-header {
    max-width: 850px;
    margin-bottom: 42px;
}

.semen-considerations-title {
    margin: 0;

    color: #090909;

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

.semen-considerations-description {
    max-width: 760px;
    margin: 18px 0 0;

    color: #505050;

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


/* ==========================================================
   GRID
========================================================== */

.semen-considerations-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.3vw, 22px);

    width: 100%;
}


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

.semen-consideration-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 355px;
    padding:
        32px 24px;

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

    overflow: hidden;

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

.semen-consideration-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    height: 4px;

    background-color: #ef0000;

    content: "";

    opacity: 0;

    transform: scaleX(0);
    transform-origin: center;

    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.semen-consideration-card:hover {
    border-color: rgba(239, 0, 0, 0.4);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);

    transform: translateY(-5px);
}

.semen-consideration-card:hover::before {
    opacity: 1;

    transform: scaleX(1);
}

.semen-consideration-number {
    position: absolute;
    top: 20px;
    right: 20px;

    color: rgba(239, 0, 0, 0.15);

    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.semen-consideration-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 96px;
    height: 96px;

    color: #111111;

    transition: transform 220ms ease;
}

.semen-consideration-icon svg {
    display: block;

    width: 100%;
    height: 100%;
}

.semen-consideration-card:hover .semen-consideration-icon {
    transform: translateY(-3px);
}

.semen-consideration-card-title {
    margin: 25px 0 0;

    color: #111111;

    font-size: clamp(18px, 1.35vw, 22px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.4px;
}

.semen-consideration-card-description {
    margin: 14px 0 0;

    color: #505050;

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


/* ==========================================================
   ADVICE PANEL
========================================================== */

.semen-considerations-advice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;

    width: 100%;
    margin-top: 24px;
    padding:
        25px 28px;

    background-color: #0c0d0e;
    border-radius: 10px;
}

.semen-considerations-advice-icon {
    flex: 0 0 auto;

    width: 51px;
    height: 51px;

    color: #ffffff;
}

.semen-considerations-advice-icon svg {
    width: 100%;
    height: 100%;
}

.semen-considerations-advice-content h3 {
    margin: 0;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.semen-considerations-advice-content p {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.72);

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

.semen-considerations-advice-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    min-width: 190px;
    min-height: 50px;
    padding:
        12px 18px;

    background-color: #ef0000;
    border: 1px solid #ef0000;
    border-radius: 5px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

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

.semen-considerations-advice-button:hover {
    background-color: #d80000;
    border-color: #d80000;

    transform: translateY(-2px);
}

.semen-considerations-advice-button svg {
    width: 20px;
    height: 20px;
}


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

@media (max-width: 1380px) {
    .semen-considerations-grid {
        gap: 14px;
    }

    .semen-consideration-card {
        min-height: 335px;
        padding:
            28px 19px;
    }

    .semen-consideration-icon {
        width: 82px;
        height: 82px;
    }

    .semen-consideration-card-title {
        margin-top: 21px;

        font-size: 18px;
    }

    .semen-consideration-card-description {
        font-size: 12px;
    }
}


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

@media (max-width: 1120px) {
    .semen-considerations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .semen-consideration-card:last-child {
        grid-column: 1 / -1;

        max-width: calc(50% - 9px);
    }

    .semen-consideration-card {
        min-height: 315px;
        padding:
            30px 25px;
    }

    .semen-consideration-icon {
        width: 92px;
        height: 92px;
    }

    .semen-consideration-card-title {
        font-size: 21px;
    }

    .semen-consideration-card-description {
        font-size: 13px;
    }
}


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

@media (max-width: 800px) {
    .semen-considerations-section {
        padding:
            68px 0 82px;
    }

    .semen-considerations-header {
        margin-bottom: 32px;
    }

    .semen-considerations-title {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .semen-consideration-card {
        min-height: 290px;
    }

    .semen-considerations-advice {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .semen-considerations-advice-button {
        grid-column: 1 / -1;
        justify-content: center;

        width: 100%;
    }
}


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

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

    .semen-considerations-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .semen-considerations-description {
        margin-top: 15px;

        font-size: 14px;
    }

    .semen-considerations-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .semen-consideration-card,
    .semen-consideration-card:last-child {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        gap:
            2px 18px;

        max-width: none;
        min-height: 160px;
        padding:
            22px 20px;
    }

    .semen-consideration-number {
        top: 15px;
        right: 16px;

        font-size: 28px;
    }

    .semen-consideration-icon {
        grid-row: 1 / 3;

        width: 82px;
        height: 82px;
    }

    .semen-consideration-card-title {
        align-self: end;

        margin: 0;

        font-size: 18px;
    }

    .semen-consideration-card-description {
        align-self: start;

        margin: 7px 0 0;

        font-size: 12px;
    }

    .semen-considerations-advice {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 17px;

        padding:
            23px 20px;
    }

    .semen-considerations-advice-button {
        width: 100%;
    }
}


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

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

    .semen-consideration-card,
    .semen-consideration-card:last-child {
        grid-template-columns: 72px minmax(0, 1fr);
        gap:
            2px 14px;

        padding-inline: 16px;
    }

    .semen-consideration-icon {
        width: 68px;
        height: 68px;
    }

    .semen-consideration-card-title {
        font-size: 16px;
    }
}