:root {
  --ink: #1f1a16;
  --paper: #f3e6d2;
  --paper-deep: #e8d5bb;
  --gold: #d6a350;
  --warm: #b83f1f;
  --red: #c34225;
  --brown: #4a2e17;
  --muted: #846f56;
  --shadow: 0 18px 34px rgba(43, 31, 20, .24);
  --card-shadow: 0 16px 24px rgba(67, 48, 29, .26);
  --serif: "Noto Serif SC", "Source Han Serif SC", "SimSun", serif;
  --display: "STXingkai", "KaiTi", "SimSun", serif;
  --sans: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #100d0b;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(157, 62, 24, .22), transparent 34rem),
    #16120f;
}

button,
input,
a {
  font: inherit;
}

button {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button:disabled {
  cursor: not-allowed;
  opacity: .56;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

img {
  max-width: 100%;
}

.print-page {
  width: min(100%, 853px);
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background: #0f0d0c;
  box-shadow: 0 0 70px rgba(0, 0, 0, .48);
}

.print-hero {
  position: relative;
  min-height: 905px;
  padding: 74px 54px 0;
  color: #fff1df;
  background: linear-gradient(180deg, rgba(0, 0, 0, .98) 0%, rgba(13, 9, 7, .96) 31%, rgba(18, 11, 8, .36) 58%, rgba(0, 0, 0, .74) 100%);
  isolation: isolate;
}

.print-hero::before {
  position: absolute;
  inset: 305px 0 0;
  z-index: -2;
  content: "";
  background: url("/assets/printmaking-assets/museum-scene.png") center top / cover no-repeat;
}

.print-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .74) 0, rgba(0, 0, 0, .24) 36%, rgba(0, 0, 0, .06) 66%, rgba(0, 0, 0, .44) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .52), transparent 18%, transparent 82%, rgba(0, 0, 0, .52));
}

.print-title {
  color: #fff1e1;
  font-family: var(--display);
  font-size: clamp(50px, 10.2vw, 94px);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 5px 12px rgba(0, 0, 0, .58);
}

.print-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px auto 28px;
  color: #ead09b;
  font-size: clamp(18px, 3.4vw, 31px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
  white-space: nowrap;
}

.print-subtitle::before,
.print-subtitle::after {
  width: 92px;
  height: 12px;
  content: "";
  background: linear-gradient(90deg, transparent, #b23d22 34%, #d29243 50%, #b23d22 66%, transparent);
  opacity: .9;
}

.print-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 630px;
  margin: 0 auto;
}

.print-stat {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(222, 177, 107, .36);
  border-radius: 999px;
  padding: 7px 14px;
  color: #fff3df;
  background: rgba(42, 31, 20, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 6px 20px rgba(0, 0, 0, .24);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.print-stat:hover,
.print-stat:focus-visible,
.print-stat.is-active {
  outline: 0;
  transform: translateY(-2px);
  border-color: rgba(241, 186, 92, .82);
  background: rgba(68, 45, 22, .86);
}

.print-stat img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 auto;
}

.print-stat span {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.print-stat b {
  color: #f15e39;
}

.print-hero-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  width: min(308px, calc(100% - 96px));
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 2px solid rgba(255, 181, 122, .82);
  border-radius: 999px;
  color: #fff4e9;
  background: linear-gradient(180deg, #dc6440 0%, #a92e18 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .26);
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  transform: translateX(-50%);
  transition: transform .16s ease, filter .16s ease;
}

.print-hero-cta:hover,
.print-hero-cta:focus-visible {
  outline: 0;
  filter: brightness(1.08);
  transform: translateX(-50%) translateY(-2px);
}

.print-hero-cta img {
  width: 22px;
  height: 30px;
  object-fit: contain;
}

.print-category-panel,
.print-gallery {
  position: relative;
  padding: 42px 60px 44px;
  background:
    radial-gradient(circle at 28% 10%, rgba(255, 255, 255, .88), transparent 18rem),
    radial-gradient(circle at 80% 35%, rgba(121, 85, 43, .08), transparent 15rem),
    repeating-linear-gradient(92deg, rgba(92, 66, 40, .025) 0 1px, transparent 1px 9px),
    linear-gradient(110deg, rgba(120, 91, 58, .12), transparent 32%),
    var(--paper);
}

.print-category-panel {
  padding-bottom: 24px;
}

.print-category-panel::before,
.print-gallery::before {
  display: none;
}

.print-gallery-inner,
.print-category-panel > * {
  position: relative;
  z-index: 1;
}

.print-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.print-section-title.compact {
  margin-bottom: 18px;
}

.print-section-title img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

.print-section-title h2 {
  color: var(--ink);
  font-size: clamp(36px, 7vw, 58px);
  line-height: 1.05;
}

.print-section-title p {
  margin-top: 8px;
  color: #806d54;
  font-size: clamp(17px, 3vw, 25px);
  font-weight: 700;
}

.print-category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.print-category-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(71, 45, 25, .3);
  border-radius: 10px;
  padding: 0;
  color: #fff7e8;
  background: #2d1b12;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  text-align: left;
}

.print-category-card.is-active {
  outline: 3px solid rgba(195, 66, 37, .8);
}

.print-category-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.print-category-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, .72) 100%);
}

