/* concretus v8.0 — extracted from monolith unchanged (시각 언어 보존) */
    :root {
      --white: #ffffff;
      --paper: #f2f2f0;
      --ink: #050505;
      --gray-1: #111111;
      --gray-2: #444444;
      --gray-3: #767676;
      --gray-4: #d7d7d2;
      --gray-5: #eeeeea;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      letter-spacing: 0;
    }

    body.opening-active {
      overflow: hidden;
    }

    body.opening-active main {
      display: none;
    }

    .opening-page {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: grid;
      place-items: center;
      background: var(--paper);
      isolation: isolate;
      contain: layout paint;
      transition: opacity 420ms ease, visibility 420ms ease;
    }

    .opening-page.is-closed {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .opening-field {
      position: relative;
      display: grid;
      place-items: center;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      background: var(--paper);
    }

    .opening-logo {
      position: relative;
      display: grid;
      place-items: center;
      gap: 5px;
      transform: translateY(-20px);
    }

    .opening-logo .title-wrap {
      position: relative;
      z-index: 3;
      padding-right: 28px;
    }

    .opening-logo h1 {
      font-size: clamp(42px, 8vw, 108px);
    }

    .opening-logo .title-letter {
      --amp: 16px;
      --tilt: 1deg;
      --spread: 0px;
      animation-name: openingLetterWaveSettle;
      animation-duration: 60s;
      animation-timing-function: linear;
      animation-fill-mode: forwards;
    }

    .opening-logo .title-letter:nth-child(1) { --amp: 18px; --tilt: -1.8deg; --spread: -4px; animation-delay: 0s; }
    .opening-logo .title-letter:nth-child(2) { --amp: -16px; --tilt: 1.45deg; --spread: -3px; animation-delay: .12s; }
    .opening-logo .title-letter:nth-child(3) { --amp: 20px; --tilt: -1.25deg; --spread: -2px; animation-delay: .24s; }
    .opening-logo .title-letter:nth-child(4) { --amp: -18px; --tilt: 1.7deg; --spread: -1px; animation-delay: .36s; }
    .opening-logo .title-letter:nth-child(5) { --amp: 15px; --tilt: -1.1deg; --spread: 0px; animation-delay: .48s; }
    .opening-logo .title-letter:nth-child(6) { --amp: -20px; --tilt: 1.35deg; --spread: 1px; animation-delay: .6s; }
    .opening-logo .title-letter:nth-child(7) { --amp: 17px; --tilt: -1.55deg; --spread: 2px; animation-delay: .72s; }
    .opening-logo .title-letter:nth-child(8) { --amp: -15px; --tilt: 1.15deg; --spread: 3px; animation-delay: .84s; }
    .opening-logo .title-letter:nth-child(9) { --amp: 19px; --tilt: -1.4deg; --spread: 4px; animation-delay: .96s; }

    .opening-logo .title-particles {
      inset: -72px -92px -58px -76px;
    }

    .opening-logo .title-particles i {
      border-radius: 50%;
      clip-path: none;
      opacity: 0;
      animation-name: openingGrainGather;
      animation-duration: 24s;
      animation-timing-function: cubic-bezier(.34, 0, .18, 1);
      animation-iteration-count: infinite;
      animation-delay: 0s;
      will-change: transform, opacity;
      mix-blend-mode: normal;
    }

    .opening-korean {
      position: relative;
      z-index: 3;
      margin: 0;
      color: var(--gray-1);
      font-size: clamp(15px, 1.9vw, 24px);
      font-weight: 900;
      line-height: 1.1;
      white-space: nowrap;
    }

    .opening-enter {
      position: absolute;
      left: 50%;
      top: calc(50% + clamp(64px, 8.4vw, 98px));
      z-index: 5;
      transform: translate(-50%, 10px);
      opacity: 0;
      pointer-events: none;
      min-width: 148px;
      filter: blur(9px);
      background: var(--white);
      color: var(--ink);
      border-color: var(--ink);
      box-shadow: 4px 4px 0 rgba(5,5,5,0.18);
      transition: opacity 1800ms ease, transform 1800ms ease, filter 1800ms ease;
    }

    .opening-page.is-ready .opening-enter {
      opacity: 1;
      transform: translate(-50%, 0);
      filter: blur(0);
      pointer-events: auto;
    }

    main {
      position: relative;
      width: min(1440px, calc(100vw - 32px));
      margin: 0 auto;
      padding: 24px 0 40px;
    }

    html:fullscreen {
      background: var(--paper);
    }

    html:fullscreen body {
      overflow: auto;
      overscroll-behavior: none;
      overscroll-behavior-y: none;
    }

    header {
      padding-bottom: 18px;
      border-bottom: 4px solid var(--ink);
    }

    .title-wrap {
      position: relative;
      display: inline-block;
      overflow: visible;
      padding-right: 28px;
    }

    .brand-line {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .title-credit {
      position: relative;
      z-index: 3;
      display: none;
      align-items: center;
      margin-bottom: 6px;
      color: var(--gray-2);
      font-size: 11px;
      line-height: 1;
      font-weight: 950;
      text-transform: uppercase;
      white-space: nowrap;
    }

    h1 {
      position: relative;
      z-index: 2;
      margin: 0;
      font-size: clamp(30px, 5vw, 72px);
      line-height: 0.98;
      font-weight: 900;
      text-transform: uppercase;
    }

    .title-letter {
      display: inline-block;
      animation: titleMicroDrift 2.9s ease-in-out infinite;
      animation-delay: calc(var(--i) * -0.23s);
    }

    .title-particles {
      position: absolute;
      inset: -18px -38px -10px -22px;
      z-index: 1;
      pointer-events: none;
    }

    .title-particles i {
      position: absolute;
      left: var(--x);
      top: var(--y);
      width: var(--s);
      height: var(--s);
      border-radius: 50%;
      background: var(--ink);
      opacity: 0.34;
      box-shadow: 0 0 0 1px rgba(5, 5, 5, 0.08);
      transform: translate(var(--sx), var(--sy)) scale(0.5);
      animation: titleGrainGather 3.8s cubic-bezier(.42, 0, .22, 1) infinite;
      animation-delay: var(--d);
    }

    @keyframes titleMicroDrift {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      20% { transform: translate(1.1px, -0.9px) rotate(-0.42deg); }
      45% { transform: translate(-0.8px, 0.7px) rotate(0.34deg); }
      72% { transform: translate(0.55px, 0.9px) rotate(-0.18deg); }
    }

    @keyframes openingTitleDrift {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      18% { transform: translate(2.9px, -2.2px) rotate(-0.72deg); }
      44% { transform: translate(-2.3px, 1.8px) rotate(0.58deg); }
      71% { transform: translate(1.7px, 2.4px) rotate(-0.36deg); }
    }

    @keyframes openingLetterWaveSettle {
      0% { transform: translateX(var(--spread)) translateY(0) rotate(0deg); }
      5% { transform: translateX(calc(var(--spread) * 0.96)) translateY(var(--amp)) rotate(var(--tilt)); }
      10% { transform: translateX(calc(var(--spread) * 0.9)) translateY(calc(var(--amp) * -0.82)) rotate(calc(var(--tilt) * -0.78)); }
      16% { transform: translateX(calc(var(--spread) * 0.82)) translateY(calc(var(--amp) * 0.72)) rotate(calc(var(--tilt) * 0.62)); }
      23% { transform: translateX(calc(var(--spread) * 0.7)) translateY(calc(var(--amp) * -0.58)) rotate(calc(var(--tilt) * -0.48)); }
      31% { transform: translateX(calc(var(--spread) * 0.56)) translateY(calc(var(--amp) * 0.44)) rotate(calc(var(--tilt) * 0.34)); }
      40% { transform: translateX(calc(var(--spread) * 0.42)) translateY(calc(var(--amp) * -0.31)) rotate(calc(var(--tilt) * -0.24)); }
      50% { transform: translateX(calc(var(--spread) * 0.29)) translateY(calc(var(--amp) * 0.21)) rotate(calc(var(--tilt) * 0.16)); }
      61% { transform: translateX(calc(var(--spread) * 0.18)) translateY(calc(var(--amp) * -0.13)) rotate(calc(var(--tilt) * -0.1)); }
      73% { transform: translateX(calc(var(--spread) * 0.09)) translateY(calc(var(--amp) * 0.07)) rotate(calc(var(--tilt) * 0.05)); }
      86% { transform: translateX(calc(var(--spread) * 0.03)) translateY(calc(var(--amp) * -0.025)) rotate(calc(var(--tilt) * -0.02)); }
      100% { transform: translateX(0) translateY(0) rotate(0deg); }
    }

    @keyframes titleGrainGather {
      0% { opacity: 0.02; transform: translate(var(--sx), var(--sy)) scale(0.38); }
      18% { opacity: 0.42; }
      48% { opacity: 0.62; transform: translate(0, 0) scale(1.18); }
      76% { opacity: 0.3; transform: translate(0, 0) scale(0.42); }
      100% { opacity: 0; transform: translate(0, 0) scale(0.04); }
    }

    @keyframes openingGrainGather {
      0% {
        opacity: 0;
        transform: translate(var(--sx), var(--sy)) rotate(var(--rot, 0deg)) scale(0.42);
      }
      4% { opacity: var(--op, 0.46); }
      22% {
        opacity: var(--op, 0.46);
        transform: translate(0, 0) rotate(0deg) scale(1.22);
      }
      78% {
        opacity: var(--op, 0.46);
        transform: translate(0, 0) rotate(0deg) scale(1);
      }
      94% {
        opacity: 0.08;
        transform: translate(0, 0) rotate(0deg) scale(0.72);
      }
      100% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg) scale(0.05);
      }
    }

    .subtitle {
      margin: 10px 0 0;
      max-width: 880px;
      color: var(--gray-2);
      font-size: 15px;
      line-height: 1.65;
      font-weight: 700;
    }

    .subtitle span {
      display: block;
    }

    .mobile-label {
      display: none;
    }

    .mobile-value {
      display: none;
    }

    .actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-start;
      margin-top: 10px;
    }

    button {
      min-height: 42px;
      padding: 0 15px;
      border: 3px solid var(--ink);
      border-radius: 0;
      background: var(--ink);
      color: var(--white);
      font: inherit;
      font-weight: 900;
      cursor: pointer;
      box-shadow: 4px 4px 0 var(--gray-3);
    }

    button.secondary {
      background: var(--white);
      color: var(--ink);
    }

    button:disabled {
      cursor: not-allowed;
      opacity: 0.5;
      box-shadow: none;
    }

    .layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      margin-top: 14px;
      padding-bottom: 18px;
      border-bottom: 3px solid var(--ink);
      align-items: start;
    }

    .panel {
      background: var(--white);
      border: 3px solid var(--ink);
      padding: 12px;
    }

    .control-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(420px, .9fr);
      gap: 12px;
      align-items: stretch;
      position: static;
    }

    .seed-panel {
      border-bottom: 3px solid var(--ink);
    }

    .rule-panel {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 0;
    }

    .rule-section {
      min-width: 0;
      padding: 11px 12px;
    }

    .rule-section + .rule-section {
      border-left: 2px solid var(--ink);
    }

    label {
      display: block;
      margin-bottom: 7px;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .small-label {
      margin-top: 10px;
      margin-bottom: 5px;
      font-size: 10px;
      color: var(--gray-2);
    }

    input,
    textarea {
      width: 100%;
      border: 3px solid var(--ink);
      padding: 14px 12px;
      border-radius: 0;
      background: var(--white);
      color: var(--ink);
      font: inherit;
      font-size: 26px;
      font-weight: 900;
    }

    textarea {
      min-height: 112px;
      resize: vertical;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 800;
    }

    input[type="file"] {
      padding: 8px;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 800;
    }

    .note {
      margin: 6px 0 0;
      color: var(--gray-2);
      font-size: 11px;
      line-height: 1.42;
      font-weight: 700;
    }

    .rule-section strong {
      display: block;
      font-size: 12px;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .meta {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 6px;
      margin-bottom: 8px;
      width: 100%;
    }

    .metric {
      min-height: 48px;
      border: 2px solid var(--ink);
      background: var(--white);
      padding: 6px;
    }

    .metric strong {
      display: block;
      font-size: 15px;
      line-height: 1.05;
      font-weight: 900;
      word-break: break-word;
    }

    .metric span {
      display: block;
      margin-top: 4px;
      color: var(--gray-2);
      font-size: 8.5px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .metric.is-empty {
      background: var(--gray-5);
    }

    .canvas-panel {
      min-width: 0;
      width: 100%;
    }

    .svg-shell {
      position: relative;
      overflow: auto;
      background: var(--white);
      border: 0;
      width: 100%;
    }

    .microscope-badge {
      position: absolute;
      right: 10px;
      bottom: 10px;
      z-index: 6;
      min-width: 132px;
      border: 3px solid var(--ink);
      background: rgba(255, 255, 255, 0.92);
      padding: 4px 5px;
      box-shadow: 2px 2px 0 var(--gray-3);
      display: grid;
      grid-template-columns: auto auto;
      grid-template-rows: auto auto;
      align-items: center;
      column-gap: 7px;
      text-align: left;
      pointer-events: auto;
    }

    .microscope-badge strong {
      display: block;
      font-size: 12.5px;
      line-height: 1;
      font-weight: 900;
    }

    .microscope-badge span {
      display: block;
      margin-top: 2px;
      color: var(--gray-2);
      font-size: 7.4px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .microscope-reset {
      grid-column: 2;
      grid-row: 1 / span 2;
      justify-self: end;
      margin-top: 0;
      min-height: 0;
      display: inline-flex;
      align-items: center;
      padding: 5px 8px;
      border: 2px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      box-shadow: none;
      font-size: 10.5px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .top-control-bar {
      position: absolute;
      top: 12px;
      right: 0;
      z-index: 50;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      max-width: min(720px, calc(100vw - 32px));
    }

    .fullscreen-control {
      position: static;
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 8px;
      height: 36px;
      background: rgba(255, 255, 255, 0.88);
      border: 2px solid var(--ink);
      padding: 5px;
      box-shadow: 2px 2px 0 var(--gray-3);
    }

    .music-control {
      position: static;
      flex: 1 1 300px;
      width: clamp(238px, 30vw, 338px);
      min-width: 238px;
      max-width: 338px;
      height: 36px;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.94);
      border: 2px solid var(--ink);
      padding: 4px 7px;
      box-shadow: 2px 2px 0 var(--gray-3);
      overflow: hidden;
    }

    .music-toggle {
      flex: 0 0 42px;
      min-height: 0;
      width: 42px;
      height: 24px;
      padding: 0;
      border-width: 2px;
      background: var(--ink);
      color: var(--white);
      box-shadow: none;
      font-size: 10px;
      line-height: 1;
      letter-spacing: 0;
    }

    .music-toggle.is-on {
      background: var(--white);
      color: var(--ink);
      box-shadow: inset 0 0 0 2px var(--ink);
    }

    .music-title {
      flex: 1 1 auto;
      overflow: hidden;
      min-width: 0;
      white-space: nowrap;
      color: var(--ink);
      font-size: 10px;
      font-weight: 900;
      line-height: 1;
    }

    .music-title span {
      display: inline-block;
      padding-left: 100%;
      animation: musicTitleMove 14s linear infinite;
    }

    .music-volume {
      flex: 0 0 92px;
      display: block;
      width: 92px;
      min-width: 92px;
      accent-color: var(--ink);
    }

    @keyframes musicTitleMove {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }

    .fullscreen-credit {
      padding: 0 4px;
      color: var(--ink);
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .instagram-link {
      position: relative;
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      color: var(--ink);
      text-decoration: none;
    }

    .instagram-link::before {
      content: "";
      width: 17px;
      height: 17px;
      border: 2px solid currentColor;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .instagram-link::after {
      content: "";
      position: absolute;
      width: 6px;
      height: 6px;
      border: 2px solid currentColor;
      border-radius: 50%;
      box-sizing: border-box;
    }

    .instagram-link span {
      position: absolute;
      right: 4px;
      top: 4px;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: currentColor;
    }

    .fullscreen-btn {
      min-height: 0;
      padding: 5px 7px;
      border-width: 2px;
      background: var(--white);
      box-shadow: none;
      font-size: 10px;
      line-height: 1;
      letter-spacing: 0;
    }

    .fullscreen-btn.is-active {
      background: var(--ink);
      color: var(--white);
    }

    .fullscreen-control button,
    .decision-actions button {
      width: auto;
    }

    svg {
      display: block;
      width: 100%;
      min-width: 840px;
      height: auto;
      background: #fff;
      cursor: grab;
    }

    svg:active { cursor: grabbing; }

    #slabSvg {
      min-width: 0;
      height: clamp(420px, 52vh, 560px);
    }

    .slab {
      fill: #eeeeee;
      stroke: #050505;
      stroke-width: 3;
    }

    .link {
      stroke: #050505;
      stroke-opacity: 0.16;
      stroke-linecap: round;
    }

    .node {
      fill: #050505;
      stroke: #fff;
      stroke-width: 2;
    }

    .seed {
      fill: #fff;
      stroke: #050505;
      stroke-width: 4;
    }

    .label {
      font-family: "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
      fill: #050505;
      font-size: 13px;
      font-weight: 900;
      paint-order: stroke;
      stroke: #fff;
      stroke-width: 4;
    }

    .seed-label {
      font-size: 20px;
      stroke-width: 5;
    }

    .small-text {
      fill: #444;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .status {
      margin-top: 12px;
      min-height: 46px;
      border-left: 8px solid var(--ink);
      padding: 10px 12px;
      background: var(--white);
      font-weight: 800;
      line-height: 1.45;
    }

    .recommendations {
      margin-top: 12px;
      background: var(--white);
      border: 3px solid var(--ink);
      padding: 12px;
    }

    .recommendations:empty {
      display: none;
    }

    .recommendations h2 {
      margin: 0 0 10px;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .term-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .term-chip {
      border: 2px solid var(--ink);
      padding: 6px 8px;
      font-size: 12px;
      font-weight: 900;
      background: var(--gray-5);
      color: var(--ink);
      box-shadow: none;
      min-height: 0;
      cursor: pointer;
    }

    .seed-entry-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
      align-items: stretch;
    }

    .seed-entry-row .side-actions {
      display: grid;
      grid-template-columns: repeat(3, minmax(82px, 1fr));
      gap: 6px;
      margin-top: 0;
    }

    .seed-entry-row .side-actions button {
      min-width: 0;
      padding: 0 8px;
      font-size: 12px;
      white-space: nowrap;
    }

    .decision-modal {
      position: fixed;
      inset: 0;
      z-index: 360;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(242, 242, 240, 0.72);
      backdrop-filter: blur(4px);
    }

    .decision-modal[hidden] {
      display: none;
    }

    .decision-dialog {
      width: min(520px, calc(100vw - 40px));
      border: 4px solid var(--ink);
      background: var(--white);
      padding: 22px;
      box-shadow: 10px 10px 0 var(--gray-3);
    }

    .decision-modal.warning .decision-dialog {
      width: min(620px, calc(100vw - 40px));
      border-width: 6px;
      border-color: var(--white);
      background: var(--ink);
      color: var(--white);
      box-shadow: 12px 12px 0 rgba(5, 5, 5, 0.42);
      text-align: center;
    }

    .decision-modal.warning.warning-icon-only .decision-dialog {
      width: min(260px, calc(100vw - 56px));
      min-height: 220px;
      display: grid;
      place-items: center;
      padding: 24px;
      border: 0;
      background: rgba(5, 5, 5, 0.96);
      box-shadow: 0 0 0 2px var(--white), 12px 12px 0 rgba(5, 5, 5, 0.34);
    }

    .decision-modal.warning .decision-dialog strong {
      font-size: clamp(34px, 6vw, 64px);
      color: var(--white);
      background: transparent;
      display: inline-block;
      padding: 0;
      margin: 0 auto 18px;
      letter-spacing: 0;
    }

    .decision-modal.warning.warning-icon-only .decision-dialog strong {
      margin: 0;
      line-height: 1;
    }

    .decision-modal.warning.warning-icon-only .decision-dialog p,
    .decision-modal.warning.warning-icon-only .decision-actions {
      display: none;
    }

    .decision-modal.warning .decision-dialog p {
      font-size: 28px;
      line-height: 1.25;
      color: var(--white);
    }

    .decision-modal.warning .decision-actions button {
      border-color: var(--white);
      box-shadow: 5px 5px 0 rgba(255,255,255,0.28);
    }

    .decision-modal.warning .decision-actions .secondary {
      background: var(--ink);
      color: var(--white);
    }

    .warning-symbol {
      display: inline-grid;
      place-items: center;
      margin: 0;
      width: 118px;
      height: 104px;
      border: 0;
      clip-path: polygon(50% 0, 100% 100%, 0 100%);
      background: var(--white);
      color: var(--ink);
      font-size: 64px;
      line-height: 1;
      font-weight: 900;
      text-align: center;
      box-shadow: none;
      cursor: pointer;
      transform: translateY(-2px);
      transition: transform 160ms ease, background 160ms ease, color 160ms ease;
    }

    .warning-symbol:hover,
    .warning-symbol:focus-visible {
      transform: translateY(-2px) scale(1.06);
      outline: none;
      background: var(--gray-5);
    }

    .warning-symbol span {
      transform: translateY(18px);
      display: block;
    }

    .decision-dialog strong {
      display: block;
      font-size: 15px;
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .decision-dialog p {
      margin: 0;
      font-size: 24px;
      line-height: 1.35;
      font-weight: 900;
      word-break: keep-all;
    }

    .decision-dialog .decision-word {
      display: inline-block;
      border-bottom: 4px solid var(--ink);
    }

    .cv-dialog {
      width: min(720px, calc(100vw - 40px));
      max-height: calc(100vh - 56px);
      overflow: auto;
    }

    .cv-dialog p {
      font-size: 22px;
      margin-bottom: 18px;
    }

    .cv-list {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 15px;
      line-height: 1.45;
      font-weight: 800;
    }

    .cv-list li {
      border-top: 2px solid var(--ink);
      padding-top: 8px;
    }

    .cv-list a {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .cv-section {
      border-top: 3px solid var(--ink);
      padding-top: 10px;
      margin-top: 12px;
    }

    .cv-section h3 {
      margin: 0 0 7px;
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
    }

    .decision-actions {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 20px;
    }

    table {
      width: 100%;
      min-width: 760px;
      border-collapse: collapse;
      font-size: 11.5px;
    }

    th, td {
      border-bottom: 2px solid var(--ink);
      padding: 7px 6px;
      text-align: left;
      vertical-align: top;
    }

    th {
      background: var(--gray-5);
      font-size: 9.5px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .table-more-row td {
      text-align: center;
      background: #f8f8f6;
    }

    .table-more-btn {
      min-height: 0;
      width: auto;
      padding: 5px 14px;
      border-width: 2px;
      box-shadow: 2px 2px 0 var(--gray-3);
      font-size: 11px;
      line-height: 1;
      letter-spacing: 0;
    }

    .table-wrap {
      margin-top: 18px;
      overflow-x: auto;
    }

    .block-board {
      margin-top: 14px;
    }

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

    .block-head h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .block-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .block-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
    }

    .block-card {
      position: relative;
      border: 3px solid var(--ink);
      background: var(--white);
      padding: 10px;
      cursor: pointer;
      transition: transform 120ms ease, box-shadow 120ms ease;
    }

    .block-card:hover,
    .block-card.is-active {
      transform: translate(-2px, -2px);
      box-shadow: 4px 4px 0 var(--gray-3);
    }

    .block-card.is-active {
      background: var(--gray-5);
    }

    .block-card.is-selected {
      background: var(--gray-5);
      box-shadow: inset 0 0 0 2px var(--ink);
    }

    .block-card.is-selected::before {
      content: "";
      position: absolute;
      top: 7px;
      left: 7px;
      z-index: 4;
      width: 10px;
      height: 10px;
      background: var(--ink);
      box-shadow: 0 0 0 2px var(--white);
      pointer-events: none;
    }

    .block-card.is-active.is-selected {
      box-shadow: 4px 4px 0 var(--gray-3), inset 0 0 0 2px var(--ink);
    }

    .block-preview {
      aspect-ratio: 1 / 0.72;
      border: 2px solid var(--ink);
      overflow: hidden;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .block-preview svg {
      min-width: 0;
      width: 100%;
      height: 100%;
      cursor: default;
    }

    .block-meta {
      display: grid;
      gap: 3px;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 900;
      line-height: 1.35;
    }

    .block-meta strong {
      font-size: 18px;
      line-height: 1.05;
    }

    .block-remove-btn {
      position: absolute;
      right: 5px;
      top: 5px;
      z-index: 4;
      width: 22px;
      height: 22px;
      min-height: 22px;
      padding: 0;
      border-width: 2px;
      border-radius: 50%;
      background: var(--white);
      color: var(--ink);
      box-shadow: 1px 1px 0 var(--gray-3);
      font-size: 14px;
      line-height: 1;
      font-weight: 950;
      display: none;
    }

    .block-card-actions {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .block-card-actions button {
      min-height: 30px;
      padding: 0 8px;
      border-width: 2px;
      box-shadow: 2px 2px 0 var(--gray-3);
      font-size: 11px;
    }

    .empty-blocks {
      border: 3px dashed var(--ink);
      padding: 18px;
      background: var(--gray-5);
      font-size: 13px;
      font-weight: 900;
    }

    .comparison-ground {
      margin-top: 14px;
      border-top: 3px solid var(--ink);
      padding-top: 12px;
    }

    .comparison-head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: end;
      margin-bottom: 8px;
    }

    .comparison-head h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .comparison-head .note {
      margin: 4px 0 0;
      max-width: 760px;
    }

    .comparison-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: flex-end;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .comparison-legend span {
      border: 2px solid var(--ink);
      padding: 4px 6px;
      background: var(--gray-5);
    }

    .comparison-tools {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: flex-end;
      margin-top: 6px;
    }

    .comparison-tools button {
      min-height: 32px;
      padding: 0 9px;
      border-width: 2px;
      font-size: 11px;
      box-shadow: 3px 3px 0 var(--gray-3);
    }

    .comparison-shell {
      border: 3px solid var(--ink);
      background: var(--white);
      overflow: auto;
    }

    .comparison-svg {
      min-width: 920px;
      width: 100%;
      height: auto;
      cursor: grab;
      touch-action: none;
    }

    .comparison-svg:active {
      cursor: grabbing;
    }

    .comparison-item {
      cursor: move;
    }

    .comparison-item .ground-outline {
      transition: opacity 120ms ease;
    }

    .comparison-item.is-active .ground-outline {
      opacity: 1;
      fill: #d8d3c6;
    }

    .rotation-handle {
      cursor: grab;
    }

    .rotation-handle:active {
      cursor: grabbing;
    }

    .rotation-handle ellipse {
      fill: none;
      stroke: var(--ink);
      stroke-width: 2.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .rotation-handle .rotate-dot {
      fill: var(--ink);
      stroke: var(--white);
      stroke-width: 1.9;
    }

    .site-footer {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 4px solid var(--ink);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: end;
    }

    .site-footer strong {
      display: block;
      font-size: clamp(24px, 3vw, 42px);
      line-height: .92;
      font-weight: 950;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .site-footer p {
      margin: 7px 0 0;
      max-width: 760px;
      color: var(--gray-2);
      font-size: 11px;
      line-height: 1.45;
      font-weight: 850;
    }

    .footer-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 6px;
      max-width: 760px;
    }

    .footer-meta a,
    .footer-meta span,
    .footer-meta button {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      border: 2px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      padding: 5px 8px;
      box-shadow: 2px 2px 0 var(--gray-3);
      font-size: 11px;
      font-weight: 950;
      line-height: 1;
      text-decoration: none;
      text-transform: uppercase;
      white-space: nowrap;
      font-family: inherit;
      cursor: pointer;
    }

    .footer-meta a:hover,
    .footer-meta button:hover {
      background: var(--ink);
      color: var(--white);
    }

    .footer-meta button {
      text-transform: none;
    }

    .footer-meta .footer-hint {
      color: var(--gray-2);
      font-size: 10px;
      text-transform: none;
    }

    .footer-meta .footer-version {
      background: var(--ink);
      color: var(--white);
    }

    .footer-mark-wrap {
      grid-column: 1 / -1;
      width: 100%;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(5, 5, 5, .28);
      display: flex;
      justify-content: center;
    }

    .footer-mark {
      width: 90px;
      height: 90px;
      object-fit: contain;
      display: block;
    }

    @media (max-width: 980px) {
      header, .layout { grid-template-columns: 1fr; }
      .actions { justify-content: flex-start; }
      .control-panel {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
        position: static;
      }
      .meta { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    @media (max-width: 1180px) {
      .top-control-bar {
        position: static;
        max-width: none;
        margin: 0 0 12px auto;
        flex-wrap: wrap;
        align-items: center;
      }

      .music-control {
        flex: 1 1 280px;
        width: auto;
        max-width: 420px;
      }
    }

    @media (max-width: 700px) {
      html,
      body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
      }

      main {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 8px 10px 28px;
        overflow-x: hidden;
      }

      header,
      .layout,
      .control-panel,
      .canvas-panel,
      .panel,
      .block-board,
      .table-wrap,
      .site-footer,
      .svg-shell,
      .comparison-ground,
      .comparison-shell {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      header {
        gap: 8px;
        margin-bottom: 8px;
        padding-top: 24px;
        padding-bottom: 12px;
        border-bottom-width: 3px;
      }

      h1 {
        font-size: clamp(38px, 14vw, 58px);
      }

      .title-wrap {
        max-width: 100%;
        min-width: 0;
        padding-right: 8px;
      }

      .brand-line {
        position: relative;
        display: flex;
        align-items: flex-end;
        gap: 6px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      .title-credit {
        display: inline-flex;
        position: static;
        flex: 1 1 auto;
        min-width: 0;
        margin: 0 0 1px 0;
        font-size: 8px;
        color: var(--gray-1);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .subtitle {
        max-width: none;
        font-size: 9.5px;
        line-height: 1.34;
      }

      .subtitle span + span {
        margin-top: 3px;
      }

      .layout {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        padding-bottom: 12px;
        border-bottom-width: 2px;
      }

      .control-panel {
        display: block;
      }

      .panel {
        padding: 10px;
        border-width: 2px;
      }

      .seed-panel {
        border-bottom: 2px solid var(--ink);
      }

      label {
        margin-bottom: 5px;
        font-size: 10.5px;
      }

      .seed-panel label {
        display: flex;
        align-items: baseline;
        gap: 6px;
        white-space: nowrap;
      }

      .seed-panel label::after {
        content: "공개 언어 소스를 자동 채굴합니다";
        color: var(--gray-2);
        font-size: 8px;
        font-weight: 800;
        text-transform: none;
      }

      input {
        min-height: 48px;
        padding: 10px;
        border-width: 2px;
        font-size: 20px;
      }

      textarea {
        min-height: 86px;
        border-width: 2px;
        font-size: 14px;
      }

      button {
        min-height: 34px;
        border-width: 2px;
        box-shadow: 2px 2px 0 var(--gray-3);
        font-size: 11px;
      }

      .note {
        font-size: 10px;
        line-height: 1.34;
      }

      .rule-panel {
        display: none;
      }

      .side-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        margin-top: 8px;
      }

      .side-actions button {
        width: 100%;
        min-height: 32px;
        padding: 0 7px;
        font-size: 11px;
      }

      .seed-entry-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, auto);
        gap: 6px;
        width: 100%;
        min-width: 0;
      }

      .seed-entry-row .side-actions {
        margin-top: 0;
        grid-template-columns: repeat(3, minmax(42px, 50px));
        gap: 4px;
        min-width: 0;
      }

      .seed-entry-row .side-actions button {
        min-height: 48px;
        padding: 0 3px;
        font-size: 9.5px;
      }

      .seed-note,
      .corpus-status {
        display: none;
      }

      .seed-panel::after {
        content: none;
      }

      .svg-shell {
        overflow: hidden;
        max-height: none;
        border: 2px solid var(--ink);
      }

      #slabSvg {
        min-width: 0;
        width: 100%;
        min-height: 360px;
        height: min(58vh, 500px);
        touch-action: none;
      }

      .meta {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 3px;
      }

      .metric {
        min-height: 28px;
        padding: 3px 2px;
        border-width: 2px;
      }

      .metric-language,
      .metric-knowledge {
        display: none;
      }

      .metric strong {
        font-size: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .metric span {
        margin-top: 2px;
        font-size: 5.6px;
      }

      .desktop-value {
        display: none;
      }

      .mobile-value {
        display: inline;
      }

      .top-control-bar {
        position: absolute;
        top: 7px;
        right: 10px;
        z-index: 70;
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 4px;
        justify-content: flex-end;
        max-width: none;
        margin: 0;
      }

      .music-control {
        order: 2;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        min-width: 0;
        height: 30px;
        padding: 0;
        gap: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
      }

      .fullscreen-control {
        order: 1;
        display: none;
      }

      .top-control-bar .instagram-link,
      .top-control-bar .fullscreen-btn,
      .top-control-bar .music-toggle {
        flex: 0 0 25px;
        width: 25px;
        height: 24px;
        min-height: 24px;
        padding: 0;
        display: inline-grid;
        place-items: center;
        box-sizing: border-box;
      }

      .fullscreen-credit {
        display: none;
      }

      .fullscreen-btn {
        min-height: 24px;
        height: 24px;
        width: 25px;
        padding: 0;
        font-size: 8px;
        box-shadow: 2px 2px 0 var(--gray-3);
      }

      .instagram-link {
        width: 25px;
        height: 24px;
        border: 2px solid var(--ink);
        background: rgba(255, 255, 255, .94);
        box-shadow: 2px 2px 0 var(--gray-3);
      }

      .instagram-link::before {
        width: 14px;
        height: 14px;
        border-width: 2px;
        border-radius: 4px;
      }

      .instagram-link::after {
        width: 5px;
        height: 5px;
        border-width: 1.7px;
      }

      .instagram-link span {
        right: 6px;
        top: 6px;
        width: 2.5px;
        height: 2.5px;
      }

      .music-title,
      .music-volume,
      .fullscreen-btn#fullscreenBtn {
        display: none;
      }

      .music-toggle {
        position: relative;
        flex: 0 0 30px;
        width: 30px;
        height: 26px;
        min-height: 26px;
        padding: 0;
        border-width: 2px;
        background: rgba(255, 255, 255, .94);
        color: var(--ink);
        box-shadow: 2px 2px 0 var(--gray-3);
        font-size: 0;
      }

      .music-toggle::before {
        content: "";
        position: absolute;
        left: 5px;
        top: 8px;
        width: 14px;
        height: 10px;
        background: currentColor;
        clip-path: polygon(0 32%, 35% 32%, 70% 0, 70% 100%, 35% 68%, 0 68%);
      }

      .music-toggle::after {
        content: none;
      }

      .music-toggle.is-on {
        background: var(--ink);
        color: var(--white);
        box-shadow: 2px 2px 0 var(--gray-3);
      }

      .status,
      .recommendations {
        margin-top: 10px;
        border-width: 2px;
        font-size: 10px;
        line-height: 1.36;
      }

      .recommendations {
        padding: 5px 7px;
        min-height: 34px;
        overflow: hidden;
      }

      .recommendations:not(:empty) {
        display: flex;
        align-items: center;
        gap: 0;
      }

      .recommendations h2 {
        margin: 0 8px 0 0;
        font-size: 10px;
        white-space: nowrap;
      }

      .desktop-label {
        display: none;
      }

      .mobile-label {
        display: inline;
      }

      .term-list {
        flex-wrap: nowrap;
        gap: 5px;
        min-width: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .term-list::-webkit-scrollbar {
        display: none;
      }

      .term-chip {
        padding: 3px 5px;
        font-size: 10px;
        line-height: 1;
        white-space: nowrap;
      }

      .block-board,
      .table-wrap {
        margin-top: 12px;
      }

      .block-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
      }

      .block-head h2 {
        font-size: 14px;
      }

      .block-head .note,
      .comparison-head .note {
        display: none;
      }

      .block-actions {
        justify-content: flex-end;
        flex-wrap: nowrap;
      }

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

      .block-card {
        border-width: 2px;
        padding: 5px;
      }

      .block-preview {
        border-width: 1.5px;
      }

      .block-meta {
        font-size: 7px;
        line-height: 1.14;
        gap: 1px;
      }

      .block-meta strong {
        font-size: 10px;
      }

      .block-remove-btn {
        display: inline-grid;
        place-items: center;
        right: 3px;
        top: 3px;
        width: 18px;
        height: 18px;
        min-height: 18px;
        font-size: 12px;
      }

      .block-card-actions {
        display: none;
      }

      .empty-blocks {
        display: none;
      }

      .block-actions button {
        width: 102px;
        min-height: 24px;
        padding: 0 6px;
        font-size: 8.5px;
        white-space: nowrap;
      }

      .comparison-legend,
      .comparison-tools {
        display: none;
      }

      .comparison-shell {
        overflow: hidden;
      }

      .comparison-svg {
        min-width: 0;
        height: 196px;
      }

      .table-wrap {
        max-height: none;
        overflow: visible;
      }

      table {
        display: block;
        width: 100%;
        min-width: 0;
        font-size: 9px;
        line-height: 1.16;
      }

      table thead {
        display: none;
      }

      table tbody {
        display: grid;
        gap: 6px;
        width: 100%;
      }

      table tr {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px 8px;
        width: 100%;
        padding: 5px;
        border: 2px solid var(--ink);
        background: var(--white);
        box-sizing: border-box;
      }

      td {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 4px;
        align-items: baseline;
        min-width: 0;
        padding: 2px 0;
        border: 0;
        font-size: 8.2px;
        line-height: 1.18;
        word-break: break-word;
      }

      td::before {
        content: attr(data-label);
        color: var(--gray-2);
        font-size: 6.4px;
        line-height: 1;
        font-weight: 900;
        text-transform: uppercase;
      }

      td[data-label="word"] {
        grid-column: 1 / -1;
        grid-template-columns: 42px minmax(0, 1fr);
        font-size: 10.4px;
        font-weight: 900;
      }

      .table-more-row {
        display: block;
        padding: 6px;
        border: 2px solid var(--ink);
        background: #f8f8f6;
      }

      .table-more-row td {
        display: block;
        padding: 0;
        text-align: center;
      }

      .table-more-row td::before {
        content: none;
      }

      .table-more-btn {
        display: inline-grid;
        place-items: center;
        width: min(120px, 60vw);
        min-height: 26px;
        padding: 0 10px;
        font-size: 11px;
      }

      .site-footer {
        display: block;
        margin-top: 12px;
        padding-top: 10px;
        border-top-width: 3px;
      }

      .site-footer > div:first-child {
        display: block;
        margin-bottom: 7px;
      }

      .site-footer strong {
        font-size: 14px;
        line-height: 1;
      }

      .site-footer p {
        margin-top: 3px;
        max-width: none;
        font-size: 7.4px;
        line-height: 1.28;
      }

      .footer-meta {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 4px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .footer-meta::-webkit-scrollbar {
        display: none;
      }

      .footer-anticraft {
        display: none;
      }

      .footer-meta a,
      .footer-meta span,
      .footer-meta button {
        min-height: 21px;
        padding: 3px 4px;
        font-size: 6.8px;
        white-space: nowrap;
      }

      .footer-meta .footer-hint {
        font-size: 6.5px;
        color: var(--gray-2);
        text-transform: none;
      }

      .footer-mark-wrap {
        display: none;
      }

    }

    @media (max-width: 560px) {
      main { width: 100%; }
      .meta { grid-template-columns: repeat(6, minmax(0, 1fr)); }
      .side-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .comparison-head {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .block-head {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
      }

      .block-actions {
        justify-content: flex-end;
      }

      button { width: auto; }
      .side-actions button { width: 100%; }
      .seed-entry-row .side-actions { grid-template-columns: repeat(3, 50px); }

      .fullscreen-control {
        gap: 5px;
      }

      .footer-meta {
        display: flex;
        flex-wrap: nowrap;
        gap: 3px;
        width: 100%;
        overflow: hidden;
      }

      .footer-meta a,
      .footer-meta span,
      .footer-meta button {
        justify-content: center;
        white-space: nowrap;
        text-align: center;
      }

      .microscope-badge {
        right: 6px;
        bottom: 6px;
        min-width: 112px;
        transform: scale(.92);
        transform-origin: right bottom;
      }
    }

    @media (max-width: 420px) {
      .seed-entry-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .seed-entry-row .side-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
      }

      .seed-entry-row .side-actions button {
        min-height: 36px;
        font-size: 9.5px;
      }
    }


/* v3.0 논문 창 */
.paper-dialog {
  width: min(720px, calc(100vw - 40px));
  max-height: calc(100vh - 56px);
  overflow: auto;
}

.paper-intro {
  margin: 0 0 16px;
  padding: 10px 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
  opacity: 1;
  word-break: keep-all;
}

.paper-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--ink);
  list-style: none;
}

.paper-card {
  display: grid;
  gap: 6px;
  padding: 13px 0;
  border-bottom: 3px solid var(--ink);
  background: transparent;
}

.paper-card:hover {
  background: rgba(5, 5, 5, 0.035);
}

.paper-title {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
  text-decoration: none;
  word-break: keep-all;
}

.paper-title:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.paper-meta {
  font-size: 11px;
  line-height: 1.25;
  font-weight: 900;
  opacity: .72;
}

.paper-desc {
  margin-top: 1px;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 800;
  opacity: .82;
  word-break: keep-all;
}
