:root {
  color-scheme: light;
  --ink: #171717;
  --ink-soft: #3a3a3a;
  --muted: #7a7a7a;
  --subtle: #9a9a9a;
  --line: rgba(255, 127, 168, 0.16);
  --paper: #fffdf9;
  --paper-deep: #fff7fa;
  --sheet: #fffefb;
  --mat: #f6eee4;
  --panel: #ffffff;
  --accent: #ff7fa8;
  --accent-deep: #ff5f8f;
  --accent-soft: #ffeaf1;
  --mint: #91bdaa;
  --sky: #6aa8d1;
  --cream: #fff1c9;
  --shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
  --shadow-hover: 0 16px 36px rgba(23, 23, 23, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --page-pad: max(20px, calc((100vw - 1120px) / 2));
  --sheet-inset: 14px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper-deep);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 8% -10%, rgba(255, 127, 168, 0.22), transparent 42%),
    radial-gradient(ellipse at 92% 0%, rgba(255, 209, 140, 0.18), transparent 36%),
    linear-gradient(180deg, #ffeaf1 0%, #fff7fa 28%, #fffdf9 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.is-hidden {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  background: #fff6f9;
  box-shadow: 0 8px 18px rgba(255, 95, 143, 0.22);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #444;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #fff;
  color: var(--accent-deep);
  outline: none;
}

