.poster-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }
    .poster-wrapper img {
      max-width: 100%;
      height: auto;
      border-radius: 0.25rem;
      box-shadow: 0 8px 24px rgba(15,23,42,0.18);
    }
    .poster-caption {
      font-size: 0.85rem;
      color: #4b5563;
      text-align: center;
    }
    @media print {
      body {
        padding: 0.7cm;
      }
      header {
        border: none;
        margin-bottom: 0.2cm;
        padding-bottom: 0;
      }
      .poster-caption {
        font-size: 0.75rem;
        color: #374151;
      }
      img {
        box-shadow: none;
      }
    }
