/* poster.css — minimal scaffolding the toolkit relies on.
 *
 * The toolkit only needs:
 *   - a wrapper that establishes a positioning context for the scaled poster
 *   - the poster itself to have known box-sizing
 *
 * Everything else (typography, colors, layout) lives in your project CSS.
 */

.poster-stage {
  /* Wraps the poster on the page. The toolkit sets this element's height
   * to accommodate the scaled-down poster on small screens. */
  position: relative;
  overflow: hidden;
}

.poster {
  /* The poster itself has its width/height set by the toolkit when
   * exportSize is configured. Box-sizing is set here so padding doesn't
   * blow out those dimensions. */
  box-sizing: border-box;
  position: relative;
}

.poster * { box-sizing: border-box; }

  .app
  {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
  }

  @media (max-width: 900px)
  {
    .app
    {
      grid-template-columns: 1fr;
    }
  }

  .controls
  {
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    padding: 24px;
    position: sticky;
    top: 24px;
  }

  .controls h1
  {
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
    color: #1f3a5f;
  }

  .field
  {
    margin-bottom: 16px;
  }

  .field label
  {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #1f3a5f;
    margin-bottom: 6px;
  }

  .field select
  {
    width: 100%;
    padding: 9px 11px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #cfcfcf;
    border-radius: 3px;
    color: #1f3a5f;
    background: #fff;
  }

  .btn
  {
    width: 100%;
    padding: 11px 14px;
    background: #1f3a5f;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .btn:hover
  {
    background: #a4232f;
  }

  .data-status
  {
    margin-top: 12px;
    font-size: 11px;
    color: #6b6b6b;
    line-height: 1.5;
  }

  .data-status .stale
  {
    color: #a4232f;
    font-weight: 700;
  }

  .poster
  {
    background: #1f3a5f;
    padding: 5rem 5rem;
    color: #fcfcfc;
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
  }

  .kicker
  {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1px;
  }

  .kicker-rule
  {
    width: 120px;
    min-height: 10px;
    background: hsl(45, 80.8%, 53.1%);
    margin-bottom: 36px;
  }

  .projection-rule
  {
    width: 350px;
    min-height: 5px;
    background: hsl(45, 80.8%, 53.1%);
    margin-top: 24px;
    margin-left: -5rem;
  }
  .headline
  {
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 52.5px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
    max-width: 900px;
  }

  .headline em
  {
    color: hsl(45, 80.8%, 53.1%);
    font-style: normal;
    font-weight: 700;
  }

  .headline-smaller
  {
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
  }

  .hero
  {
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    padding: 28px 0;
    margin-bottom: 28px;
  }

  .hero-label
  {
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a6184;
    margin-bottom: 8px;
  }

  .hero-num
  {
    font-family: "Roboto", "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 275px;
    line-height: 0.9;
    color: hsl(45, 80.8%, 53.1%);
    letter-spacing: -0.04em;
    font-variant-numeric: tabular-nums;
  }

  .footer
  {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #cfcfcf;
    font-size: 13px;
    color: #4a6184;
    line-height: 1.5;
  }

  .footer .stamp
  {
    font-size: 11px;
    color: #6b6b6b;
    margin-top: 6px;
  }