.region-hub-page{
  background:#f5f7fb;
}

/* =========================================================
   REGION HUB - BOTTOM INTERNAL LINKS
========================================================= */

.region-hub-page .locations-bottom{
  max-width:1100px;
  margin:56px auto 0;
  padding:28px 20px 0;
  border-top:1px solid rgba(15,23,42,.08);
}

.region-hub-page .locations-bottom__title{
  margin:0 0 10px;
  text-align:center;
  font-size:clamp(24px,3vw,30px);
  line-height:1.2;
  font-weight:800;
  color:#0f172a;
}

.region-hub-page .locations-bottom__intro{
  max-width:820px;
  margin:0 auto 28px;
  text-align:center;
  font-size:15px;
  line-height:1.75;
  color:#64748b;
}

.region-hub-page .locations-bottom__group{
  margin:0 0 22px;
}

.region-hub-page .locations-bottom__state{
  margin:0 0 14px;
  font-size:20px;
  line-height:1.3;
  font-weight:700;
  letter-spacing:-.2px;
}

.region-hub-page .locations-bottom__state a{
  color:#0f172a;
  text-decoration:none;
}

.region-hub-page .locations-bottom__state a:hover{
  color:#111827;
  text-decoration:underline;
}

.region-hub-page .locations-bottom__links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  list-style:none;
  margin:0 0 22px;
  padding:0;
}

.region-hub-page .locations-bottom__links li{
  margin:0;
  padding:0;
  list-style:none;
}

.region-hub-page .locations-bottom__links a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border:1px solid #dbe3ec;
  border-radius:999px;
  background:#fff;
  color:#334155;
  text-decoration:none;
  font-size:14px;
  line-height:1.2;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    color .2s ease,
    transform .2s ease;
}

.region-hub-page .locations-bottom__links a:hover{
  border-color:#ff7a18;
  background:#fff7f2;
  color:#0f172a;
  transform:translateY(-1px);
}

.region-hub-page .locations-bottom__more{
  margin:28px auto 0;
  max-width:760px;
  text-align:center;
  font-size:14px;
  line-height:1.7;
  color:#64748b;
}

.region-hub-page .locations-bottom__more a{
  color:#2563eb;
  text-decoration:none;
  border-bottom:1px solid rgba(37,99,235,.3);
}

.region-hub-page .locations-bottom__more a:hover{
  border-bottom-color:#2563eb;
}

.region-hub-page .locations-bottom__links:last-of-type{
  margin-bottom:0;
}

@media (max-width:767px){

  .region-hub-page .locations-bottom{
    margin:44px auto 0;
    padding:24px 14px 0;
  }

  .region-hub-page .locations-bottom__title{
    font-size:clamp(22px,6vw,26px);
  }

  .region-hub-page .locations-bottom__intro{
    font-size:14px;
    line-height:1.7;
    margin-bottom:22px;
  }

  .region-hub-page .locations-bottom__state{
    font-size:18px;
  }

  .region-hub-page .locations-bottom__links{
    gap:8px 10px;
  }

  .region-hub-page .locations-bottom__links a{
    font-size:13px;
    padding:8px 12px;
  }

}