:root {
  --ink: #244f49;
  --muted: #718783;
  --paper: #fffdf7;
  --cream: #fff8e8;
  --line: #dfd5b9;
  --green: #4fa17c;
  --green-dark: #28755b;
  --coral: #e27464;
  --yellow: #f4c75c;
  --blue: #73bdd0;
  --shadow: 0 18px 42px rgba(54, 72, 64, .14);
  color: var(--ink);
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scrollbar-gutter: stable; }
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 222, 137, .28), transparent 24%),
    radial-gradient(circle at 91% 18%, rgba(154, 220, 200, .25), transparent 25%),
    linear-gradient(135deg, #fff9e8, #f8fbef);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(77, 123, 98, .08) 1px, transparent 1.5px);
  background-size: 32px 32px;
  content: "";
}

button { color: inherit; font: inherit; }
button:not(:disabled) { cursor: pointer; }
button:focus-visible { outline: 4px solid rgba(63, 146, 171, .35); outline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 16px; font-size: clamp(42px, 5.4vw, 68px); letter-spacing: -.045em; line-height: 1.02; }
h2 { margin-bottom: 0; font-size: clamp(31px, 4vw, 44px); letter-spacing: -.035em; }

.app {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 0 54px;
}

.loading-card {
  width: min(420px, 100%);
  margin: 25vh auto 0;
  padding: 42px;
  border: 2px solid var(--line);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}
.loading-card span { font-size: 48px; }
.loading-card p { margin: 10px 0 0; font-weight: 800; }