.print-category-icon {
  position: absolute;
  left: 12px;
  bottom: 48px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: rgba(20, 13, 9, .78);
}

.print-category-icon img {
  width: 26px;
  height: 26px;
}

.print-category-card strong,
.print-category-card em {
  position: absolute;
  left: 64px;
  right: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.print-category-card strong {
  bottom: 50px;
  font-size: 20px;
}

.print-category-card em {
  bottom: 25px;
  color: rgba(255, 241, 220, .82);
  font-size: 15px;
  font-style: normal;
}

.print-works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
}

.print-work-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(88, 64, 39, .24);
  padding: 28px 20px 17px;
  background: linear-gradient(180deg, #fff8eb 0%, #efe0c7 100%);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.print-work-card:hover,
.print-work-card:focus-visible {
  outline: 0;
  border-color: rgba(181, 125, 56, .7);
  box-shadow: 0 20px 28px rgba(67, 48, 29, .32);
  transform: translateY(-5px);
}

.print-pin {
  position: absolute;
  top: -16px;
  width: 42px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 6px 8px rgba(74, 54, 34, .22));
}

.pin-left {
  left: 16px;
}

.pin-right {
  right: 16px;
}

.print-work-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border: 1px solid rgba(67, 46, 27, .22);
  background: #d8c4a7;
}

.print-work-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.1;
}

.print-work-card p {
  margin-top: 10px;
  color: #76634d;
  font-size: clamp(16px, 3vw, 23px);
  font-weight: 700;
}

.print-like {
  position: absolute;
  right: 16px;
  bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 5px 9px;
  color: var(--red);
  background: rgba(255, 249, 239, .72);
  cursor: pointer;
  font-size: 24px;
}

.print-work-card.is-liked .print-like {
  background: rgba(195, 66, 37, .12);
}

.print-like b {
  font-weight: 800;
}

.print-empty {
  padding: 26px 0;
  color: #806d54;
  font-size: 20px;
  text-align: center;
}

.print-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 42px 0 0;
  color: #806d54;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
}

.print-tip img {
  width: 32px;
  height: 32px;
}

.print-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, .82);
}

.print-modal.is-open {
  display: flex;
}

.print-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: 92vh;
  overflow: hidden;
  border: 1px solid rgba(214, 163, 80, .42);
  background: #14100d;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .58);
}

.print-modal-dialog > img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #080605;
}

.print-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 238, 210, .4);
  border-radius: 50%;
  color: #fff4e6;
  background: rgba(0, 0, 0, .52);
  cursor: pointer;
  font-size: 26px;
}

.print-modal-meta {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff1df;
}

.print-modal-meta button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(214, 163, 80, .5);
  border-radius: 50%;
  color: #fff1df;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 30px;
}

.print-modal-meta h3 {
  font-size: 24px;
}

