/* Shared article tables: clear comparisons without squeezing columns together. */
.article-content .blog-table-block {
  margin: 26px 0 32px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}
.article-content .blog-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--moss) var(--panel);
}
.article-content .blog-table-scroll:focus-visible {
  outline: 2px solid var(--aurora);
  outline-offset: -3px;
  border-radius: 12px;
}
.article-content table.blog-table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 1rem;
  line-height: 1.55;
}
.article-content .blog-table th,
.article-content .blog-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.article-content .blog-table thead th {
  background: #123322;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 600;
  border-bottom-color: var(--line-strong);
}
.article-content .blog-table thead th:first-child { width: 28%; }
.article-content .blog-table thead th:nth-child(2) { width: 32%; }
.article-content .blog-table th + th,
.article-content .blog-table th + td,
.article-content .blog-table td + td {
  border-left: 1px solid var(--line);
}
.article-content .blog-table tbody th {
  color: var(--off-white);
  font-weight: 600;
}
.article-content .blog-table tbody td { color: #c2cfc6; }
.article-content .blog-table tbody tr:nth-child(even) { background: rgba(167,184,173,0.035); }
.article-content .blog-table tbody tr:hover { background: rgba(49,242,139,0.045); }
.article-content .blog-table tbody tr:last-child > * { border-bottom: 0; }
.article-content .blog-table code { font-size: 0.86em; white-space: normal; }
.article-content .blog-table-hint {
  display: none;
  margin: 0;
  padding: 11px 16px;
  border-top: 1px solid var(--line);
  color: var(--grey-green);
  font-size: 0.8rem;
}
@media (max-width: 720px) {
  .article-content .blog-table th,
  .article-content .blog-table td { padding: 15px 17px; }
  .article-content table.blog-table { font-size: 0.94rem; }
  .article-content .blog-table-hint { display: block; }
}
