
/* === Serving under map: tight spacing + mobile two columns + hover yellow === */
#serving-under-map{ text-align:center; padding:4px 8px 0; }
#serving-under-map h2{
  color:#fff; font-weight:800;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  text-decoration: underline; margin:4px 0 4px;
}
#serving-under-map .serving-links{ margin:0 auto 6px; max-width:980px; line-height:1.8; }
#serving-under-map .serving-links a{
  color:#fff; text-decoration:none; transition: color .15s ease;
}
#serving-under-map .serving-links a:hover{ color:#ffcc00; text-decoration:underline; cursor:pointer; }
@media (max-width:540px){
  #serving-under-map .serving-links{
    display:grid; grid-template-columns:1fr 1fr; gap:6px 12px;
    justify-items:center; line-height:1.6;
  }
}


/* Custom serving-links layout */
.serving-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
}
@media (max-width: 768px) {
  .serving-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}



/* --- Force two columns on mobile for city links --- */
@media (max-width: 820px) {
  #serving-under-map .serving-links,
  #serving-under-map .serving-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 12px !important;
    justify-items: center !important;
    align-items: start !important;
    line-height: 1.6 !important;
  }
  #serving-under-map .serving-links a,
  #serving-under-map .serving-grid a,
  #serving-under-map .serving-grid .city a {
    display: block !important;
    white-space: normal !important;
  }
}



/* === Serving cities layout === */
/* Desktop/tablet default: single column, centered, white text */
#serving-under-map .serving-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#serving-under-map .serving-links a {
  color: #fff;
  text-decoration: none;
}
#serving-under-map .serving-links a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

/* Mobile: two columns */
@media (max-width: 820px) {
  #serving-under-map .serving-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px 12px !important;
    justify-items: center !important;
  }
  #serving-under-map .serving-links a {
    display: block !important;
  }
}



/* === Desktop: cities in one horizontal row === */
@media (min-width: 821px) {
  #serving-under-map .serving-links,
  #serving-under-map .serving-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  #serving-under-map .serving-links a,
  #serving-under-map .serving-grid a {
    color: #fff;
    text-decoration: none;
  }
  #serving-under-map .serving-links a:hover,
  #serving-under-map .serving-grid a:hover {
    color: #ffcc00;
    text-decoration: underline;
  }
}

