

/* Start:/local/templates/geo/styles.css?177652411048*/
/* Site-wide overrides live here if needed. */


/* End */


/* Start:/local/templates/geo/template_styles.css?17765241118786*/
:root {
  --bg: #0f1115;
  --bg-soft: #151922;
  --panel: rgba(20, 24, 33, 0.92);
  --card: rgba(25, 30, 40, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #eef2f7;
  --muted: #a8b3c4;
  --accent: #f0b35b;
  --accent-2: #6fd6c8;
  --good: #5fd38f;
  --mid: #f2c14e;
  --far: #ff8a7a;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
  --max-width: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 179, 91, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(111, 214, 200, 0.15), transparent 28%),
    linear-gradient(180deg, #0b0d11 0%, #0f1115 36%, #11151c 100%);
  font-family: "Manrope", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
}
.hero {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(28, 33, 45, 0.96), rgba(16, 19, 27, 0.92)),
    linear-gradient(120deg, rgba(240, 179, 91, 0.18), rgba(111, 214, 200, 0.12));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(240, 179, 91, 0.12);
}
h1 {
  margin: 14px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.hero p { margin: 0; max-width: 84ch; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.stat {
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.stat span { color: var(--muted); font-size: 0.92rem; line-height: 1.4; }
.section {
  margin-top: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 0;
}
.section-title { margin: 0; font-size: 1.25rem; letter-spacing: -0.01em; }
.section-subtitle { margin: 8px 0 0; color: var(--muted); line-height: 1.55; max-width: 84ch; }
.filters, .map-switcher { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn, .map-switch-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.filter-btn:hover, .map-switch-btn:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.07); }
.filter-btn[aria-pressed="true"], .map-switch-btn[aria-pressed="true"] {
  background: rgba(240, 179, 91, 0.16);
  border-color: rgba(240, 179, 91, 0.42);
}
.map-wrap { padding: 18px 20px 20px; }
.map-frame {
  position: relative;
  height: min(72vh, 760px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #121822;
}
.map { position: absolute; inset: 0; }
.map-switcher { position: absolute; top: 14px; right: 14px; z-index: 1000; }
.map-credit {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce4ef;
  font-size: 0.85rem;
  backdrop-filter: blur(8px);
}
.legend { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  color: #d8e0ea;
}
.legend-dot { width: 14px; height: 14px; border-radius: 999px; flex: 0 0 auto; }
.legend-dot.good { background: var(--good); }
.legend-dot.mid { background: var(--mid); }
.legend-dot.far { background: var(--far); }
.cards-shell { padding: 18px 20px 20px; }
.cards-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); overflow: hidden; }
.card__btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
}
.card__title { margin: 0; font-size: 1.18rem; letter-spacing: -0.01em; }
.card__meta, .source-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.badge, .source-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.05);
  color: #dce4ef;
  font-size: 0.86rem;
  line-height: 1.2;
}
.badge.good { background: rgba(95, 211, 143, 0.14); border-color: rgba(95, 211, 143, 0.32); }
.badge.mid { background: rgba(242, 193, 78, 0.14); border-color: rgba(242, 193, 78, 0.32); }
.badge.far { background: rgba(255, 138, 122, 0.14); border-color: rgba(255, 138, 122, 0.32); }
.badge.teal { background: rgba(111, 214, 200, 0.14); border-color: rgba(111, 214, 200, 0.32); }
.card__arrow { color: var(--accent); font-size: 1.45rem; line-height: 1; padding-top: 2px; }
.card__body { border-top: 1px solid var(--line); padding: 0 18px 18px; }
.card__text { margin: 12px 0 0; color: var(--muted); line-height: 1.66; }
.detail-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 12px; }
.fact-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
}
.fact-box h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dce4ef;
}
.fact-box ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.5; }
.mini-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.image-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,0.03); }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card figcaption { padding: 10px 12px 12px; color: var(--muted); font-size: 0.85rem; line-height: 1.45; }
.mineral-popup .leaflet-popup-content-wrapper, .mineral-popup .leaflet-popup-tip { background: rgba(16, 19, 26, 0.96); color: var(--text); }
.popup-title { margin: 0 0 8px; font-size: 1.1rem; }
.popup-text { margin: 0 0 10px; color: var(--muted); line-height: 1.55; }
.popup-list { margin: 0 0 10px; padding-left: 18px; color: var(--muted); }
.popup-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.popup-link { display: inline-flex; margin-top: 10px; color: var(--accent); font-weight: 700; }
.marker-pin {
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}
.marker-pin span { transform: rotate(45deg); color: #fff; font-weight: 800; font-size: 0.86rem; }
.marker-pin.near_high_probability { background: var(--good); }
.marker-pin.medium_lower_probability { background: var(--mid); }
.marker-pin.far { background: var(--far); }
.marker-pin.excluded { background: #77808f; }
.marker-center {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(111, 214, 200, 0.14);
}
.excluded-shell { padding: 0 20px 20px; }
.excluded-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .stats, .cards-grid, .excluded-grid, .detail-grid, .mini-grid, .popup-gallery { grid-template-columns: 1fr; }
  .hero { padding: 20px; }
  .section-head { padding-left: 16px; padding-right: 16px; }
  .map-wrap, .cards-shell, .excluded-shell { padding-left: 16px; padding-right: 16px; }
}


/* End */
/* /local/templates/geo/styles.css?177652411048 */
/* /local/templates/geo/template_styles.css?17765241118786 */
