@import url("https://fonts.googleapis.com/css2?family=Playfair:wght@400;500;600;700&display=swap");

:root {
  --ink: #2e2923;
  --muted: #746b60;
  --paper: #f5efe2;
  --paper-warm: #fbf7ed;
  --clay: #b96f45;
  --sage: #687f6a;
  --blue: #345a72;
  --charcoal: #171513;
  --line: rgba(64, 52, 40, 0.18);
  --shadow: rgba(44, 31, 20, 0.28);
  --serif: "Playfair", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(180, 112, 68, 0.13), transparent 28rem),
    linear-gradient(135deg, #d4c5ad 0%, #b8a88f 52%, #8f8172 100%);
  font-family: var(--sans);
}

button {
  font: inherit;
}

.shell {
  display: flex;
  flex-direction: column;
  width: min(1560px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 64px) 38px;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.site-logo {
  display: block;
  flex: 0 0 auto;
  width: clamp(54px, 5vw, 64px);
  height: clamp(54px, 5vw, 64px);
  object-fit: contain;
}

.brand-wordmark {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  border-right: 1px solid transparent;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-variant: small-caps;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    max-width 600ms steps(10, end),
    opacity 240ms ease,
    transform 600ms ease;
}

.brand-link:hover .brand-wordmark,
.brand-link:focus-visible .brand-wordmark {
  max-width: 10.5ch;
  opacity: 1;
  transform: translateX(0);
  transition:
    max-width 1000ms steps(10, end),
    opacity 220ms ease,
    transform 1000ms ease;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4.9rem);
  line-height: 0.95;
}

.book-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.close-button,
.detail-arrow {
  display: grid;
  place-items: center;
  border: 1px solid rgba(48, 39, 30, 0.22);
  color: var(--ink);
  background: rgba(255, 252, 244, 0.72);
  box-shadow: 0 10px 28px rgba(44, 31, 20, 0.13);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.icon-button:hover,
.close-button:hover,
.detail-arrow:hover {
  transform: translateY(-1px);
  background: #fffaf0;
}

.icon-button:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.page-count {
  min-width: 104px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  margin-top: auto;
  padding-top: 24px;
  color: rgba(46, 41, 35, 0.54);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.book-stage {
  display: grid;
  min-height: min(72vh, 900px);
  perspective: 2600px;
}

.book {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: stretch;
  width: 100%;
  min-height: min(78vh, 920px);
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 32px rgba(41, 30, 22, 0.24));
}

.book::before {
  content: "";
  position: absolute;
  inset: -3px -4px -5px;
  z-index: -3;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(104, 122, 101, 0.58), rgba(83, 103, 88, 0.66)),
    #687a65;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 20px 38px rgba(47, 36, 27, 0.22);
}

.book::after {
  content: none;
}

.book-shadow {
  position: absolute;
  inset: auto 4% -24px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(38, 28, 19, 0.32), transparent 70%);
  pointer-events: none;
}

.page {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(24px, 2.6vw, 48px) clamp(24px, 3vw, 52px) clamp(56px, 4.6vw, 76px);
  background:
    linear-gradient(90deg, rgba(122, 93, 57, 0.12), transparent 11%, transparent 89%, rgba(122, 93, 57, 0.08)),
    repeating-linear-gradient(0deg, rgba(90, 71, 47, 0.025), rgba(90, 71, 47, 0.025) 1px, transparent 1px, transparent 8px),
    var(--paper-warm);
  box-shadow: inset 0 0 34px rgba(79, 58, 34, 0.08);
}

.page-left {
  background:
    linear-gradient(90deg, rgba(97, 69, 42, 0.13), transparent 10%, transparent 88%, rgba(89, 61, 36, 0.15)),
    repeating-linear-gradient(0deg, rgba(90, 71, 47, 0.025), rgba(90, 71, 47, 0.025) 1px, transparent 1px, transparent 8px),
    #fbf8ee;
  box-shadow:
    inset 0 0 34px rgba(79, 58, 34, 0.08),
    -2px 0 0 #fffaf0,
    -4px 0 0 #d9c9ae,
    -6px 0 0 #fbf6e9,
    -8px 0 0 #cbb894,
    -10px 0 8px rgba(62, 45, 29, 0.18);
}

.page-right {
  background:
    linear-gradient(90deg, rgba(83, 58, 34, 0.18), transparent 12%, transparent 91%, rgba(179, 150, 108, 0.09)),
    repeating-linear-gradient(0deg, rgba(90, 71, 47, 0.022), rgba(90, 71, 47, 0.022) 1px, transparent 1px, transparent 8px),
    #f8f2e6;
  box-shadow:
    inset 0 0 34px rgba(79, 58, 34, 0.08),
    2px 0 0 #f8f1e3,
    4px 0 0 #d7c5a7,
    6px 0 0 #fff9ed,
    8px 0 0 #cdbb99,
    10px 0 8px rgba(62, 45, 29, 0.14);
}

