/**
 * World Speed Test — ISP coverage map hub pages
 */
.wst-map-main {
  padding-bottom: 3rem;
}

.wst-map-breadcrumb {
  font-size: 0.85rem;
  color: var(--wst-body, #374151);
  margin: 1rem 0 0.5rem;
}

.wst-map-breadcrumb a {
  color: var(--wst-accent, #2563eb);
  text-decoration: none;
}

.wst-map-breadcrumb a:hover {
  text-decoration: underline;
}

.wst-map-hero {
  margin: 0.5rem 0 2rem;
  max-width: 48rem;
}

.wst-map-hero .hero-title {
  color: var(--wst-heading, #0f172a);
  margin-bottom: 1rem;
}

.wst-map-hero__p {
  color: var(--wst-body, #374151);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 0.85rem;
}

.wst-map-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1rem;
}

.wst-map-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.wst-map-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.12);
}

.wst-map-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wst-map-card__logo {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--map-brand, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.wst-map-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wst-heading, #0f172a);
  margin: 0;
}

.wst-map-card__dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.75rem;
  margin: 0;
  font-size: 0.9rem;
}

.wst-map-card__dl dt {
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.wst-map-card__dl dd {
  margin: 0;
  color: var(--wst-body, #374151);
  font-weight: 600;
}

.wst-map-card__cities {
  font-size: 0.88rem;
  color: var(--wst-body, #374151);
  margin: 0;
  line-height: 1.5;
}

.wst-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.wst-map-btn--primary {
  background: var(--wst-accent, #2563eb);
  color: #fff;
  border: 1px solid var(--wst-accent, #2563eb);
}

.wst-map-btn--primary:hover {
  background: #1d4ed8;
  color: #fff;
}

.wst-map-btn--ghost {
  background: #fff;
  color: var(--wst-accent, #2563eb);
  border: 1px solid #dbeafe;
}

.wst-map-btn--ghost:hover {
  background: #eff6ff;
}

.wst-map-table-wrap {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.wst-map-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 36rem;
}

.wst-map-table th,
.wst-map-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.wst-map-table thead th {
  background: #f8fafc;
  color: var(--wst-heading, #0f172a);
  font-weight: 600;
  white-space: nowrap;
}

.wst-map-table tbody tr:hover {
  background: #f8fafc;
}

.wst-map-table a {
  color: var(--wst-accent, #2563eb);
  text-decoration: none;
  font-weight: 500;
}

.wst-map-table a:hover {
  text-decoration: underline;
}

.wst-map-rating {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.wst-map-rating--excellent {
  background: #dbeafe;
  color: #1d4ed8;
}

.wst-map-rating--good {
  background: #e0e7ff;
  color: #4338ca;
}

.wst-map-rating--fair {
  background: #f3f4f6;
  color: #4b5563;
}

.wst-map-seo-section {
  margin-bottom: 1.5rem;
}

.wst-map-seo-section h2 {
  font-size: 1.15rem;
  color: var(--wst-heading, #0f172a);
  margin: 0 0 0.5rem;
}

.wst-map-seo-section p {
  color: var(--wst-body, #374151);
  line-height: 1.65;
  margin: 0 0 0.65rem;
  max-width: 44rem;
}

.wst-map-faq-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.wst-map-faq-block:last-child {
  border-bottom: none;
}

.wst-map-faq-block__h {
  font-size: 1.05rem;
  color: var(--wst-heading, #0f172a);
  margin: 0 0 0.45rem;
}

.wst-map-faq-block p {
  color: var(--wst-body, #374151);
  line-height: 1.65;
  margin: 0 0 0.5rem;
  max-width: 44rem;
}

.wst-map-footer-nav .wst-map-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.wst-map-footer-nav .wst-map-related-list a {
  color: var(--wst-accent, #2563eb);
  text-decoration: none;
  font-weight: 500;
}

.wst-map-footer-nav .wst-map-related-list a:hover {
  text-decoration: underline;
}

.isp-map-hub-page .section-head {
  color: var(--wst-heading, #0f172a);
}
