:root {
  --ink: #1f2328;
  --muted: #6a737d;
  --paper: #f6f8fa;
  --edge: #d8dee4;
  --brand: #2f7d4f;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.card {
  width: 720px;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(31, 35, 40, .08), 0 8px 24px rgba(31, 35, 40, .06);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand);
}

.lede {
  margin: 6px 0 4px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.coords {
  margin: 0 0 20px;
  font: 600 18px/1.4 ui-monospace, SFMono-Regular, "JetBrains Mono", Menlo, monospace;
  color: var(--muted);
}

.map {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--edge);
  background: #e8eef2;
}

.map__tiles {
  position: absolute;
  inset: 0;
}

.map__tiles img {
  position: absolute;
  width: 256px;
  height: 256px;
  user-select: none;
  -webkit-user-drag: none;
}

/* A teardrop pin anchored at the map's exact center. */
.map__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  margin: -28px 0 0 -12px;
  background: var(--brand);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(31, 35, 40, .35);
}

.map__pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #fff;
  border-radius: 50%;
}

.map__credit {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2px 6px;
  font-size: 11px;
  color: #3a3f45;
  background: rgba(255, 255, 255, .8);
  border-top-left-radius: 6px;
}

.map__credit a {
  color: inherit;
}