.page.can-turn {
  cursor: pointer;
}

.page-left::after,
.page-right::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  pointer-events: none;
  z-index: 2;
}

.page-left::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(66, 45, 27, 0.16));
}

.page-right::before {
  left: 0;
  background: linear-gradient(90deg, rgba(66, 45, 27, 0.18), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  align-items: start;
  gap: clamp(14px, 1.35vw, 22px) clamp(18px, 2vw, 32px);
  height: 100%;
}

.work-count-1 {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
}

.work-count-1 .work-card {
  width: min(82%, 430px);
  justify-self: center;
}

.work-count-2,
.work-count-3 {
  align-content: center;
}

.work-count-3 .work-card:first-child {
  grid-column: 1 / -1;
  width: min(72%, 420px);
  justify-self: center;
}

.work-card {
  display: grid;
  gap: 6px;
  align-content: start;
  min-width: 0;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease;
}

.work-card img {
  width: 100%;
  height: auto;
  max-height: min(20vh, 210px);
  object-fit: contain;
  border: 1px solid rgba(74, 60, 43, 0.12);
  background: #eee3d2;
  box-shadow:
    0 5px 10px rgba(45, 31, 20, 0.12),
    0 14px 22px rgba(45, 31, 20, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, filter 200ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-2px);
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.025);
  border-color: rgba(151, 101, 53, 0.42);
  box-shadow:
    0 9px 18px rgba(45, 31, 20, 0.18),
    0 22px 34px rgba(45, 31, 20, 0.16);
  filter: saturate(1.04) contrast(1.03);
}

.work-title {
  color: #2f2923;
  font-family: var(--serif);
  font-size: clamp(0.96rem, 1.18vw, 1.24rem);
  font-weight: 500;
  line-height: 1.15;
  transition: color 180ms ease, font-weight 180ms ease;
}

.work-price strong {
  font-weight: 800;
}

.work-price s {
  font-weight: 400;
}

.discount-price {
  color: #b3312f;
}

.sold-label {
  font-style: italic;
}

.print-list {
  display: none;
}

.work-card:hover .work-title,
.work-card:focus-visible .work-title {
  color: #1e1a16;
  font-weight: 700;
}

.work-meta {
  display: none;
}

.page-footer {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 2.5vw, 34px);
  transform: translateX(-50%);
  color: rgba(50, 43, 35, 0.7);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.28em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.turn-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
  transform-style: preserve-3d;
}

.turn-layer.is-active {
  display: grid;
}

.turn-sheet {
  position: relative;
  overflow: visible;
  height: 100%;
  transform-style: preserve-3d;
  --turn-curl: 0;
  --turn-progress: 0;
}

.turn-right {
  transform-origin: left center;
}

.turn-left {
  transform-origin: right center;
}

.turn-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow:
    inset calc(var(--turn-curl) * -34px) 0 42px rgba(58, 40, 24, 0.16),
    0 calc(var(--turn-curl) * 18px) calc(var(--turn-curl) * 38px) rgba(41, 30, 22, 0.22);
}

.turn-sheet.is-past-half .turn-face {
  box-shadow:
    inset calc(var(--turn-curl) * 34px) 0 42px rgba(58, 40, 24, 0.16),
    0 calc(var(--turn-curl) * 18px) calc(var(--turn-curl) * 38px) rgba(41, 30, 22, 0.22);
}

.turn-back {
  transform: rotateY(180deg);
}

.turn-left .turn-back {
  transform: rotateY(-180deg);
}

.turn-face::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: calc(0.42 + var(--turn-curl) * 0.38);
  background:
    linear-gradient(90deg, rgba(54, 37, 22, 0.22), transparent 12%, transparent 82%, rgba(255, 255, 255, 0.16));
}

.turn-left .turn-face::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 88%, rgba(54, 37, 22, 0.22));
}

.turn-right.is-past-half .turn-face::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 88%, rgba(54, 37, 22, 0.22));
}

.turn-left.is-past-half .turn-face::before {
  background:
    linear-gradient(90deg, rgba(54, 37, 22, 0.22), transparent 12%, transparent 82%, rgba(255, 255, 255, 0.16));
}

.turn-face::after {
  content: "";
  position: absolute;
  top: -4%;
  bottom: -4%;
  width: 150px;
  z-index: 4;
  pointer-events: none;
  opacity: calc(var(--turn-curl) * 0.86);
}

