@charset "UTF-8";
.atl-network {
  --network-dark: #07121f;
  --network-teal: #137777;
  --network-border: #dfe5e9;
  background: #fff;
  color: var(--color-text, #0f172a);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Split blocks should read as one continuous page section. */
}
.wp-block-post-content > .atl-network {
  margin-block-start: 0 !important;
}
.atl-network *,
.atl-network *::before,
.atl-network *::after {
  box-sizing: border-box;
}
.atl-network__container {
  width: min(100% - 3rem, 1232px);
  margin-inline: auto;
}
.atl-network__hero {
  min-height: 600px;
  height: 85vh;
  padding: 10px;
  background: #fff;
}
.atl-network {
  /* Match the React hero proportions and composition. */
}
.atl-network--hero .atl-page-hero--network {
  min-height: 0;
  height: 550px;
  margin: 10px;
}
.atl-network--hero .atl-page-hero--network .atl-page-hero__frame {
  min-height: 550px;
  background: #000;
}
.atl-network--hero .atl-page-hero__title {
  max-width: 56rem;
  margin: 0;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.atl-network--hero .atl-page-hero__subtitle {
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.atl-network--hero .atl-page-hero__img {
  opacity: 0.6;
  filter: brightness(0.75);
  transform: none;
}
.atl-network--hero .atl-page-hero__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.18) 100%);
}
.atl-network--hero .atl-page-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.atl-network__hero-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 4.5rem;
  border-radius: 24px;
  background: #000;
  isolation: isolate;
}
.atl-network__hero-image, .atl-network__hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.atl-network__hero-image {
  z-index: -2;
  object-fit: cover;
  opacity: 0.6;
  filter: brightness(0.75);
  transform: scale(1.001);
  will-change: transform;
}
.atl-network__hero-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 15%, rgba(0, 0, 0, 0.72) 100%);
}
.atl-network__hero-content {
  width: min(100%, 1200px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #fff;
}
.atl-network__hero-content h1 {
  margin: 0;
  font-family: "Roboto Flex", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.atl-network__hero-content p {
  max-width: 26rem;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
}
.atl-network__features {
  padding: 5rem 0 3rem;
}
.atl-network__intro {
  max-width: 48rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .atl-network__intro {
    margin-bottom: 6rem;
  }
}
.atl-network__intro h2 {
  margin: 0;
  color: #0f172a;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.atl-network__intro-text {
  margin-top: 1rem;
  color: #475569;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
}
.atl-network__intro-text strong {
  color: #0f172a;
  font-weight: 700;
}
.atl-network__group + .atl-network__group {
  margin-top: 3rem;
}
.atl-network__group-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.atl-network__group-heading h3 {
  flex: 0 0 auto;
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.atl-network__group-heading span {
  height: 1px;
  flex: 1;
  background: #dfe5e9;
}
.atl-network__accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.atl-network__item {
  position: relative;
  overflow: hidden;
  border: 1px solid #1f2937;
  border-radius: 24px;
  background: var(--network-dark);
  color: #e5e7eb;
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}
.atl-network__item.is-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--network-teal);
  color: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}
.atl-network__item:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}
.atl-network__item-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  transition: opacity 0.45s ease;
}
.atl-network__item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.15);
}
.atl-network__item-bg span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(76, 29, 149, 0.3), rgba(23, 37, 84, 0.22), rgba(10, 10, 10, 0.25));
}
.is-active .atl-network__item-bg {
  opacity: 0;
}
.atl-network__item-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}
.atl-network__item-copy {
  min-width: 0;
  flex: 1;
}
.atl-network__item-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.atl-network__item-number {
  color: rgba(255, 255, 255, 0.55);
  font-family: monospace;
  font-size: 0.75rem;
}
.atl-network__item h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.atl-network__badge {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.atl-network__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}
.is-active .atl-network__details {
  max-height: 1600px;
  opacity: 1;
}
.atl-network__subtitle, .atl-network__description {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.65;
}
.atl-network__subtitle {
  margin: 1rem 0 0;
  font-weight: 500;
}
.atl-network__description {
  margin: 0.75rem 0 0;
  font-weight: 300;
}
.atl-network__description p {
  margin: 0;
}
.atl-network__benefits {
  display: grid;
  gap: 0.4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
}
.atl-network__benefits li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}
.atl-network__benefits li::before {
  content: "✓";
  flex: 0 0 auto;
  color: #b8f0e2;
  font-weight: 800;
}
.atl-network__layout-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.atl-network__layout-mobile img {
  display: block;
  width: 100%;
  height: 115px;
  max-height: 115px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  object-fit: contain;
}
.atl-network__item-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.atl-network__logo-box {
  display: none;
  width: min(400px, 100%);
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #fff;
}
.atl-network__logo-box img, .atl-network__mobile-logo img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  object-fit: contain;
}
.atl-network__logo-box .atl-network__layout {
  display: none;
  width: 100%;
  height: 105px;
  max-height: 105px;
  margin-top: 0.5rem;
  object-fit: contain;
}
.atl-network__mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 44px;
  padding: 0.35rem 0.55rem;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}
