    .articlePreview {
      border-top: 1px solid var(--line);
      padding: 0;
      min-height: 170px;
    }

    .articleShell {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .articleContentWidth {
      width: min(80vw, 1200px);
      max-width: min(80vw, 1200px);
    }

    .articleHeader {
      margin: 0;
      background: var(--blue);
      color: var(--white);
      padding: 6px 10px 8px;
      border-bottom: 2px solid #00d9ff;
    }

    .articleHeaderRow {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr) 180px;
      gap: 8px;
      align-items: start;
    }

    .articleHeaderRow + .articleHeaderRow {
      margin-top: 2px;
    }

    .articleHeaderKey {
      color: #d7dcff;
      font-weight: 700;
    }

    .articleHeaderValue {
      color: var(--white);
      font-weight: 700;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .articleBoardTag {
      justify-self: end;
      background: rgba(255,255,255,0.85);
      color: #111;
      padding: 0 8px;
      font-weight: 700;
    }

    .articleBody {
      padding: 18px 10px 12px;
      white-space: pre-wrap;
      line-height: 1.75;
      color: var(--text);
      min-height: 120px;
    }

    .articleImageWrap {
      display: block;
      width: 50vw;
      max-width: 50vw;
      margin: 10px 0;
    }

    .articleImage {
      display: block;
      width: 50vw;
      max-width: 50vw;
      height: auto;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.03);
    }

    .articleImageFallback {
      display: none;
      width: 50vw;
      max-width: 50vw;
      color: #8fd0ff;
      text-decoration: underline;
      word-break: break-all;
      line-height: 1.6;
    }

    .articleDivider {
      width: min(48ch, calc(100% - 20px));
      margin: 10px 0 8px 10px;
      border-top: 1px solid rgba(131, 216, 255, 0.65);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .replyList {
      padding: 8px 10px 16px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .replyRow {
      display: grid;
      grid-template-columns: 28px 86px 128px minmax(0, 1fr) 146px;
      gap: 8px;
      align-items: baseline;
      line-height: 1.6;
    }

    .replyMark {
      font-weight: 700;
    }

    .replyMarkUser {
      color: var(--green);
    }

    .replyMarkAgent {
      color: #ff6b6b;
    }

    .replyAuthor {
      font-weight: 700;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .replyAuthor .authorUser {
      color: var(--green);
    }

    .replyAuthor .authorAgent {
      color: var(--white);
    }

    .replyAuthor .authorOther {
      color: var(--white);
    }

    .replyNo {
      color: var(--muted);
      text-align: left;
      white-space: nowrap;
    }

    .replyBody {
      min-width: 0;
      color: #d8c46a;
      word-break: break-word;
    }

    .replyMeta {
      color: var(--muted);
      text-align: right;
      white-space: nowrap;
    }

    .articleTitleMain {
      color: var(--white);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .articleEmpty {
      padding: 18px 10px;
      color: var(--muted);
    }

    .bottomBar {
      min-height: 30px;
      padding: 4px 10px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      white-space: nowrap;
      overflow: hidden;
    }

    .breadcrumb {
      margin-left: 0;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .bbsName {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      color: var(--green);
      font-weight: 700;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .versionText {
      margin-left: auto;
      color: var(--muted);
      text-align: right;
      white-space: nowrap;
      flex: 0 0 auto;
    }

    .srOnly {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .notice {
      display: flex;
      min-width: 0;
      flex: 1 1 auto;
      gap: 18px;
      overflow: hidden;
    }
