/* =====================================================
   LOCATION
===================================================== */

.location {
  background: var(--color-navy);
  padding: 0 0 36px;
}

.location-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.location-info {
  padding: 28px 24px 36px;
  text-align: center;
}

.location-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.location-heading svg {
  flex-shrink: 0;
}

.location-heading-text {
  font-size: 9px;
  color: var(--color-cream);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.location-venue {
  font-size: 13px;
  color: var(--color-cream);
  line-height: 1.9;
  font-weight: 300;
}

.location-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 20px;
  border: 1px solid rgba(239,232,214,0.3);
  color: var(--color-cream);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.location-map-btn:hover {
  background: rgba(239,232,214,0.08);
  border-color: rgba(239,232,214,0.55);
}

.location-map-wrap {
  width: 100%;
  height: 200px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 4px;
  border: 4px solid var(--color-cream);
}

.location-map-embed {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- Desktop ---- */
@media (min-width: 900px) {
  .location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0;
    min-height: 420px;
  }

  .location-photo {
    height: 100%;
    min-height: 420px;
    grid-column: 1;
    grid-row: 1;
  }

  .location-info {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 64px;
  }

  .location-venue {
    font-size: 15px;
    line-height: 2;
  }

  .location-map-btn {
    margin-top: 28px;
  }

  .location-map-wrap {
    height: 180px;
    margin-top: 32px;
  }
}