.turn-right .turn-face::after {
  left: -18px;
  border-radius: 0 62% 62% 0;
  background:
    radial-gradient(ellipse at left center, rgba(45, 31, 18, 0.34), transparent 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 34%, transparent 58%);
}

.turn-left .turn-face::after {
  right: -18px;
  border-radius: 62% 0 0 62%;
  background:
    radial-gradient(ellipse at right center, rgba(45, 31, 18, 0.34), transparent 56%),
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0.34));
}

.turn-right.is-past-half .turn-face::after {
  left: auto;
  right: -18px;
  border-radius: 62% 0 0 62%;
  background:
    radial-gradient(ellipse at right center, rgba(45, 31, 18, 0.34), transparent 56%),
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.08) 66%, rgba(255, 255, 255, 0.34));
}

.turn-left.is-past-half .turn-face::after {
  right: auto;
  left: -18px;
  border-radius: 0 62% 62% 0;
  background:
    radial-gradient(ellipse at left center, rgba(45, 31, 18, 0.34), transparent 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 34%, transparent 58%);
}

.mobile-gallery {
  display: none;
}

.detail {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  grid-template-rows: auto 1fr;
  color: #f8f3e9;
  background: transparent;
  overflow: hidden;
  opacity: 0;
  transition: opacity 500ms ease;
}

.detail.is-open,
.detail.is-closing {
  display: grid;
}

.detail.is-open {
  opacity: 1;
}

.detail.is-closing {
  opacity: 0;
  pointer-events: none;
}

.detail::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 35% 40%, rgba(80, 58, 40, 0.32), transparent 34rem),
    #171513;
  opacity: 1;
  transition: opacity 520ms ease;
  pointer-events: none;
}

.detail.is-entering::before {
  opacity: 0;
}

.detail.is-entering.is-entry-wash::before {
  opacity: 1;
}

.detail-toolbar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px clamp(14px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 249, 238, 0.16);
  opacity: 1;
  transition: opacity 520ms ease;
}

.detail-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
}

.detail-thumb {
  flex: 0 0 auto;
  width: 74px;
  height: 54px;
  border: 2px solid transparent;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.detail-thumb.is-active {
  border-color: var(--clay);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.close-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.detail-body {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  overflow-y: auto;
  padding: 0 0 clamp(34px, 5vw, 72px);
}

.detail-figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: auto;
  width: 100%;
  aspect-ratio: var(--detail-ratio, 3 / 2);
  margin: 0;
  touch-action: pan-y;
  cursor: zoom-in;
  opacity: 1;
  transition: opacity 520ms ease;
}

.detail-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.detail-figure img {
  z-index: 1;
  opacity: 1;
  transition: opacity 320ms ease;
}

.detail-figure.is-cross-fading img {
  opacity: 0;
}

.detail-copy {
  min-width: 0;
  width: min(calc(100% - clamp(32px, 10vw, 220px)), 980px);
  margin: clamp(22px, 3vw, 34px) auto 0;
  opacity: 1;
  text-align: right;
  transition: opacity 520ms ease;
}

.detail-copy h2 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
}

.detail-price {
  margin: 0 0 14px;
  color: #f8f3e9;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.75vw, 2rem);
  line-height: 1.15;
}

.detail-price strong {
  font-weight: 800;
}

.detail-price s {
  color: rgba(248, 243, 233, 0.68);
  font-weight: 400;
}

.detail-price .discount-price {
  color: #ff7a70;
}

.detail-copy p {
  margin: 0 0 8px;
  color: rgba(248, 243, 233, 0.78);
  line-height: 1.5;
  white-space: pre-line;
}

#detailDescription {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-bottom: 18px;
  text-align: right;
  white-space: normal;
}

.quote-text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
  text-align: right;
}

.quote-author {
  display: block;
  margin-top: 0;
  color: #d9b189;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
}

.detail-copy .eyebrow:empty {
  display: none;
}

.dimensions {
  color: rgba(248, 243, 233, 0.58);
  font-weight: 500;
  text-align: right;
}

.detail-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  width: 25%;
  height: 100%;
  border: 0;
  border-radius: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.detail-arrow::before {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(248, 243, 233, 0.26);
  border-radius: 50%;
  color: #29251f;
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  font-size: 2.7rem;
  line-height: 1;
}

.detail-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: clamp(18px, 4vw, 58px);
}

.detail-prev::before {
  content: "‹";
}

.detail-next {
  right: 0;
  justify-content: flex-end;
  padding-right: clamp(18px, 4vw, 58px);
}

.detail-next::before {
  content: "›";
}

.detail-arrow:hover,
.detail-arrow:focus-visible {
  opacity: 1;
  transform: none;
  background: transparent;
}

.detail.is-entering .detail-toolbar,
.detail.is-entering .detail-copy,
.detail.is-entering .detail-arrow {
  opacity: 0;
}