.topbar, .topbar-actions, .brand, .hero-actions, .section-heading, .game-heading, .result-actions {
  display: flex;
  align-items: center;
}
.topbar { min-height: 58px; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.topbar-actions { gap: 10px; }
.brand { gap: 12px; padding: 0; border: 0; background: transparent; text-align: left; }
.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #d0e8db;
  border-radius: 19px;
  background: #f3f9e9;
  box-shadow: 0 6px 0 rgba(67, 107, 87, .11);
  font-size: 30px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 24px; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.sound-button, .back-button {
  min-height: 50px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 5px 0 rgba(84, 94, 75, .09);
  font-weight: 800;
}
.sound-button { display: flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 17px; }
.back-button { width: 50px; padding: 0; border-radius: 17px; font-size: 22px; }

.hero {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 22px;
  padding: clamp(34px, 5vw, 62px);
  border: 2px solid var(--line);
  border-radius: 42px;
  background: linear-gradient(110deg, #fffdf7 0 58%, #e8f5e6 58%);
  box-shadow: var(--shadow);
}
.eyebrow { margin-bottom: 9px; color: #43826c; font-family: Georgia, serif; font-size: 13px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-copy { position: relative; z-index: 3; }
.hero-copy > p:not(.eyebrow) { max-width: 610px; margin-bottom: 25px; color: var(--muted); font-size: 18px; font-weight: 600; line-height: 1.55; }
.hero-actions { flex-wrap: wrap; gap: 12px; }
.primary-button, .secondary-button, .hint-button {
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.primary-button { color: #fff; border: 0; background: var(--green); box-shadow: 0 7px 0 var(--green-dark); }
.secondary-button, .hint-button { border: 2px solid var(--line); background: #fffdf7; box-shadow: 0 5px 0 rgba(132, 108, 61, .1); }
.primary-button:hover, .secondary-button:hover, .hint-button:hover { transform: translateY(-2px); }
.primary-button:active, .secondary-button:active, .hint-button:active { transform: translateY(2px); box-shadow: 0 3px 0 rgba(50, 80, 63, .18); }

.hero-picture { position: relative; min-height: 310px; }
.hero-story {
  position: absolute;
  inset: 6px 0;
  width: 100%;
  height: calc(100% - 12px);
  object-fit: cover;
  border: 8px solid white;
  border-radius: 32px;
  box-shadow: 0 18px 28px rgba(55, 75, 62, .18);
}

.routes-section { margin-top: 44px; }
.section-heading { justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.section-heading > p { max-width: 410px; margin: 0; color: var(--muted); font-weight: 700; text-align: right; }
.routes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.route-card {
  display: grid;
  min-height: 250px;
  grid-template-rows: auto 1fr auto;
  gap: 13px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: 31px;
  background: var(--paper);
  box-shadow: 0 10px 0 rgba(99, 96, 69, .13);
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.route-1 { background: #fff5df; }
.route-2 { background: #edf5e8; }
.route-3 { background: #eaf3f5; }
.route-card:hover { transform: translateY(-4px); box-shadow: 0 14px 0 rgba(99, 96, 69, .11); }
.route-icon { display: grid; width: 65px; height: 65px; place-items: center; border-radius: 21px; background: rgba(255, 255, 255, .76); font-size: 34px; }
.route-copy small, .route-copy strong, .route-copy span { display: block; }
.route-copy small { margin-bottom: 6px; color: #9b7044; font-family: Georgia, serif; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.route-copy strong { margin-bottom: 8px; font-size: 27px; }
.route-copy span { color: var(--muted); font-weight: 600; line-height: 1.45; }
.route-card em { align-self: end; color: var(--green-dark); font-style: normal; font-weight: 900; }
.how-card { display: flex; align-items: center; gap: 16px; margin-top: 22px; padding: 18px 22px; border: 2px dashed #d8c99f; border-radius: 24px; background: rgba(255, 250, 230, .74); }
.how-card > span { font-size: 32px; }
.how-card p { margin: 0; color: var(--muted); line-height: 1.45; }
.how-card strong { display: block; color: var(--ink); }

.game-shell { padding: clamp(22px, 4vw, 42px); border: 2px solid var(--line); border-radius: 40px; background: var(--paper); box-shadow: var(--shadow); }
.game-heading { justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.game-heading h1 { margin-bottom: 8px; font-size: clamp(38px, 5vw, 58px); }
.game-heading p:not(.eyebrow) { margin-bottom: 0; color: var(--muted); font-weight: 600; }
.progress-badge { flex: 0 0 auto; min-width: 102px; padding: 13px 16px; border: 2px solid #cfe1d3; border-radius: 20px; background: #f0f7ec; text-align: center; }
.progress-badge strong, .progress-badge span { display: block; }
.progress-badge strong { font-size: 27px; }
.progress-badge span { color: var(--muted); font-size: 12px; font-weight: 800; }
.workbench { display: grid; grid-template-columns: minmax(430px, 1.08fr) minmax(330px, .92fr); gap: 20px; align-items: stretch; }
.board-column, .tray-column { padding: clamp(17px, 2.5vw, 25px); border: 2px solid var(--line); border-radius: 31px; }
.board-column { background: #fff9ea; }
.tray-column { display: flex; min-width: 0; flex-direction: column; background: linear-gradient(145deg, #e8f4e5, #f3f8ed); }
.panel-label { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #668077; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.puzzle-board {
  position: relative;
  display: grid;
  width: min(100%, 535px);
  aspect-ratio: 1;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-template-rows: repeat(var(--rows), 1fr);
  gap: 7px;
  margin: 0 auto;
  padding: 10px;
  border: 3px solid #d8c28e;
  border-radius: 28px;
  background: #eadbb8;
  box-shadow: inset 0 7px 15px rgba(92, 68, 36, .12);
}
.puzzle-slot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 2px dashed rgba(74, 104, 91, .28);
  border-radius: 18px;
  background: #fffdf5;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.puzzle-board.count-16 { gap: 5px; }
.puzzle-board.count-16 .puzzle-slot { border-radius: 13px; }
.puzzle-board.count-25 { gap: 4px; }
.puzzle-board.count-25 .puzzle-slot { border-width: 1.5px; border-radius: 9px; }
.puzzle-board.count-16 .slot-number,
.puzzle-board.count-25 .slot-number,
.piece-tray.count-16 .piece-number,
.piece-tray.count-25 .piece-number {
  width: 26px;
  height: 26px;
  font-size: 12px;
}
.piece-face {
  background-image: var(--image), var(--scene);
  background-position: var(--x) var(--y), var(--x) var(--y);
  background-repeat: no-repeat;
  background-size: calc(var(--columns) * 100%) calc(var(--rows) * 100%);
}
.slot-guide, .placed-piece { position: absolute; inset: 0; border-radius: inherit; }
.slot-guide { opacity: .13; filter: grayscale(1); }
.slot-number, .piece-number {
  position: absolute;
  z-index: 3;
  display: grid;
  width: clamp(29px, 3vw, 39px);
  height: clamp(29px, 3vw, 39px);
  place-items: center;
  border: 2px solid rgba(53, 92, 78, .18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 3px 0 rgba(51, 83, 71, .12);
  font-size: 15px;
  font-weight: 900;
  pointer-events: none;
}
.slot-number { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.piece-number { right: 7px; bottom: 7px; }
.puzzle-slot.is-filled { border-style: solid; border-color: rgba(71, 153, 115, .42); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .44); }
.puzzle-slot.is-wrong { border-color: var(--coral); background: #fff1ed; box-shadow: 0 0 0 5px rgba(226, 116, 100, .16); }
.puzzle-slot.needs-turn { border-color: #d49a38; background: #fff6d9; box-shadow: 0 0 0 5px rgba(226, 165, 43, .2); }
.puzzle-slot.is-hinted { z-index: 2; border-color: #e2a52b; background: #fff5c9; box-shadow: 0 0 0 7px rgba(244, 199, 92, .34); }
.puzzle-board.is-complete { gap: 0; }
.puzzle-board.is-complete .puzzle-slot { border-color: transparent; border-radius: 0; box-shadow: none; }
.completed-picture, .print-picture {
  display: grid;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(var(--sky) 0 64%, var(--ground) 64% 100%);
}
.completed-picture {
  position: absolute;
  inset: 10px;
  z-index: 8;
  border-radius: 17px;
  animation: finished-picture 280ms ease-out both;
  pointer-events: none;
}
.completed-picture img, .print-picture img { width: 100%; height: 100%; object-fit: contain; }
@keyframes finished-picture {
  from { opacity: 0; }
  to { opacity: 1; }
}
.piece-tray { display: grid; min-height: 330px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-content: center; flex: 1; padding: 10px; border: 2px dashed rgba(70, 123, 91, .22); border-radius: 24px; background: rgba(255, 255, 255, .38); }
.piece-tray.count-9 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.piece-tray.count-16 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.piece-tray.count-25 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; }
.piece-card { display: grid; min-width: 0; align-content: start; gap: 5px; }
.piece-tray.count-16 .tray-piece { border-width: 3px; border-radius: 13px; }
.piece-tray.count-25 .tray-piece { border-width: 2px; border-radius: 9px; }
.tray-piece {
  position: relative;
  width: 100%;
  aspect-ratio: calc(var(--rows) / var(--columns));
  overflow: hidden;
  border: 4px solid white;
  border-radius: 18px;
  background-color: white;
  box-shadow: 0 7px 0 rgba(57, 102, 75, .13), 0 11px 17px rgba(51, 84, 65, .12);
  touch-action: none;
  transition: box-shadow 160ms ease, opacity 160ms ease;
}
.piece-art { position: absolute; inset: 0; border-radius: inherit; transform: rotate(var(--rotation, 0deg)); transition: transform 180ms ease; }
.tray-piece:hover, .tray-piece.is-selected { z-index: 2; box-shadow: 0 0 0 6px var(--yellow), 0 8px 0 rgba(57, 102, 75, .13); }
.tray-piece.is-dragging { opacity: .28; }
.rotate-piece {
  display: grid;
  width: 100%;
  min-height: 38px;
  place-items: center;
  padding: 0;
  border: 2px solid #c8d9cb;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 3px 0 rgba(57, 102, 75, .13);
  font-size: 23px;
  font-weight: 900;
}
.rotate-piece:hover, .rotate-piece:focus-visible, .rotate-piece.is-hinted { border-color: #e0aa38; background: #fff2bb; box-shadow: 0 0 0 4px rgba(244, 199, 92, .28); }
.rotate-piece.is-turning { background: #e8f6e4; }
.rotation-ready {
  display: grid;
  width: 100%;
  min-height: 38px;
  place-items: center;
  border: 2px solid #c6ddca;
  border-radius: 12px;
  color: #388060;
  background: #edf7e9;
  font-size: 20px;
  font-weight: 900;
}
.piece-tray.count-16 .rotate-piece { min-height: 35px; font-size: 20px; }
.piece-tray.count-25 .rotate-piece { min-height: 32px; border-radius: 9px; font-size: 18px; }
.piece-tray.count-16 .rotation-ready { min-height: 35px; font-size: 18px; }
.piece-tray.count-25 .rotation-ready { min-height: 32px; border-radius: 9px; font-size: 16px; }
.drag-ghost { position: fixed; z-index: 1000; width: 145px; max-height: 160px; pointer-events: none; opacity: .94; transform: translate(-50%, -50%) rotate(2deg); }
.feedback { display: flex; min-height: 80px; align-items: center; gap: 13px; margin: 16px 0 12px; padding: 13px 15px; border: 2px solid #d8e2d5; border-radius: 20px; background: rgba(255, 255, 255, .67); }
.feedback > span { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border-radius: 15px; background: white; font-size: 24px; }
.feedback p { margin: 0; color: var(--muted); line-height: 1.35; }
.feedback strong { display: block; color: var(--ink); }
.feedback[data-state="wrong"] { border-color: #e8aaa2; background: #fff2ef; }
.feedback[data-state="hint"] { border-color: #e6c66f; background: #fff8dc; }
.feedback[data-state="success"] { border-color: #a4d0b5; background: #edf8ec; }
.hint-button { width: 100%; }
.success-panel { display: grid; min-height: 100%; place-items: center; align-content: center; gap: 18px; padding: 28px; text-align: center; }
.success-panel > span { font-size: 70px; }
.success-panel strong { display: block; margin-bottom: 8px; font-size: 31px; }
.success-panel p { max-width: 360px; margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

.print-sheet { display: none; }
.print-sheet.is-preview {
  display: grid;
  width: min(780px, calc(100% - 32px));
  min-height: 920px;
  align-content: center;
  justify-items: center;
  gap: 32px;
  margin: 24px auto;
  padding: 48px;
  background: white;
}
.print-picture { width: min(100%, 680px); aspect-ratio: 1; border: 2px solid #d9ceb1; border-radius: 24px; }
.print-sheet h1 { margin: 0; color: var(--ink); font-family: Georgia, serif; font-size: 44px; text-align: center; }

.result-card { display: grid; min-height: 600px; place-items: center; align-content: center; padding: clamp(36px, 7vw, 76px); border: 2px solid var(--line); border-radius: 43px; background: linear-gradient(135deg, #fff9e8, #e8f5e4); box-shadow: var(--shadow); text-align: center; }
.result-icon { font-size: 80px; }
.result-card > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 18px; font-weight: 700; line-height: 1.5; }
.stars { margin: 11px 0 28px; color: #e2a82b; font-size: 56px; letter-spacing: 7px; }
.result-actions { flex-wrap: wrap; justify-content: center; gap: 12px; }

.album-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.album-card { overflow: hidden; padding: 14px; border: 2px solid var(--line); border-radius: 25px; background: #f5f1e6; box-shadow: 0 8px 0 rgba(87, 88, 66, .09); }
.album-picture { display: grid; aspect-ratio: 4 / 3; place-items: center; margin-bottom: 12px; overflow: hidden; border-radius: 18px; background: linear-gradient(var(--sky, #e8eee8) 0 64%, var(--ground, #c7d0b7) 64%); }
.album-picture img { width: 100%; height: 100%; object-fit: contain; }
.album-picture span { font-size: 45px; opacity: .7; }
.album-card small, .album-card strong { display: block; }
.album-card small { margin-bottom: 5px; color: var(--muted); }
.album-card strong { font-size: 20px; }
.album-card:not(.is-open) { filter: grayscale(.6); }

.qa-report, .qa-gallery { width: min(1680px, calc(100% - 32px)); margin: 25px auto 70px; }
.qa-report { max-width: 1000px; padding: 30px; border: 2px solid var(--line); border-radius: 32px; background: var(--paper); }
.qa-report ul { display: grid; gap: 8px; padding: 0; list-style: none; }
.qa-report li { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 10px; border-radius: 14px; background: #f1f7ec; }
.qa-report li.fail { background: #fff0ed; }
.qa-report li > span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: white; background: var(--green); }
.qa-report li.fail > span { background: var(--coral); }
.qa-report li small { color: var(--muted); }
.qa-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.qa-puzzle-card { padding: 17px; border: 2px solid var(--line); border-radius: 24px; background: var(--paper); }
.qa-puzzle-card h2 { margin-bottom: 12px; font-size: 23px; }
.qa-animal { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 18px; background: linear-gradient(var(--sky) 0 64%, var(--ground) 64%); }
.qa-animal img { width: 100%; height: 100%; object-fit: contain; }
.qa-animal > span { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(var(--columns), 1fr); grid-template-rows: repeat(var(--rows), 1fr); }
.qa-animal i { display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .8); color: rgba(35, 79, 73, .65); font-style: normal; font-weight: 900; }
.responsive-qa { overflow: hidden; padding: 24px 0; }
.responsive-qa iframe { display: block; max-width: none; border: 0; background: #fffdf7; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-picture { position: absolute; right: -50px; width: 430px; opacity: .2; }
  .hero-copy { max-width: 650px; }
  .routes-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 175px; grid-template-columns: auto 1fr; grid-template-rows: 1fr auto; }
  .route-icon { grid-row: 1 / 3; }
  .workbench { grid-template-columns: 1fr; }
  .puzzle-board { width: min(100%, 580px); }
  .piece-tray { min-height: 230px; }
  .album-grid, .qa-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .app { width: min(1120px, calc(100% - 18px)); padding-top: 10px; }
  .topbar { min-height: 49px; margin-bottom: 13px; }
  .brand-mark { width: 47px; height: 47px; border-radius: 15px; font-size: 24px; }
  .brand strong { font-size: 18px; }
  .brand small, .sound-button span:last-child { display: none; }
  .sound-button, .back-button { width: 46px; min-height: 46px; justify-content: center; padding: 0; }
  .hero { min-height: 470px; padding: 30px 20px; border-radius: 30px; }
  .hero h1 { font-size: clamp(39px, 12vw, 49px); }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions > button { width: 100%; }
  .hero-picture { right: -110px; bottom: -10px; width: 400px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .section-heading > p { text-align: left; }
  .route-card { padding: 19px; }
  .route-icon { width: 55px; height: 55px; font-size: 28px; }
  .route-copy strong { font-size: 23px; }
  .game-shell { padding: 18px 11px; border-radius: 28px; }
  .game-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .game-heading h1 { font-size: 39px; }
  .progress-badge { display: flex; align-items: baseline; gap: 5px; padding: 9px 13px; }
  .board-column, .tray-column { padding: 12px; border-radius: 24px; }
  .puzzle-board { gap: 4px; padding: 6px; border-radius: 20px; }
  .puzzle-board.is-complete { gap: 0; }
  .completed-picture { inset: 6px; border-radius: 13px; }
  .puzzle-slot { border-radius: 12px; }
  .piece-tray { min-height: 190px; gap: 9px; padding: 8px; }
  .tray-piece { border-width: 3px; border-radius: 12px; }
  .feedback { min-height: 72px; padding: 10px; }
  .feedback > span { width: 40px; height: 40px; }
  .success-actions, .success-actions > button { width: 100%; }
  .album-grid, .qa-gallery-grid { grid-template-columns: 1fr; }
  .result-card { min-height: 520px; padding: 35px 20px; border-radius: 30px; }
  .result-actions { width: 100%; }
  .result-actions > button { width: 100%; }
  .stars { font-size: 44px; }
  .qa-report li { grid-template-columns: 30px 1fr; }
  .qa-report li small { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@page { size: A4 portrait; margin: 14mm; }

@media print {
  html, body { min-height: 0; background: white !important; }
  body::before { display: none !important; }
  .app { width: 100%; margin: 0; padding: 0; }
  .app > :not(.print-sheet) { display: none !important; }
  .print-sheet {
    display: grid !important;
    min-height: 255mm;
    align-content: center;
    justify-items: center;
    gap: 12mm;
    color: #234f49;
    background: white;
  }
  .print-picture { width: 170mm; max-width: 100%; border: 1.2mm solid #d9ceb1; border-radius: 7mm; }
  .print-sheet h1 { font-size: 18mm; }
}