.print-modal-meta p {
  margin-top: 4px;
  color: rgba(255, 241, 223, .72);
}

.print-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  max-width: calc(100% - 40px);
  border: 1px solid rgba(214, 163, 80, .46);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff1df;
  background: rgba(24, 17, 12, .92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease;
}

.print-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.print-floating-back {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 20;
  border: 1px solid rgba(255, 231, 188, .48);
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff1df;
  background: rgba(31, 20, 13, .45);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
}

.print-floating-back.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.admin-print-hero {
  position: relative;
  padding: 24px clamp(18px, 5vw, 54px) 48px;
  color: #fff1df;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .32)),
    url("/assets/printmaking-assets/museum-scene.png") center top / auto 880px no-repeat,
    #110d0a;
}

.admin-print-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 36%, rgba(0, 0, 0, .36));
}

.admin-print-nav,
.admin-print-title,
.admin-hero-actions {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.admin-print-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-print-nav strong {
  display: block;
  font-size: 22px;
}

.admin-print-nav span,
.admin-print-title span,
.admin-print-title p {
  color: rgba(255, 241, 223, .78);
}

.admin-print-title {
  padding: 60px 0 26px;
}

.admin-print-title p {
  margin-bottom: 10px;
  color: #f1c37a;
  font-size: 18px;
  font-weight: 700;
}

.admin-print-title h1 {
  font-family: var(--display);
  font-size: clamp(46px, 9vw, 86px);
  line-height: 1;
  text-shadow: 0 5px 14px rgba(0, 0, 0, .58);
}

.admin-print-title span {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
}

.admin-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-primary-btn,
.admin-ghost-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s ease, filter .16s ease, border-color .16s ease;
}

.admin-primary-btn {
  border: 1px solid rgba(255, 181, 122, .82);
  color: #fff4e9;
  background: linear-gradient(180deg, #dc6440 0%, #a92e18 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
  font-weight: 800;
}

.admin-ghost-btn {
  border: 1px solid rgba(222, 177, 107, .45);
  color: #fff1df;
  background: rgba(42, 31, 20, .62);
}

.admin-primary-btn:hover,
.admin-ghost-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.admin-print-layout {
  display: grid;
  width: min(1180px, calc(100% - 28px));
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 22px;
  margin: -26px auto 44px;
  align-items: start;
}

.admin-paper-card,
.login-panel,
.admin-qr-dialog {
  border: 1px solid rgba(88, 64, 39, .25);
  background:
    linear-gradient(180deg, #fff8eb, #efe0c7),
    var(--paper);
  box-shadow: var(--shadow);
}

.admin-paper-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.admin-paper-card::before,
.login-panel::before,
.admin-qr-dialog::before {
  display: none;
}

.admin-paper-card > *,
.login-panel > *,
.admin-qr-dialog > * {
  position: relative;
  z-index: 1;
}

.admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-section-head h2 {
  color: var(--ink);
  font-size: 30px;
}

.admin-section-head p,
.admin-message,
.admin-empty {
  color: var(--muted);
  line-height: 1.6;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 12px;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(88, 64, 39, .28);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 250, 241, .82);
  outline: none;
}

input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(195, 66, 37, .12);
}

.admin-category-list,
.admin-work-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.admin-category-item {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(88, 64, 39, .18);
  padding: 12px;
  background: rgba(255, 250, 241, .62);
}

.admin-category-item.is-active {
  border-color: rgba(195, 66, 37, .62);
  box-shadow: inset 4px 0 0 var(--red);
}

.admin-category-main {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.admin-category-main strong {
  display: block;
  font-size: 20px;
}

.admin-category-main span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.admin-category-actions {
  display: flex;
  gap: 8px;
}

.admin-category-actions button {
  border: 1px solid rgba(88, 64, 39, .24);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--brown);
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
}

.admin-category-actions .danger {
  color: var(--red);
}

.admin-upload-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.admin-file-drop {
  display: grid;
  gap: 6px;
  border: 1px dashed rgba(195, 66, 37, .42);
  border-radius: 12px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 241, .62);
  cursor: pointer;
}