.atl-network__toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
}
.is-active .atl-network__toggle {
  transform: rotate(180deg);
}
.atl-network__toggle:hover {
  background: #fff;
  color: #0f172a;
}
.atl-network__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: #fff;
  color: var(--network-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}
.atl-network__cta:hover {
  transform: translateY(-2px);
  background: #f1f5f9;
  color: var(--network-teal);
}
.atl-network__cta-section {
  padding: 1rem 0 6rem;
}
.atl-network__cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem;
  border-radius: 24px;
  background: radial-gradient(ellipse at top right, #137777, #137777 45%, #07121f);
  color: #fff;
}
.atl-network__cta-card h2 {
  max-width: 46rem;
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.atl-network__cta-card p {
  max-width: 38rem;
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}
.atl-network__cta--light {
  align-self: flex-start;
  margin-top: 0;
}
.atl-network__cta--light {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
@media (min-width: 768px) {
  .atl-network__container {
    width: min(100% - 3rem, 1232px);
  }
  .atl-network__hero-frame {
    padding: 0 3rem 6rem;
  }
  .atl-network__hero-content {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
  }
  .atl-network__features {
    padding: 8rem 0 4rem;
  }
  .atl-network__cta-card {
    padding: 3rem;
  }
  .atl-network--hero .atl-page-hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    padding: 0 3rem 6rem !important;
  }
  .atl-network--hero .atl-page-hero__subtitle {
    flex: 0 0 26rem;
    margin: 0 0 1.5rem;
  }
  .atl-network__intro h2 {
    font-size: 3rem;
    line-height: 1.25;
  }
  .atl-network__group-heading h3 {
    font-size: 1.5rem;
  }
  .atl-network__cta-card h2 {
    font-size: 2.25rem;
    line-height: 1.25;
  }
  .atl-network__item h4 {
    font-size: 1.875rem;
    line-height: 1.25;
  }
  .atl-network__subtitle, .atl-network__description {
    font-size: 1rem;
    line-height: 1.625;
  }
  .atl-network__benefits {
    font-size: 0.875rem;
  }
  .atl-network__cta {
    font-size: 0.75rem;
  }
  .atl-network__cta-card p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .atl-network__cta-card {
    padding: 4rem;
  }
  .atl-network__item-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 2rem 2.5rem;
  }
  .atl-network__item-side {
    justify-content: flex-end;
  }
  .atl-network__logo-box {
    display: flex;
    height: 80px;
  }
  .atl-network__layout-mobile {
    display: none;
  }
  .atl-network__mobile-logo {
    display: none;
  }
  .is-active .atl-network__logo-box {
    min-height: 170px;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .is-active .atl-network__logo-box > img:first-child {
    flex: 0 0 auto;
    max-width: 180px;
    max-height: 48px;
  }
  .is-active .atl-network__logo-box .atl-network__layout {
    display: block;
  }
  .atl-network__hero {
    min-height: 550px;
    height: 550px;
  }
  .atl-network__hero-content h1 {
    font-size: 4.5rem;
  }
  .atl-network__intro h2 {
    font-size: 3rem;
    line-height: 1.25;
  }
  .atl-network__cta-card h2 {
    font-size: 2.25rem;
    line-height: 1.25;
  }
}
@media (max-width: 767px) {
  .atl-network--hero .atl-page-hero--network {
    height: 85vh;
    min-height: 600px;
  }
  .atl-network--hero .atl-page-hero--network .atl-page-hero__frame {
    min-height: 600px;
    height: 100%;
  }
  .atl-network--hero .atl-page-hero__title {
    font-size: 3rem;
    line-height: 0.95;
  }
}
@media (min-width: 1200px) {
  .atl-network__item-side {
    flex: 0 0 450px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .atl-network__hero-image, .atl-network__item, .atl-network__details, .atl-network__toggle {
    transition: none;
  }
}

.editor-styles-wrapper .atl-network__item-bg {
  opacity: 0.22;
}

.editor-styles-wrapper .atl-network__details {
  max-height: none;
  opacity: 1;
}

/* The page is assembled from independent ACF blocks. Keep their spacing
 * deliberate so the split does not add an accidental second section gap. */
.atl-network--intro .atl-network__features {
  padding-bottom: 2rem;
}

.atl-network--groups .atl-network__features {
  padding-top: 2rem;
}

.atl-nh-hero {
  padding: 10px;
}

.atl-nh-hero__frame {
  position: relative;
  box-sizing: border-box;
  height: max(85vh, 600px);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .atl-nh-hero__frame {
    height: max(75vh, 550px);
    padding-bottom: 6rem;
  }
}

.atl-nh-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: brightness(0.75);
}

.atl-nh-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .atl-nh-hero__inner {
    padding: 0 3rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
  }
}

.atl-nh-hero__title-col {
  max-width: 56rem;
}

.atl-nh-hero__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
}
@media (min-width: 768px) {
  .atl-nh-hero__title {
    font-size: 4.5rem;
  }
}

.atl-nh-hero__text-col {
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .atl-nh-hero__text-col {
    margin-bottom: 0;
  }
}

.atl-nh-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0;
}
