/* pappschilder.de – druckbare Vorlagen
   Jede Vorlagenseite zeigt ein Schild im Format A4.
   Am Bildschirm mit Rahmen und Bedienleiste, im Druck randlos als volle Seite. */

.template-toolbar {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  gap: .8rem;
  align-items: center;
  flex-wrap: wrap;
}
.template-toolbar .format-chip { margin-left: auto; }

.template-sheet-wrap {
  display: flex;
  justify-content: center;
  padding: 0 1rem 2rem;
}

.template-sheet {
  background: #fff;
  box-shadow: 0 4px 16px rgba(35, 29, 18, .25);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #1a1610;
}
.sheet-landscape { max-width: 60rem; aspect-ratio: 297 / 210; }
.sheet-portrait { max-width: 44rem; aspect-ratio: 210 / 297; }

.template-sheet .frame {
  width: 88%;
  height: 86%;
  border: 6px solid #1a1610;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 4%;
}
.frame-none { border: 0; }

.t-title {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;
  margin: 0;
  text-transform: uppercase;
}
.t-sub {
  font-weight: 600;
  margin: 0;
  color: #4d442f;
}
.t-line {
  width: 40%;
  height: 5px;
  background: #1a1610;
}
.t-writein {
  width: 80%;
  border-bottom: 4px solid #1a1610;
  min-height: 2.5em;
}
.t-writein-label {
  font-size: .9em;
  color: #4d442f;
  font-weight: 600;
  margin: 0;
}

/* Größen relativ zur Blattbreite, damit Bildschirm und Druck übereinstimmen */
.t-xxl { font-size: clamp(2.4rem, 11vw, 7.5rem); }
.t-xl  { font-size: clamp(2rem, 8.5vw, 6rem); }
.t-lg  { font-size: clamp(1.4rem, 5vw, 3.2rem); }
.t-md  { font-size: clamp(1rem, 3vw, 1.9rem); }

.t-arrow { width: 46%; height: auto; }

.template-info {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

@media print {
  @page { size: A4 landscape; margin: 0; }
  body { background: #fff !important; }
  .site-header, .site-footer, .flute, .template-toolbar, .template-info,
  .breadcrumbs, .consent-banner, .consent-modal { display: none !important; }
  .template-sheet-wrap { padding: 0; }
  .template-sheet {
    box-shadow: none;
    width: 100vw;
    height: 100vh;
    max-width: none;
    aspect-ratio: auto;
  }
  .t-xxl { font-size: 9cm; }
  .t-xl  { font-size: 6.5cm; }
  .t-lg  { font-size: 3.4cm; }
  .t-md  { font-size: 1.6cm; }
}
