:root {
    --cream: #f1efe7;
}

/* ===============================
   FULL SECTION
=============================== */
.parallax-equip {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    color: var(--cream);
}

/* ===============================
   PARALLAX BACKGROUND
=============================== */
.parallax-equip-bg {
    position: absolute;
    inset: -35%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    z-index: 1;
}

.parallax-equip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    will-change: transform;
    z-index: 2;
}

/* ===============================
   CONTENT
=============================== */
.parallax-equip-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 24px;
}

/* ===============================
   HEADER
=============================== */
.equip-header {
    text-align: center;
    margin-bottom: 40px;
}

.equip-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.equip-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.equip-divider span {
    width: 60px;
    height: 1px;
    background: var(--cream);
}

.equip-subtitle {
    font-size: 15px;
    opacity: .9;
    color: var(--cream);
}

/* ===============================
   GRID 2 KOLOM
=============================== */
.equip-grid-2col {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ===============================
   CARD
=============================== */
.equip-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    /* LANDSCAPE CONSISTENT */
    background: #000;
}

.equip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TITLE */
.equip-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 18px;
    color: var(--cream);
}

/* ===============================
   VIEW ALL CARD
=============================== */
.equip-item-more {
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .15);
}

.equip-more-inner {
    text-align: center;
    padding: 40px 20px;
}

.equip-more-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
    opacity: .9;
    color: var(--cream);
}

.equip-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 22px;
    border-radius: 999px;

    background: var(--cream);
    color: #1c1c1c;

    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    transition: all .25s ease;
}

.equip-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

.equip-more-arrow {
    transition: transform .25s ease;
}

.equip-more-btn:hover .equip-more-arrow {
    transform: translateX(4px);
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 640px) {
    .equip-grid-2col {
        grid-template-columns: 1fr;
    }

    .equip-title {
        font-size: 26px;
    }
}