.pk-location-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.pk-location-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--blue-dim), transparent 60%);
  pointer-events: none;
}

.pk-location-section > .wrap.pk-location-heading {
  width: min(1200px, calc(100% - 64px)) !important;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 0 40px !important;
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 2.35fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: center;
}

.pk-location-kicker {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.pk-location-kicker::before {
  content: none;
}

.pk-location-details {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, .85fr) minmax(300px, 430px);
  gap: clamp(22px, 3vw, 46px);
  align-items: stretch;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.pk-location-detail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.pk-location-detail .pk-location-label {
  color: var(--muted-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.pk-location-detail .pk-location-value {
  display: block;
  margin: 0;
  color: rgba(244, 241, 232, .80);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.pk-location-detail .pk-location-access {
  display: block;
  margin-top: 2px;
  color: rgba(244, 241, 232, .62);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}

.pk-location-section .pk-location-nav-buttons {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px;
  align-content: center;
  margin: 0;
  padding: 0;
}

.pk-location-section .pk-location-nav-buttons a {
  display: inline-flex;
  width: 100%;
  min-width: 0 !important;
  min-height: 46px;
  box-sizing: border-box !important;
  align-items: center;
  justify-content: center !important;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 11px;
  background: rgba(255, 255, 255, .035);
  color: rgba(244, 241, 232, .86);
  font-family: "Manrope", sans-serif;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1 !important;
  text-align: center !important;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.pk-location-section .pk-location-nav-buttons a::after {
  content: none;
  display: none;
}

.pk-location-section .pk-location-nav-buttons a:first-child {
  border-color: rgba(245, 215, 110, .26);
  background: rgba(245, 215, 110, .09);
}

.pk-location-section .pk-location-nav-buttons a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #151208;
  transform: translateY(-1px);
}

.pk-location-map {
  position: relative;
  width: 100%;
  height: clamp(470px, 38vw, 600px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0;
  background: #0b0d10;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, .18);
}

.pk-location-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, .32), transparent 14%, transparent 82%, rgba(7, 8, 10, .24)),
    linear-gradient(90deg, rgba(7, 8, 10, .15), transparent 18%, transparent 82%, rgba(7, 8, 10, .15));
}

.pk-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  filter: grayscale(1) saturate(0) contrast(1.12) brightness(.78);
}

@media (max-width: 900px) {
  .pk-location-section {
    padding-top: 70px;
  }

  .pk-location-section > .wrap.pk-location-heading {
    width: min(100% - 42px, 720px) !important;
    max-width: 720px !important;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0 32px !important;
  }

  .pk-location-kicker {
    font-size: clamp(26px, 5vw, 34px);
  }

  .pk-location-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pk-location-section .pk-location-nav-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .pk-location-map {
    height: 390px;
  }
}

@media (max-width: 620px) {
  .pk-location-section {
    padding-top: 56px;
  }

  .pk-location-section > .wrap.pk-location-heading {
    width: calc(100% - 42px) !important;
    gap: 24px;
    padding-bottom: 26px !important;
  }

  .pk-location-kicker {
    font-size: 27px;
  }

  .pk-location-details {
    gap: 20px;
    padding: 18px 0 0;
    border-bottom: 0;
  }

  .pk-location-detail .pk-location-value {
    font-size: 13px;
  }

  .pk-location-section .pk-location-nav-buttons {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .09);
  }

  .pk-location-section .pk-location-nav-buttons a {
    width: 100%;
    min-width: 0 !important;
    padding: 12px;
  }

  .pk-location-map {
    height: 320px;
  }
}
