    :root {
      --bg: #ffffff;
      --ink: #212121;
      --muted: #858585;
      --dim: #b7b7b7;
      --line: #e9e9e9;
      --line-strong: #d6d6d6;
      --soft: #f7f7f7;
      --soft-2: #f0f0f0;
      --accent: #ff8300;
      --accent-soft: #fff2e4;
      --black: #000000;
      --max: 1280px;
      color-scheme: light;
    }

    * {
      box-sizing: border-box;
    }

    html {
      background: var(--bg);
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: Arial, "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
      font-size: 14px;
      line-height: 1.55;
      letter-spacing: 0;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
      letter-spacing: 0;
    }

    button {
      color: inherit;
    }

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

    .site-head {
      background: #fff;
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 30;
    }

    .brand-row {
      height: 96px;
      display: grid;
      place-items: end center;
      padding: 18px 20px 14px;
    }

    .wordmark {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      font-size: 30px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: 0;
    }

    .wordmark .dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      display: inline-block;
      transform: translateY(-3px);
    }

    .wordmark small {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .nav-row {
      min-height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2px;
      border-top: 1px solid rgba(0, 0, 0, .035);
      padding: 0 16px;
      overflow-x: auto;
      white-space: nowrap;
    }

    .nav-link {
      height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
      border: 0;
      background: transparent;
      cursor: pointer;
      font-size: 13px;
      color: var(--ink);
      text-transform: uppercase;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--accent);
    }

    .mobile-tools {
      display: none;
      align-items: center;
      justify-content: space-between;
      height: 49px;
      padding: 0 14px;
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .menu-label,
    .mobile-search {
      width: 74px;
      border: 0;
      background: transparent;
      font-size: 11px;
      font-weight: 700;
      color: var(--ink);
      text-align: left;
    }

    .mobile-search {
      text-align: right;
    }

    .mobile-brand {
      font-size: 18px;
      font-weight: 800;
    }

    .search-band {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 5px 10px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: start;
      position: relative;
    }

    .search {
      position: relative;
    }

    .search input {
      width: 100%;
      height: 44px;
      border: 1px solid var(--line-strong);
      background: #fff;
      color: var(--ink);
      outline: none;
      padding: 0 14px;
      border-radius: 0;
      font-size: 13px;
    }

    .search input:focus {
      border-color: var(--black);
    }

    .top-actions {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .stat {
      min-width: 130px;
      text-align: right;
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
    }

    .stat strong {
      color: var(--ink);
      font-size: 13px;
      font-weight: 700;
    }

    .builder-toggle,
    .plain-btn {
      min-height: 44px;
      border: 1px solid var(--black);
      background: var(--black);
      color: #fff;
      padding: 0 14px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      border-radius: 0;
      white-space: nowrap;
    }

    .builder-toggle:hover,
    .plain-btn:hover {
      border-color: var(--accent);
      background: var(--accent);
    }

    .builder-popover {
      position: absolute;
      top: calc(100% + 2px);
      right: 5px;
      width: min(620px, calc(100% - 10px));
      z-index: 40;
      background: #fff;
      border: 1px solid var(--black);
      padding: 18px;
      display: grid;
      gap: 12px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, .12);
    }

    .builder-popover[hidden] {
      display: none;
    }

    .builder-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: start;
      border-bottom: 1px solid var(--line);
      padding-bottom: 12px;
    }

    .builder-head h2 {
      margin: 0;
      font-size: 16px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .builder-head button {
      border: 0;
      background: transparent;
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--muted);
    }

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

    .builder-form label {
      display: grid;
      gap: 5px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .builder-form input,
    .builder-form select {
      min-width: 0;
      height: 38px;
      border: 1px solid var(--line-strong);
      background: #fff;
      color: var(--ink);
      padding: 0 10px;
      outline: none;
      border-radius: 0;
    }

    .builder-form .wide {
      grid-column: 1 / -1;
    }

    .hero {
      max-width: var(--max);
      margin: 0 auto;
      padding: 12px 5px 0;
      display: grid;
      grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
      gap: 5px;
    }

    .feature {
      min-height: 520px;
      border: 1px solid var(--line);
      background: #fff;
      display: grid;
      grid-template-rows: minmax(260px, 1fr) auto;
      cursor: pointer;
      transition: border-color .18s ease;
    }

    .feature:hover {
      border-color: var(--black);
    }

    .image-slot {
      min-height: 220px;
      background:
        linear-gradient(90deg, transparent 49.5%, rgba(0, 0, 0, .045) 49.5%, rgba(0, 0, 0, .045) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(0, 0, 0, .045) 49.5%, rgba(0, 0, 0, .045) 50.5%, transparent 50.5%),
        var(--soft);
      display: grid;
      place-items: center;
      color: var(--dim);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      overflow: hidden;
      position: relative;
    }

    .image-slot span {
      border: 1px solid var(--line-strong);
      background: #fff;
      padding: 8px 10px;
    }

    .image-slot img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: var(--soft);
      display: block;
    }

    .image-slot img + span {
      display: none;
    }

    .feature-body,
    .row-body {
      padding: 24px;
      display: grid;
      gap: 10px;
    }

    .eyebrow {
      color: var(--accent);
      font-size: 10px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 800;
    }

    .feature-title {
      margin: 0;
      font-size: clamp(34px, 5vw, 58px);
      line-height: .98;
      max-width: 8em;
      font-weight: 800;
      word-break: keep-all;
    }

    .desc {
      margin: 0;
      color: #555;
      font-size: 13px;
      line-height: 1.65;
      word-break: keep-all;
    }

    .meta-line {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }

    .curation {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 5px;
      min-width: 0;
    }

    .curation-head {
      border: 1px solid var(--line);
      min-height: 116px;
      padding: 24px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
    }

    .curation-head h2 {
      margin: 0;
      font-size: 24px;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .quick-actions {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .quick-actions button,
    .chip,
    .mini-btn,
    .tag {
      border-radius: 0;
    }

    .quick-actions button,
    .chip {
      height: 30px;
      border: 1px solid var(--line-strong);
      background: #fff;
      color: var(--ink);
      padding: 0 10px;
      cursor: pointer;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .quick-actions button:hover,
    .chip:hover,
    .chip.active {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-soft);
    }

    .curated-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 5px;
    }

    .curated-row {
      min-height: 132px;
      border: 1px solid var(--line);
      background: #fff;
      display: grid;
      grid-template-columns: 152px minmax(0, 1fr) auto;
      cursor: pointer;
      transition: border-color .18s ease;
    }

    .curated-row:hover {
      border-color: var(--black);
    }

    .curated-row .image-slot {
      min-height: 100%;
    }

    .row-body {
      padding: 20px;
      overflow: hidden;
      align-content: center;
    }

    .row-title {
      font-size: 17px;
      line-height: 1.25;
      font-weight: 800;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: keep-all;
    }

    .row-action {
      display: flex;
      align-items: center;
      padding: 0 20px 0 8px;
      color: var(--accent);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .toolbar {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 5px 8px;
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
    }

    .chip .n {
      color: var(--muted);
      margin-left: 4px;
    }

    .section-bar {
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px 5px 10px;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 16px;
      border-top: 1px solid var(--line);
    }

    .section-bar h2 {
      margin: 0;
      font-size: 15px;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .section-bar p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 12px;
    }

    .view-tools {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .catalog {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 0 40px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 5px;
    }

    .card {
      border: 1px solid var(--line);
      background: #fff;
      min-height: 100%;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      transition: border-color .18s ease, background-color .18s ease;
    }

    .card:hover {
      border-color: var(--black);
      background: #fbfbfb;
    }

    .card .image-slot {
      aspect-ratio: 1.08;
      min-height: 0;
    }

    .card-body {
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .badges {
      display: flex;
      gap: 4px;
      flex-wrap: wrap;
      min-height: 22px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 21px;
      border: 1px solid var(--line);
      padding: 0 7px;
      color: var(--muted);
      background: #fff;
      font-size: 9.5px;
      font-weight: 800;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .tag.hot,
    .tag.featured {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-soft);
    }

    .tag.json {
      color: #23704a;
      border-color: #b8ddc9;
      background: #effaf4;
    }

    .tag.args {
      color: #555;
      border-color: var(--line-strong);
      background: #fafafa;
    }

    .card-title {
      font-size: 14px;
      line-height: 1.32;
      font-weight: 800;
      word-break: keep-all;
    }

    .card-desc {
      color: #666;
      font-size: 12px;
      line-height: 1.55;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: keep-all;
    }

    .card-actions {
      margin-top: auto;
      padding-top: 6px;
      display: flex;
      gap: 6px;
    }

    .mini-btn {
      min-height: 30px;
      border: 1px solid var(--line-strong);
      background: #fff;
      padding: 0 9px;
      cursor: pointer;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--ink);
    }

    .mini-btn:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: var(--accent-soft);
    }

    .empty {
      grid-column: 1 / -1;
      min-height: 320px;
      display: grid;
      place-items: center;
      color: var(--muted);
      border: 1px solid var(--line);
      background: var(--soft);
    }

    .pager {
      max-width: var(--max);
      margin: 0 auto;
      padding: 12px 5px 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .pager button {
      min-height: 32px;
      border: 1px solid var(--line-strong);
      background: #fff;
      padding: 0 12px;
      cursor: pointer;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .pager button:hover:not(:disabled) {
      border-color: var(--accent);
      color: var(--accent);
    }

    .pager button:disabled {
      opacity: .35;
      cursor: default;
    }

    .pager .info {
      color: var(--muted);
      font-size: 12px;
      min-width: 86px;
      text-align: center;
    }

    .bank-grid {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 0 42px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 5px;
    }

    .bank-card {
      border: 1px solid var(--line);
      background: #fff;
      min-height: 100%;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .bank-card .image-slot {
      aspect-ratio: 1;
      min-height: 0;
      border: 1px solid var(--line);
    }

    .bank-card h3 {
      margin: 0;
      font-size: 14px;
      line-height: 1.28;
      font-weight: 800;
    }

    .bank-card p {
      margin: 0;
      color: #5b5b5b;
      font-size: 12px;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 7;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .bank-actions {
      margin-top: auto;
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 80;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(10px);
      padding: 24px;
      overflow-y: auto;
    }

    .modal.open {
      display: grid;
      place-items: center;
    }

    .dialog {
      width: min(1080px, 100%);
      max-height: min(860px, calc(100vh - 48px));
      background: #fff;
      border: 1px solid var(--black);
      display: grid;
      grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
      overflow: hidden;
    }

    .dialog-side {
      border-right: 1px solid var(--line);
      background: #fafafa;
      display: grid;
      grid-template-rows: minmax(220px, auto) 1fr;
      min-width: 0;
    }

    .dialog-side .image-slot {
      min-height: 260px;
    }

    .dialog-copy {
      padding: 26px;
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .dialog-side h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.08;
      font-weight: 800;
      word-break: keep-all;
    }

    .dialog-side p {
      margin: 0;
      color: #555;
      line-height: 1.7;
      word-break: keep-all;
    }

    .dialog-main {
      padding: 26px;
      display: grid;
      gap: 14px;
      min-width: 0;
      overflow: auto;
    }

    .prompt-box,
    .builder-output {
      width: 100%;
      min-height: 260px;
      resize: vertical;
      border: 1px solid var(--line-strong);
      outline: none;
      padding: 14px;
      color: var(--ink);
      background: #fff;
      border-radius: 0;
      font-size: 13px;
      line-height: 1.7;
    }

    .builder-output {
      min-height: 130px;
    }

    .prompt-box:focus,
    .builder-output:focus {
      border-color: var(--black);
    }

    .dialog-actions,
    .builder-actions {
      display: flex;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .btn {
      min-height: 40px;
      border: 1px solid var(--black);
      background: var(--black);
      color: #fff;
      padding: 0 18px;
      cursor: pointer;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      border-radius: 0;
    }

    .btn:hover {
      border-color: var(--accent);
      background: var(--accent);
      color: #fff;
    }

    .btn.ghost {
      background: #fff;
      color: var(--ink);
      border-color: var(--line-strong);
    }

    .btn.ghost:hover {
      border-color: var(--black);
      background: #fff;
      color: var(--accent);
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%) translateY(20px);
      opacity: 0;
      pointer-events: none;
      z-index: 100;
      background: #111;
      color: #fff;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 800;
      transition: opacity .16s ease, transform .16s ease;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .site-foot {
      max-width: var(--max);
      margin: 0 auto;
      border-top: 1px solid var(--line);
      color: var(--muted);
      padding: 24px 5px 50px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      font-size: 11px;
      text-transform: uppercase;
      font-weight: 800;
    }

    .site-foot a {
      color: var(--ink);
    }

    @media (max-width: 1060px) {
      .catalog {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

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

    @media (max-width: 900px) {
      .brand-row,
      .nav-row {
        display: none;
      }

      .mobile-tools {
        display: flex;
      }

      .search-band {
        grid-template-columns: 1fr;
        padding: 12px 10px 10px;
      }

      .top-actions {
        justify-content: space-between;
      }

      .stat {
        text-align: left;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-left: 5px;
        padding-right: 5px;
      }

      .feature {
        min-height: 460px;
      }

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

      .quick-actions {
        justify-content: flex-start;
      }

      .catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 5px;
        padding-right: 5px;
      }

      .bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 5px;
        padding-right: 5px;
      }

      .toolbar,
      .section-bar,
      .pager,
      .site-foot {
        padding-left: 10px;
        padding-right: 10px;
      }

      .dialog {
        grid-template-columns: 1fr;
        max-height: none;
      }

      .dialog-side {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .dialog-side .image-slot {
        min-height: 180px;
      }
    }

    @media (max-width: 560px) {
      .modal {
        padding: 10px;
      }

      .top-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .builder-toggle {
        width: 100%;
      }

      .builder-form {
        grid-template-columns: 1fr;
      }

      .curated-row {
        grid-template-columns: 104px minmax(0, 1fr);
      }

      .curated-row .row-action {
        display: none;
      }

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

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

      .dialog-copy,
      .dialog-main {
        padding: 20px;
      }

      .dialog-side h2 {
        font-size: 26px;
      }
    }


.nav-row a.nav-link {
  text-decoration: none;
}

.catalog [hidden] {
  display: none !important;
}

.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 5px 48px;
}

.breadcrumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 5px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--ink);
}

.page-intro,
.legal-page,
.detail-shell,
.category-hero,
.editorial-band,
.related-band {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
}

.page-intro,
.legal-page,
.category-hero {
  padding-top: 26px;
  padding-bottom: 18px;
}

.eyebrow-line {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-title {
  margin: 10px 0 12px;
  font-size: clamp(34px, 6vw, 76px);
  line-height: .92;
  letter-spacing: -.03em;
}

.page-lead {
  max-width: 860px;
  margin: 0;
  color: #585858;
  font-size: 15px;
  line-height: 1.75;
}

.page-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-pill {
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.meta-pill strong {
  color: var(--muted);
  margin-right: 6px;
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 20px;
}

.detail-aside,
.detail-main,
.category-panel,
.editorial-panel {
  border: 1px solid var(--line);
  background: #fff;
}

.detail-aside {
  overflow: hidden;
}

.detail-aside .image-slot {
  min-height: 440px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.detail-aside .image-slot img {
  object-fit: cover;
}

.aside-copy {
  padding: 18px;
  display: grid;
  gap: 12px;
}

.detail-main {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.action-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.action-row a {
  text-decoration: none;
}

.mono-box {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: #fafafa;
  color: var(--ink);
  padding: 16px;
  min-height: 220px;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font: 13px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

.stat-card {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 12px;
}

.stat-card h3,
.editorial-panel h2,
.category-panel h2,
.related-band h2 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.3;
}

.stat-card p,
.editorial-panel p,
.category-panel p,
.legal-page p,
.legal-page li,
.microcopy {
  margin: 0;
  color: #5d5d5d;
  line-height: 1.75;
}

.stack {
  display: grid;
  gap: 10px;
}

.editorial-band,
.related-band {
  padding-top: 4px;
  padding-bottom: 26px;
}

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

.editorial-panel,
.category-panel {
  padding: 16px;
}

.category-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-links a {
  border: 1px solid var(--line-strong);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
}

.category-sidebar {
  display: grid;
  gap: 16px;
  align-content: start;
}

.guide-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.legal-page {
  display: grid;
  gap: 18px;
}

.legal-page section {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
}

.legal-page h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature .feature-body .feature-title a,
.row-title a,
.card-title a {
  color: inherit;
  text-decoration: none;
}

.mini-btn.linklike,
.btn.linklike {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.helper-line {
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  border: 1px dashed var(--line-strong);
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .detail-shell,
  .category-layout,
  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-intro,
  .legal-page,
  .detail-shell,
  .category-hero,
  .editorial-band,
  .related-band,
  .breadcrumbs {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 560px) {
  .page-meta,
  .category-links,
  .action-row {
    flex-direction: column;
  }

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

