/* =========================================================
   LOCATION BOX
========================================================= */

.location-box {

    padding: 0 32px 55px;

    background: #f5f5f7;

}

/* =========================================================
   GRID
========================================================= */

.location-box__grid {

    display: grid;

    grid-template-columns: 1.45fr 0.82fr;

    gap: 14px;

    align-items: stretch;

}

/* =========================================================
   MAP
========================================================= */

.location-box__map {

    position: relative;

    overflow: hidden;

    min-height: 190px;

    border-radius: 16px;

    border: 1px solid #ececf1;

    background: #ffffff;

}

.location-box__map iframe {

    width: 100%;
    height: 100%;

    border: none;

    display: block;

    filter:
        grayscale(100%)
        brightness(1.02)
        contrast(0.95);

}

/* =========================================================
   CONTENT
========================================================= */

.location-box__content {

    border-radius: 16px;

    padding: 28px;

    background:
        linear-gradient(
            135deg,
            #03143f 0%,
            #07194b 55%,
            #0d2a78 100%
        );

    display: flex;

    flex-direction: column;

    justify-content: center;

}

/* =========================================================
   TITLE
========================================================= */

.location-box__title {

    font-size: 20px;

    font-weight: 800;

    line-height: 1.2;

    color: var(--color-white);

    margin-bottom: 14px;

}

/* =========================================================
   TEXT
========================================================= */

.location-box__text {

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);

    margin-bottom: 22px;

    max-width: 280px;

}

/* =========================================================
   BUTTON
========================================================= */

.location-box__btn {

    width: fit-content;

    height: 44px;

    padding: 0 18px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.16);

    background: rgba(255,255,255,0.04);

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--color-white);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition-fast);

}

.location-box__btn svg {

    width: 15px;
    height: 15px;

    stroke-width: 2.4;

}

.location-box__btn:hover {

    background: rgba(255,255,255,0.08);

    transform: translateY(-2px);

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {

    .location-box__grid {

        grid-template-columns: 1fr;

    }

}

@media (max-width: 768px) {

    .location-box {

        padding: 0 18px 45px;

    }

    .location-box__map {

        min-height: 220px;

    }

    .location-box__content {

        padding: 24px;

    }

    .location-box__title {

        font-size: 18px;

    }

    .location-box__text {

        font-size: 13px;

    }

    .location-box__btn {

        width: 100%;

    }

}