.side-brand-sub {
  color: #9fc0d2;
  font-size: 12px;
  letter-spacing: .12em;
}

.station-hero {
  min-height: 520px;
  background-image:
    linear-gradient(90deg, rgba(0, 7, 15, .96) 0%, rgba(0, 10, 22, .8) 34%, rgba(0, 7, 15, .14) 72%),
    url("img/aurora-prime-station-hero-v2.webp");
  background-position: center;
  background-size: cover;
}

.station-hero .hero-copy {
  align-self: end;
}

.architecture-bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.architecture-bands article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(35, 216, 255, .3);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(22, 232, 255, .07), transparent 48%),
    linear-gradient(180deg, rgba(5, 20, 38, .9), rgba(1, 8, 18, .98));
  box-shadow: 0 0 22px rgba(0, 220, 255, .07);
}

.architecture-bands article span {
  display: block;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  margin-bottom: 12px;
}

.architecture-bands article strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.05;
}

.architecture-bands article p {
  color: #d1e7f4;
  line-height: 1.48;
  margin: 11px 0 0;
}

.atlas-figure {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
  gap: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(35, 216, 255, .32);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(5, 20, 38, .9), rgba(1, 8, 18, .98));
}

.atlas-figure img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  background: #020914;
  border-right: 1px solid rgba(35, 216, 255, .22);
}

.atlas-figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px;
}

.atlas-figure figcaption strong {
  display: block;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.06;
  margin-top: 8px;
}

.atlas-figure figcaption p {
  color: #d2e8f5;
  line-height: 1.55;
  margin: 0;
}

.resilience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.resilience-grid article {
  padding: 22px;
  border: 1px solid rgba(112, 203, 255, .26);
  border-radius: 16px;
  background: rgba(2, 14, 27, .76);
}

.resilience-grid h3 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.06;
  margin: 9px 0 10px;
}

.resilience-grid p {
  color: #d3e8f5;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1100px) {
  .architecture-bands,
  .resilience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-figure {
    grid-template-columns: 1fr;
  }

  .atlas-figure img {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 216, 255, .22);
  }
}

@media (max-width: 720px) {
  .station-hero {
    min-height: 680px;
    background-position: 58% center;
  }

  .architecture-bands,
  .resilience-grid {
    grid-template-columns: 1fr;
  }

  .atlas-figure figcaption {
    padding: 22px 18px;
  }
}
