/* ==========================================================================
   THE THREE GATES
   ========================================================================== */


/* ==========================================================================
   01. LAYOUT
   ========================================================================== */

.osf-gateways {

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 8rem 0;

}


/* ==========================================================================
   02. GATEWAY
   ========================================================================== */

.gateway {

    position: relative;

    overflow: hidden;

    border-radius: 12px;

    aspect-ratio: 3 / 4;

    cursor: pointer;

    background: #111;

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


/* ==========================================================================
   03. IMAGE
   ========================================================================== */

.gateway img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform .8s ease;

}


/* ==========================================================================
   04. OVERLAY
   ========================================================================== */

.gateway__overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            rgba(0,0,0,.35) 45%,
            rgba(0,0,0,.10)
        );

}


/* ==========================================================================
   05. CONTENT
   ========================================================================== */

.gateway__content {

    position: absolute;

    left: 2rem;
    right: 2rem;
    bottom: 2rem;

    z-index: 5;

}


.gateway__world {

    display: block;

    margin-bottom: .75rem;

    color: #c6a96b;

    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;

}


.gateway__title {

    margin: 0;

    color: #f5f2ec;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem,3vw,3rem);
    font-weight: 500;

    line-height: 1;

    text-transform: uppercase;

}


.gateway__description {

    margin-top: 1rem;

    color: rgba(255,255,255,.82);

    line-height: 1.6;

}


/* ==========================================================================
   06. STATES
   ========================================================================== */

.gateway:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

}


.gateway:hover img {

    transform:
        scale(1.08);

}


/* ==========================================================================
   07. THEMES
   ========================================================================== */

.gateway--iron {

    --gateway-color: #8b8b8b;

}

.gateway--oak {

    --gateway-color: #9b6d3d;

}

.gateway--dragon {

    --gateway-color: #8f2e2e;

}


/* ==========================================================================
   08. ANIMATIONS
   ========================================================================== */

/* Kommer senare */


/* ==========================================================================
   09. RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {

    .osf-gateways {

        grid-template-columns: 1fr;

        gap: 3rem;

        width: min(700px, 92%);

    }

}