/* Scoped blog browsing controls. The unfiltered archive works without JavaScript. */
.blog-filters[hidden], .blog-filter-status[hidden], #blog-posts .blog-card[hidden] { display: none !important; }
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid #cfceca;
  border-bottom: 1px solid #cfceca;
}
.blog-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid #cecfca;
  border-radius: 6px;
  background: transparent;
  color: #26393c;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.blog-filter:hover { background: #e0eeed; border-color: #38636a; transform: translateY(-2px); }
.blog-filter[aria-pressed="true"] { background: #142b30; border-color: #142b30; color: #fff; }
.blog-filter[aria-pressed="true"] .filter-count { color: #81deea; }
.filter-count { font-size: .75rem; font-variant-numeric: tabular-nums; opacity: .9; }
.blog-filter:focus-visible, .intent-table-wrap:focus-visible { outline: 3px solid #16717e; outline-offset: 4px; }
.blog-filter-status { margin: 18px 0 28px; color: #536164; font-size: .85rem; }
#blog-posts { position: relative; align-items: stretch; }
#blog-posts .blog-card { min-width: 0; }
.intent-table-wrap { max-width: 100%; overflow-x: auto; margin: 24px 0; border: 1px solid #ccd7d7; border-radius: 8px; }
.intent-table { width: 100%; border-collapse: collapse; min-width: 510px; font-size: .94rem; }
.intent-table caption { padding: 16px; text-align: left; font-weight: 700; background: #e9f1f1; }
.intent-table th, .intent-table td { padding: 15px; border-bottom: 1px solid #d4dede; text-align: left; vertical-align: top; }
.intent-table thead { background: #142b30; color: #fff; }
.intent-table tbody tr:nth-child(even) { background: #f0f5f4; }
.search-intent-post .article-content { min-width: 0; }
.search-intent-post .article-content .intent-table { margin: 0; border: 0; box-shadow: none; border-radius: 0; }
.search-intent-post .intent-table th:first-child { width: 27%; }
.search-intent-post .intent-table thead th { background: #142b30; color: #fff; }
.search-intent-post .intent-table tbody th { background: #e9f1f1; }
@media (max-width: 720px) {
  .blog-filters { gap: 8px; }
  .blog-filter { padding: 10px 12px; font-size: .81rem; gap: 8px; }
  .search-intent-post .author-card-top { display: none; }
  .search-intent-post .intent-table-wrap { border: 0; overflow: visible; }
  .search-intent-post .article-content .intent-table { min-width: 0; width: 100%; }
  .search-intent-post .intent-table caption { display: block; width: 100%; margin-bottom: 16px; border-radius: 8px; }
  .search-intent-post .intent-table tbody th:first-child { display: block; width: 100%; }
  .search-intent-post .intent-table td { width: 100%; white-space: normal; }
  .search-intent-post .intent-table td::before { display: block; margin-bottom: 4px; color: #496368; font-size: .75rem; font-weight: 700; }
  .search-intent-post .intent-table td:nth-child(2)::before { content: "Example query"; }
  .search-intent-post .intent-table td:nth-child(3)::before { content: "What I would build"; }
}
@media (prefers-reduced-motion: reduce) {
  .blog-filter { transition: none; }
  .blog-filter:hover { transform: none; }
}