.admin-file-drop span {
  font-size: 18px;
  font-weight: 800;
}

.admin-file-drop small {
  color: var(--muted);
}

.admin-file-drop input {
  min-height: 0;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-work-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.admin-work-item {
  overflow: hidden;
  border: 1px solid rgba(88, 64, 39, .2);
  background: rgba(255, 250, 241, .74);
  box-shadow: 0 12px 20px rgba(67, 48, 29, .16);
}

.admin-work-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.admin-work-item figcaption {
  display: grid;
  gap: 4px;
  padding: 10px;
}

.admin-work-item strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-work-item span {
  color: var(--muted);
  font-size: 13px;
}

.admin-qr-dialog {
  width: min(420px, calc(100% - 34px));
  border: 0;
  padding: 28px;
  color: var(--ink);
}

.admin-qr-dialog::backdrop {
  background: rgba(0, 0, 0, .72);
}

.admin-qr-dialog h3 {
  margin-bottom: 14px;
  font-size: 26px;
}

.admin-qr-dialog img {
  display: block;
  width: min(260px, 100%);
  margin: 0 auto 14px;
  background: #fff;
}

.admin-qr-dialog input {
  margin-bottom: 14px;
}

.admin-bg {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .32)),
    url("/assets/printmaking-assets/museum-scene.png") center / cover no-repeat;
}

.login-shell {
  width: min(430px, 100%);
}

.login-panel {
  position: relative;
  padding: 30px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  color: #fff4e9;
  background: linear-gradient(180deg, #dc6440, #a92e18);
  font-size: 26px;
  font-weight: 800;
}

.login-panel h1 {
  color: var(--ink);
  font-size: 32px;
}

.login-panel p {
  margin-top: 8px;
  color: var(--muted);
}

.form-stack {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.form-stack label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.primary-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 181, 122, .82);
  border-radius: 999px;
  padding: 0 18px;
  color: #fff4e9;
  background: linear-gradient(180deg, #dc6440 0%, #a92e18 100%);
  cursor: pointer;
  font-weight: 800;
}

.message {
  min-height: 22px;
  margin-top: 12px;
  color: var(--red);
}

@media (max-width: 720px) {
  .print-hero {
    min-height: 760px;
    padding: 56px 26px 0;
  }

  .print-hero::before {
    inset-top: 292px;
  }

  .print-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(252px, 100%);
  }

  .print-stat {
    min-height: 50px;
  }

  .print-stat span {
    font-size: 18px;
  }

  .print-category-panel,
  .print-gallery {
    padding: 40px 26px 36px;
  }

  .print-category-list {
    grid-template-columns: 1fr;
  }

  .print-category-card {
    min-height: 112px;
  }

  .print-works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
  }

  .print-work-card {
    padding: 25px 14px 18px;
  }

  .admin-print-layout {
    grid-template-columns: 1fr;
  }

  .admin-upload-box,
  .admin-inline-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .print-hero {
    min-height: 680px;
  }

  .print-title {
    font-size: 46px;
  }

  .print-subtitle {
    gap: 10px;
    font-size: 18px;
    white-space: normal;
  }

  .print-subtitle::before,
  .print-subtitle::after {
    width: 54px;
  }

  .print-hero::before {
    inset-top: 276px;
    background-size: auto 560px;
  }

  .print-hero-cta {
    bottom: 26px;
    height: 60px;
    font-size: 24px;
  }

  .print-section-title {
    gap: 12px;
  }

  .print-section-title img {
    width: 42px;
    height: 42px;
  }

  .print-section-title h2 {
    font-size: 36px;
  }

  .print-section-title p {
    font-size: 16px;
  }

  .print-work-card h3 {
    font-size: 22px;
  }

  .print-work-card p {
    font-size: 15px;
  }

  .print-like {
    right: 10px;
    bottom: 10px;
    font-size: 19px;
  }

  .admin-print-title h1 {
    font-size: 48px;
  }

  .admin-hero-actions {
    display: grid;
  }
}
