/* ===================================================================
   SPYR — Data Centre / Colocation page
   Loads after landing.css. Reuses the landing design system; only adds
   the bits unique to this page (intro, bandwidth line, connectivity).
   =================================================================== */

/* Intro */
.dc-intro {
  max-width: 760px;
  text-align: center;
}
.dc-intro h2 {
  margin-bottom: 0.75rem;
}
.dc-intro p {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Included-bandwidth line inside a rack card */
.dc-bw {
  display: inline-block;
  margin: 0.25rem auto 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blue-glow);
  color: var(--blue-hover);
  font-size: 0.82rem;
  font-weight: 600;
}

/* "Custom quote" where no fixed price is set */
.dc-quote {
  font-size: 1.35rem !important;
  color: var(--slate);
}

.dc-power-note {
  margin-top: 1.5rem;
}

/* Connectivity */
.dc-conn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.dc-conn__lead p {
  color: var(--gray);
  line-height: 1.7;
  margin-top: 1rem;
}

.dc-carrier-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.dc-carrier-stat__num {
  font-family: var(--mono);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
}
.dc-carrier-stat__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

/* Cross-connect fee list */
.dc-xc {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.dc-xc h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: var(--dark);
}
.dc-xc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dc-xc__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--offwhite);
  font-size: 0.92rem;
}
.dc-xc__list li:last-child {
  border-bottom: none;
}
.dc-xc__label {
  color: var(--slate);
}
.dc-xc__fee {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--blue-hover);
}

/* Mobile */
@media (max-width: 720px) {
  .dc-conn {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .dc-carrier-stat__num {
    font-size: 3rem;
  }
}
