/* 02 / PRINCIPLE: left/right signal routing as the section backdrop. */
.statement-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #050a12;
  background-image:
    linear-gradient(90deg, rgba(3, 8, 15, .96) 0%, rgba(3, 8, 15, .90) 33%, rgba(3, 8, 15, .52) 66%, rgba(3, 8, 15, .24) 100%),
    linear-gradient(0deg, rgba(3, 8, 15, .32), rgba(3, 8, 15, .12)),
    url('/assets/principle-earphone-routing.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.statement-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 0;
}

.statement-section .section-label {
  margin-bottom: 2rem;
}

.statement-section h2 {
  max-width: 48rem;
}

.statement-section h2 + p {
  max-width: 34rem;
}

/* Preserve the Japanese opening statement as one deliberate line. */
html[data-language="ja"] .statement-section .statement-lead {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .statement-section {
    background-image:
      linear-gradient(90deg, rgba(3, 8, 15, .94), rgba(3, 8, 15, .60)),
      linear-gradient(0deg, rgba(3, 8, 15, .50), rgba(3, 8, 15, .10)),
      url('/assets/principle-earphone-routing.webp');
    background-position: 63% center;
  }
}
