/* Location band + info cards — global tokens only. */

.location-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%) !important;
}
.location-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 14% 30%, rgba(30, 31, 140, 0.1) 0 1.5px, transparent 2px),
    radial-gradient(circle at 36% 18%, rgba(31, 174, 94, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 70%, rgba(30, 31, 140, 0.1) 0 1.5px, transparent 2px),
    radial-gradient(circle at 84% 42%, rgba(31, 174, 94, 0.1) 0 2px, transparent 3px),
    radial-gradient(circle at 22% 78%, rgba(30, 31, 140, 0.08) 0 1.5px, transparent 2px);
  pointer-events: none;
}

.location-band .shell {
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  color: inherit;
}
a.info-card {
  text-decoration: none;
}
.info-card::after {
  content: "";
  position: absolute;
  inset: -50% -20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(30, 31, 140, 0.14), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 31, 140, 0.18);
}
.info-card:hover::after {
  opacity: 1;
}
.info-card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(30, 31, 140, 0.06), rgba(31, 174, 94, 0.06));
  color: var(--brand-navy);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.info-card .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.info-card .val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 6px;
}
a.info-card .val:hover {
  color: var(--brand-navy);
}
.info-card .sub {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 767px) {
  .info-card {
    padding: 22px;
  }
  .location-band {
    padding: 48px 24px !important;
}
}
