/* Article tables: readable on desktop, scrollable on narrow screens */
.blog-article .article-table-wrap {
  margin: 32px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e4e4df;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.blog-article .article-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  background: #fff;
}
.blog-article .article-table th,
.blog-article .article-table td {
  padding: 16px 18px;
  vertical-align: top;
  text-align: left;
  line-height: 1.55;
  font-size: 15px;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  border-right: 1px solid #ecece7;
  border-bottom: 1px solid #ecece7;
}
.blog-article .article-table th {
  font-weight: 600;
  background: #f5f5f1;
}
.blog-article .article-table tbody tr:nth-child(even) td {
  background: #fbfbf8;
}
.blog-article .article-table th:last-child,
.blog-article .article-table td:last-child {
  border-right: 0;
}
.blog-article .article-table tbody tr:last-child td {
  border-bottom: 0;
}
.blog-article .article-table td:first-child {
  min-width: 150px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .blog-article .article-table-wrap { margin: 24px 0; border-radius: 8px; }
  .blog-article .article-table { min-width: 640px; }
  .blog-article .article-table th,
  .blog-article .article-table td { padding: 13px 14px; font-size: 14px; line-height: 1.5; }
}
