/* Section: Location (Home) */
.location-home {
  background: #fcfcfa;
  padding: 100px 0;
}

.location-home__container {
  padding: 0 130px;
}
@media (max-width: 1450px) {
  .location-home__container {
    padding: 0 90px;
  }
}
@media (max-width: 1024px) {
  .location-home__container {
    padding: 0 60px;
  }
}
@media (max-width: 768px) {
  .location-home__container {
    padding: 0 40px;
  }
}
@media (max-width: 526px) {
  .location-home__container {
    padding: 0 14px;
  }
}

.location-home__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.location-home__content h2 {
  margin: 0 0 20px;
  max-width: 470px;
  color: #0f0f0f;
  font-family: var(--glm-secondary-font);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
}

.location-home__text {
  margin: 0 0 32px;
  color: #44474d;
  font-size: 16px;
  line-height: 1.7;
}

.location-home__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-home__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-home__pin {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

.location-home__item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.location-home__item-body strong {
  color: #ccaa68;
  font-size: 16px;
  font-weight: 700;
}

.location-home__item-body span {
  color: #44474d;
  font-size: 14px;
  line-height: 1.5;
}

.location-home__media {
  position: relative;
}

.location-home__media::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -6px;
  width: 100%;
  height: 100%;
  border: 1px solid #ccaa68;
  z-index: 0;
}

.location-home__video {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background-color: #0c4a34;
  background-size: cover;
  background-position: center;
}

.location-home__play {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.location-home__video:hover .location-home__play {
  transform: scale(1.08);
}

.location-home__footer {
  margin-top: 60px;
  text-align: center;
}

.location-home__description {
  margin: 0 auto 20px;
  max-width: 670px;
  color: #44474d;
  font-size: 16px;
  line-height: 1.6;
}

.location-home__cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 32px;
  text-align: center;
}
.location-home__cta {
  position: relative;
  background: #ccaa68;
  color: #fff;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.location-home__cta::after {
  content: "\276F";
  position: absolute;
  right: 18px;
  top: 48%;
  font-weight: 700;
  transform: translate(-15px, -50%);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.location-home__cta:hover {
  background-color: #b8934f;
  color: #ffffff;
  transform: scale(1.05);
}
.location-home__cta:hover::after {
  transform: translate(0, -50%);
  opacity: 1;
}

@media (max-width: 980px) {
  .location-home {
    padding: 70px 0;
  }

  .location-home__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-home__media {
    order: -1;
  }

  .location-home__content h2 {
    font-size: 36px;
  }

  .location-home__text {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .location-home {
    padding: 56px 0;
  }

  .location-home__content h2 {
    font-size: 28px;
  }

  .location-home__media::before {
    top: 4px;
    left: -4px;
  }

  .location-home__footer {
    margin-top: 40px;
  }
}