.home-page .site-nav a[href="./index.html"],
.categories-page .site-nav a[href="./categories.html"],
.category-page .site-nav a[href="./categories.html"],
.drawing-page .site-nav a[href="./categories.html"],
.about-page .site-nav a[href="./about.html"] {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 4px 12px rgba(255, 95, 143, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
}

main {
  width: 100%;
}

.hero-section,
.section-band,
.content-section,
.acquire-panel,
.page-title,
.detail-layout {
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: start;
  gap: clamp(24px, 4vw, 48px);
  padding-top: clamp(28px, 5vh, 56px);
  padding-bottom: clamp(24px, 5vh, 48px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

.hero-copy h1 {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.03em;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ff7fa8, #c85cb8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.search-form {
  display: flex;
  align-items: center;
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 6px 6px 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(255, 95, 143, 0.12);
}

.search-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 10px 8px;
  color: var(--ink);
  background: transparent;
  outline: 0;
}

.search-form input::placeholder {
  color: #b0b0b0;
}

.search-form button,
.button-link {
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(135deg, #ff7fa8, #ff5f8f);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 95, 143, 0.24);
}

.button-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
}

.search-form button:hover,
.button-link:hover {
  filter: brightness(1.03);
}

.hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hot-tags a,
.hot-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #666;
  font-size: 13px;
  font-weight: 650;
}

.hot-tags a:hover {
  background: #fff;
  color: var(--accent-deep);
}

.hero-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-meta span,
.detail-meta span,
.view-stat {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.page-title > .view-stat,
.view-stat-wrap {
  justify-self: start;
  width: max-content;
  max-width: 100%;
}

.hero-acquire {
  width: min(640px, 100%);
  margin-top: 18px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(255, 95, 143, 0.1);
}

.hero-acquire-kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-acquire-codes {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.hero-acquire figure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-width: 0;
}

.hero-acquire img {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}

.hero-acquire figcaption {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hero-acquire figcaption strong,
.hero-acquire figcaption span {
  display: block;
}

.hero-acquire figcaption strong {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.hero-acquire figcaption span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-acquire-split {
  width: 1px;
  height: 80px;
  background: rgba(255, 127, 168, 0.22);
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 10px;
  align-items: start;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.hero-poster {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-poster img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.art-sheet,
.watermark-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--sheet);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.protect-art {
  aspect-ratio: 4 / 3;
}

.detail-image.protect-art {
  aspect-ratio: 1 / 1;
}

.art-photo {
  position: absolute;
  inset: var(--sheet-inset);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.art-shield {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.art-sheet img,
.watermark-frame img {
  position: absolute;
  inset: var(--sheet-inset);
  width: calc(100% - (var(--sheet-inset) * 2));
  height: calc(100% - (var(--sheet-inset) * 2));
  object-fit: contain;
  object-position: center;
}

.watermark-text {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-18deg);
  width: max-content;
  max-width: 82%;
  padding: 5px 12px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(23, 23, 23, 0.28);
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}

.section-band {
  background: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.content-section,
.page-title,
.detail-layout {
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-head h2,
.page-title h1,
.detail-copy h1 {
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
}

.text-link {
  flex: 0 0 auto;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 14px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-grid-large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.drawing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.category-tile .category-cover,
.category-tile .category-thumb,
.category-tile img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #f4efe8;
}

.category-thumb {
  overflow: hidden;
}

.category-thumb::before {
  content: none;
}

.category-thumb img {
  aspect-ratio: 4 / 3;
}

.category-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px 10px;
}

.category-copy strong {
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.category-grid > *,
.drawing-grid > * {
  min-width: 0;
}

.drawing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.drawing-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drawing-card a {
  display: block;
  color: inherit;
}

.drawing-card .art-sheet,
.drawing-card .watermark-frame {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  --sheet-inset: 0px;
}

.drawing-card img,
.drawing-card .art-photo {
  max-width: none;
  transition: transform 0.35s ease;
}

.drawing-card:hover .art-photo {
  transform: scale(1.03);
}

.drawing-card-body,
.drawing-card figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 0;
  padding: 8px 10px 10px;
  background: #fff;
}

.drawing-card-body h3,
.drawing-card figcaption h3 {
  min-width: 0;
  flex: 1;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawing-card .watermark-text {
  font-size: 11px;
  padding: 3px 8px;
  top: 46%;
}

.drawing-card-body p:not(.eyebrow) {
  display: none;
}

.drawing-tag,
.drawing-card-body .eyebrow {
  flex: 0 0 auto;
  max-width: 42%;
  margin: 0;
  padding: 3px 8px;
  border-radius: 8px;
  background: var(--cream);
  color: #8b6a25;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-title {
  display: grid;
  gap: 14px;
  background: transparent;
}

.page-title > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.category-title {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  align-items: center;
  gap: 24px;
}

.category-title .hero-acquire {
  width: 100%;
  margin-top: 0;
  justify-self: end;
}

.category-title .hero-acquire figure {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.category-title .hero-acquire figcaption {
  justify-items: center;
}

.category-title .hero-acquire img {
  width: 104px;
  height: 104px;
  flex-basis: 104px;
}

.category-portrait,
.category-title > img,
.category-title .art-sheet {
  width: 168px;
  aspect-ratio: 1 / 1;
  justify-self: end;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.category-title img {
  object-fit: contain;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.detail-image,
.detail-art .art-sheet {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 640px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-copy > p:not(.eyebrow):not(.poem-text) {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.poem-text {
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.download-image-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 22px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7fa8, #ff5f8f);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(255, 95, 143, 0.24);
}

.download-image-btn:hover {
  filter: brightness(1.03);
}

.download-dialog {
  width: min(360px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
}

.download-dialog::backdrop {
  background: rgba(28, 20, 24, 0.46);
}

.download-dialog-card {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(23, 23, 23, 0.18);
  text-align: center;
}

.download-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #fff4f7;
  color: #b04a68;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.download-dialog .eyebrow {
  margin: 0 0 14px;
}

.download-dialog figure {
  margin: 0;
}

.download-dialog img {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
}

.download-dialog figcaption {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.acquire-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: 28px;
  align-items: center;
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  background: #1c1c1c;
  color: #fff;
}

.acquire-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.acquire-copy .eyebrow {
  color: #ffd08b;
}

.acquire-copy h2 {
  font-size: clamp(24px, 3.4vw, 36px);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qr-grid figure {
  margin: 0;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
}

.qr-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 10px;
}

.qr-grid figcaption {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}

.empty {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed #eadfe6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--page-pad);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: var(--accent-deep);
  font-weight: 700;
}

.geo-note {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.geo-note a {
  color: var(--accent-deep);
  font-weight: 700;
}

.seo-faq dl,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  max-width: none;
}

.about-page .seo-faq dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-faq dl > div,
.faq-card {
  padding: 22px 22px 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.seo-faq dt {
  font-size: 17px;
  font-weight: 800;
}

.seo-faq dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

noscript[data-seo-links] {
  display: block;
  margin: 0 var(--page-pad) 24px;
  padding: 16px 18px;
  border: 1px dashed #eadfe6;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.soft-pink,
.soft-rose { background: #fff1f2; }
.soft-blue,
.soft-sky { background: #ecf7ff; }
.soft-green,
.soft-mint { background: #eefaf5; }
.soft-yellow,
.soft-orange,
.soft-peach,
.soft-cream { background: #fff7e6; }
.soft-purple,
.soft-lavender { background: #f3f1ff; }
.soft-gray,
.soft-grey { background: #f6f7f9; }

@media (max-width: 1020px) {
  .hero-section,
  .detail-layout,
  .acquire-panel {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    max-width: none;
    margin-inline: 0;
  }

  .category-grid,
  .category-grid-large,
  .drawing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .seo-faq dl,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--page-pad);
    left: var(--page-pad);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-hover);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-section {
    padding-top: 28px;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .search-form {
    width: 100%;
  }

  .hero-gallery {
    gap: 8px;
  }

  .hero-acquire {
    width: 100%;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .category-grid-large,
  .drawing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .drawing-card-body,
  .drawing-card figcaption {
    padding: 7px 8px 8px;
  }

  .drawing-card-body h3,
  .drawing-card figcaption h3 {
    font-size: 14px;
  }

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

  .category-portrait,
  .category-title > img,
  .category-title .art-sheet {
    width: 112px;
    justify-self: start;
  }

  .detail-image,
  .detail-art .art-sheet {
    max-width: none;
    border-radius: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero-gallery {
    gap: 6px;
  }

  .hero-acquire {
    padding: 10px 12px 12px;
  }

  .hero-acquire-codes {
    gap: 8px;
  }

  .hero-acquire img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .hero-acquire-split {
    height: 64px;
  }

  .category-title .hero-acquire img {
    width: 88px;
    height: 88px;
    flex-basis: 88px;
  }

  .qr-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-copy strong {
    font-size: 14px;
  }
}
