@media (max-width: 820px) {
  .comparison-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .comparison-table tbody th {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    padding: 11px 14px;
    font-size: 1.05rem;
    letter-spacing: 0;
  }

  .comparison-table td::before {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .comparison-table td:nth-of-type(1)::before { content: "Vera"; }
  .comparison-table td:nth-of-type(2)::before { content: "ChatGPT"; }
  .comparison-table td:nth-of-type(3)::before { content: "Claude"; }
  .comparison-table td:nth-of-type(4)::before { content: "Gemini"; }
  .comparison-table td:nth-of-type(5)::before { content: "Meta AI"; }
  .comparison-table td:nth-of-type(6)::before { content: "Grok"; }

  .comparison-table .vera-column {
    width: auto;
    min-width: 0;
  }

  .comparison-table .vera-column::before { color: white; }
}
