/* Wave 1 destination hubs (loaded with airports.css) */

.apt-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apt-hub-card {
  display: block;
  background: var(--apt-white, #fff);
  border: 1px solid var(--apt-border, #e5e7eb);
  border-radius: var(--apt-radius-lg, 16px);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--apt-transition, 0.2s ease);
}
.apt-hub-card:hover {
  border-color: var(--apt-blue, #0229df);
  box-shadow: 0 12px 40px rgba(2,41,223,0.1);
  transform: translateY(-4px);
  color: inherit;
}
.apt-hub-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.apt-hub-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--apt-muted, #64748b);
  margin-bottom: 16px;
}
.apt-hub-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--apt-blue, #0229df);
}
.apt-hub-card--note {
  border-style: dashed;
}
.apt-hub-prose .prvc_itm,
.apt-hub-prose {
  max-width: 760px;
}
.apt-hub-prose h2 {
  margin: 32px 0 12px;
}
.apt-hub-prose p,
.apt-hub-prose li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--apt-text, #1e293b);
}
.apt-hub-prose ul {
  margin: 0 0 1.25rem 1.25rem;
}

@media (max-width: 1024px) {
  .apt-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .apt-hub-grid {
    grid-template-columns: 1fr;
  }
}

.safience-state-matrix-wrap {
  margin-top: 48px;
}
.safience-state-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.safience-state-matrix th,
.safience-state-matrix td {
  border-bottom: 1px solid var(--apt-border, #e5e7eb);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.safience-state-matrix th {
  cursor: pointer;
  font-weight: 700;
}
.safience-review-stamp {
  margin-top: 12px;
  font-size: 15px;
}
