/* Parent-album (GoBook) screens. Owned by the parent-UI agent; loaded after styles.css.
   The parent designer reuses the couples component classes (.control, .choice-group, .swatch-picker,
   .family-chips, .field, h3, .subhead, .hint); only the section-tab bar differs — three tabs, not four. */

/* Three-tab bar for the parent designer (I Cover · II Box · III Lettering & notes). */
.tabs.tabs-3 { grid-template-columns: repeat(3, 1fr); }

/* "Lettering & notes" is the longest tab label; keep it from crowding its numeral on mid widths. */
.tabs.tabs-3 [role=tab] { padding-left: 6px; padding-right: 6px; }

@media (max-width: 500px) {
  /* Let the longer parent tab labels wrap cleanly rather than overflow. */
  .tabs.tabs-3 [role=tab] { line-height: 1.15; text-align: center; font-size: 13px; }
}

/* Quiet, non-interactive "Studio favourites — coming soon" line, shown under the album switch while
   the favourites fast track is parked. No buttons, no cards — the album opens straight in the tabs. */
.fav-soon {
  margin: -12px 0 28px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .01em;
}
.fav-soon::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  opacity: .6;
}
