/* PUBG UA — shared rhythm for internal pages.
   Keeps the existing content and components while matching the tighter homepage spacing. */

.internal-page .subhero {
  min-height: 540px;
  padding: 132px 24px 82px;
}

.internal-page .section-shell {
  padding-block: 52px;
}

.internal-page .section-heading {
  margin-bottom: 30px;
}

.internal-page .section-intro {
  margin-top: -10px;
  margin-bottom: 30px;
}

.internal-page .split-section {
  gap: 44px;
}

/* The same editorial three-step rail used on the homepage. */
.internal-page .steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.internal-page .step-card {
  min-height: 300px;
  padding: 40px 36px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.internal-page .step-card:last-child {
  border-right: 0;
}

.internal-page .step-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 34%;
  height: 2px;
  background: var(--amber);
}

.internal-page .step-card:nth-child(2)::before {
  background: #d8dfe2;
}

.internal-page .step-card:nth-child(3)::before {
  background: var(--blue);
}

.internal-page .step-number {
  display: block;
  margin-bottom: 34px;
  color: rgba(242, 245, 246, 0.13);
  font-size: clamp(4.2rem, 7vw, 7rem);
  line-height: 0.8;
}

.internal-page .step-number::after {
  display: none;
}

.internal-page .step-card h3 {
  font-size: 1.38rem;
}

.internal-page .step-card p {
  max-width: 36ch;
  color: #93a2ac;
}

.internal-page main > .section-shell:last-child {
  padding-top: 52px;
  padding-bottom: 80px;
}

.internal-page .cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 330px;
  padding: 54px 60px;
  overflow: hidden;
  border-color: var(--line-strong);
  background:
    linear-gradient(90deg, var(--amber), var(--blue)) top / 100% 2px no-repeat,
    radial-gradient(circle at 10% 50%, rgba(244, 166, 58, 0.13), transparent 34%),
    radial-gradient(circle at 88% 50%, rgba(25, 152, 223, 0.14), transparent 36%),
    linear-gradient(135deg, #0b1a23, #061017 72%);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.36), inset 0 1px rgba(244, 166, 58, 0.22);
  text-align: left;
}

.internal-page .cta-panel::before {
  opacity: 0.13;
  background-size: 72px 72px;
}

.internal-page .cta-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -116px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(25, 152, 223, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(25, 152, 223, 0.025), inset 0 0 0 88px rgba(244, 166, 58, 0.022);
  transform: translateY(-50%);
  pointer-events: none;
}

.internal-page .cta-panel h2 {
  grid-column: 1 / 7;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.4vw, 4rem);
  line-height: 0.97;
}

.internal-page .cta-panel p {
  grid-column: 1 / 7;
  width: auto;
  margin: 0;
  color: #bdc8cd;
}

.internal-page .cta-panel .button-row {
  grid-column: 8 / -1;
  grid-row: 1 / span 2;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .internal-page .cta-panel {
    display: block;
    min-height: 0;
    padding: 46px 42px;
  }

  .internal-page .cta-panel::after {
    right: -150px;
    width: 300px;
    height: 300px;
  }

  .internal-page .cta-panel p {
    margin-bottom: 28px;
  }

  .internal-page .cta-panel .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .internal-page .subhero {
    min-height: 500px;
    padding: 112px 18px 70px;
  }

  .internal-page .section-shell {
    padding-block: 40px;
  }

  .internal-page .section-heading {
    margin-bottom: 26px;
  }

  .internal-page .section-intro {
    margin-top: 0;
    margin-bottom: 28px;
  }

  .internal-page .split-section {
    gap: 32px;
  }

  .internal-page .steps-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .internal-page .step-card {
    min-height: 0;
    padding: 36px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .internal-page .step-number {
    margin-bottom: 26px;
    font-size: 4.4rem;
  }

  .internal-page main > .section-shell:last-child {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .internal-page .cta-panel {
    padding: 36px 20px;
  }
}