.detail.is-entering.is-entry-wash .detail-toolbar,
.detail.is-entering.is-entry-wash .detail-copy {
  opacity: 1;
}

.detail.is-entry-media-hidden .detail-figure > img {
  opacity: 0;
}

.detail-entry-image {
  position: fixed;
  z-index: 60;
  display: block;
  object-fit: cover;
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
  pointer-events: none;
  transition:
    left 620ms cubic-bezier(0.19, 1, 0.22, 1),
    top 620ms cubic-bezier(0.19, 1, 0.22, 1),
    width 620ms cubic-bezier(0.19, 1, 0.22, 1),
    height 620ms cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 620ms ease;
}

@media (min-width: 821px) and (max-height: 900px) {
  .detail-body {
    overflow-y: auto;
    padding-bottom: clamp(320px, 34vh, 430px);
  }

  .detail-copy {
    position: fixed;
    left: clamp(36px, 5vw, 84px);
    right: clamp(36px, 5vw, 84px);
    bottom: clamp(24px, 5vh, 56px);
    z-index: 4;
    width: min(920px, calc(100% - clamp(72px, 10vw, 168px)));
    margin: 0;
    text-shadow:
      0 1px 1px rgba(0, 0, 0, 0.95),
      0 0 5px rgba(0, 0, 0, 0.85),
      0 0 14px rgba(0, 0, 0, 0.78);
  }

  .detail-copy::before {
    content: "";
    position: absolute;
    inset: -18px -22px -16px;
    z-index: -1;
    background: linear-gradient(90deg, rgba(15, 13, 11, 0.58), rgba(15, 13, 11, 0.18), transparent);
    filter: blur(10px);
    pointer-events: none;
  }
}

@media (max-width: 820px) {
  .shell {
    padding: 18px 14px 30px;
  }

  .masthead {
    align-items: center;
  }

  .book-nav,
  .book-stage {
    display: none;
  }

  .mobile-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 18px 14px;
    padding: 18px;
    border-radius: 14px;
    background:
      repeating-linear-gradient(0deg, rgba(90, 71, 47, 0.025), rgba(90, 71, 47, 0.025) 1px, transparent 1px, transparent 8px),
      var(--paper-warm);
    box-shadow: 0 18px 36px rgba(41, 30, 22, 0.18);
  }

  .work-title {
    font-size: 1rem;
  }

  .work-card img {
    max-height: 220px;
  }

  .work-meta {
    display: none;
  }

  .detail-toolbar {
    padding: 14px 18px;
  }

  .detail-copy {
    width: calc(100% - 36px);
    margin-top: 20px;
  }

  .detail-copy h2 {
    font-size: 1.8rem;
  }

  .detail-arrow::before {
    width: 48px;
    height: 48px;
    font-size: 2.3rem;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  html,
  body {
    min-height: 0;
    color: #111;
    background: #fff;
  }

  body {
    font-family: var(--sans);
    font-size: 8.5pt;
  }

  .shell {
    display: block;
    width: auto;
    min-height: 0;
    padding: 0;
  }

  .masthead,
  .book-nav,
  .book-stage,
  .mobile-gallery,
  .site-footer,
  .detail {
    display: none !important;
  }

  .print-list {
    display: block;
  }

  .print-list-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18pt;
    margin-bottom: 7pt;
    padding-bottom: 5pt;
    border-bottom: 1px solid #333;
  }

  .print-list-header h1 {
    margin: 0;
    color: #111;
    font-family: var(--serif);
    font-size: 18pt;
    line-height: 1.1;
  }

  .print-list-header p {
    margin: 0;
    color: #333;
    font-size: 8.5pt;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .print-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .print-table th,
  .print-table td {
    padding: 2.5pt 4pt;
    border-bottom: 1px solid #c8c8c8;
    color: #111;
    text-align: left;
    vertical-align: middle;
  }

  .print-table th {
    border-bottom-color: #333;
    font-size: 7.5pt;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .print-table th:nth-child(1),
  .print-table td:nth-child(1) {
    width: 0.58in;
  }

  .print-table th:nth-child(2),
  .print-table td:nth-child(2) {
    width: 42%;
  }

  .print-table th:nth-child(3),
  .print-table td:nth-child(3) {
    width: 28%;
  }

  .print-thumb-cell img {
    display: block;
    width: 0.42in;
    height: 0.42in;
    object-fit: contain;
  }

  .print-title-cell {
    font-weight: 700;
  }

  .print-table tr {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .print-table thead {
    display: table-header-group;
  }

  .print-table s {
    color: #555;
  }

  .print-table strong {
    font-weight: 800;
  }

  .print-empty {
    margin: 0;
    color: #111;
  }
}
