﻿.location-hub {
  color: #000;
  background: #fff;
}

.location-hub * {
  box-sizing: border-box;
}

.location-hub__section {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.location-hub__section:first-child {
  border-top: 0;
}

.location-hub__container {
  width: min(1240px, 100% - 2rem);
  margin-inline: auto;
}

.location-hub__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #000;
  margin-bottom: 0.75rem;
}

.location-hub__hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  max-width: 18ch;
}

.location-hub__hero p,
.location-hub__text {
  margin: 0;
  max-width: 70ch;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.82);
}

.location-hub__title {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.location-hub__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.location-card {
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 1.25rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.location-card:hover {
  border-color: #000;
  transform: translateY(-2px);
}

.location-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.location-card p {
  margin: 0 0 0.9rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.76);
}

.location-card a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 0.15rem;
}

.location-hub__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.location-hub__points {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.location-hub__points li {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

.location-hub__points li:first-child {
  border-top: 0;
}

.location-hub__cta {
  background: #000;
  color: #fff;
  border-top: 0;
}

.location-hub__cta h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.location-hub__cta p {
  margin: 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.location-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.location-hub__btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
}

.location-hub__btn--primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (min-width: 780px) {
  .location-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-hub__split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1100px) {
  .location-hub__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
