/* Diptych band: two frames, full-bleed, sitting between the save half of the page
   (capture, organize) and the recall half (recall, connect, code). Left frame shows the
   thought being saved; right frame shows the answer arriving elsewhere. The grid, the 2px
   seam and the aspect ratio all come from the shared .frame-diptych component
   (docs/design/photo-language.md); this file only carries the section's own spacing. */
.diptych-band {
  margin-bottom: 120px;
}

@media (max-width: 700px) {
  .diptych-band {
    margin-bottom: 72px;
  }
}

/* Overview diagram at 390: the shared three-column layout (assets/experience.css) squeezes
   "Second Brain" into a narrow center box below 700px. Page-scoped override, stacked vertically
   with the icon beside its label instead of centered above it, so all three stay readable. Same
   specificity as the shared rule; wins on cascade order since this file loads after
   experience.css. */
@media (max-width: 700px) {
  .process-diagram {
    flex-direction: column;
    gap: 10px;
  }
  .process-diagram > svg {
    align-self: center;
    transform: rotate(90deg);
  }
  .process-node {
    display: grid;
    grid-template-columns: 23px 1fr;
    column-gap: 14px;
    align-items: center;
    text-align: left;
  }
  .process-node > .icon {
    grid-row: 1 / 3;
    margin: 0;
  }
  .process-node strong,
  .process-node span {
    grid-column: 2;
  }
}
