
/* ─────────────────────────────────────────────────────────────────────────
   Footer locations styles.
   Recommended: move these rules into your main stylesheet and remove this
   <style> block to avoid duplicate parsing on every page load.
   ───────────────────────────────────────────────────────────────────────── */

.footer-locations {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  padding: 36px 0 32px;
}

@media (max-width: 767px) {
  .footer-locations {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── column heading ── */
.footer-locations-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-locations-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-locations-title a:hover {
  color: #f7931a;
}

/* ── location count pill ── */
.footer-locations-badge {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #f7931a;
  background: rgba(247, 147, 26, 0.12);
  border: 1px solid rgba(247, 147, 26, 0.25);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ── link grid ── */
.footer-locations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 4;
  column-gap: 8px;
}

/* VPS col — 8 items, single column */
.footer-locations-col--vps .footer-locations-list {
  columns: 1;
}

@media (max-width: 991px) {
  .footer-locations-list { columns: 3; }
}

@media (max-width: 575px) {
  .footer-locations-list { columns: 2; }
  .footer-locations-col--vps .footer-locations-list { columns: 2; }
}

.footer-locations-list li {
  break-inside: avoid;
  padding: 3px 0;
}

.footer-locations-list a {
  font-size: 12px;
  color: #7a7a90;
  text-decoration: none;
  transition: color 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.footer-locations-list a::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.footer-locations-list a:hover {
  color: #f7931a;
}

.footer-locations-list a:hover::before {
  opacity: 1;
}
