/* Testimony list — lifted from the testimonies mockup (.filter-row / .sec / .article-card / .t-thumb). */
.t-filter { padding: 22px 0; border-bottom: 1px solid var(--line); background: #fff; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  background: transparent;
  border: 1px solid transparent;
  color: var(--ink-3);
  padding: 6px 0;
  margin: 0 6px;
  border-radius: 0;
  font: inherit;
  font-size: 13.5px;
  cursor: pointer;
  transition: color 0.15s;
}
.filter-chip:hover { color: var(--accent); }
.filter-chip.on { color: var(--ink); font-weight: 700; }

.sec { padding: 64px 0; }
.t-wrap { max-width: 820px; }
.sec .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.sec .head .eyebrow { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); }
.sec .head .ttl { font-family: var(--serif-fa); font-weight: 500; font-size: 32px; line-height: 1.2; letter-spacing: -0.6px; margin: 8px 0 0; color: var(--ink); }

.articles-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.article-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  text-decoration: none;
  align-items: start;
}
.article-card:hover .a-ttl { color: var(--accent); }
.article-card .a-thumb {
  display: block;
  aspect-ratio: 5 / 7;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 4px 8px rgba(30, 20, 40, 0.10);
}
.article-card .t-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, hsl(var(--hue, 260) 55% 56%) 0%, hsl(var(--hue, 260) 60% 28%) 100%);
  color: #fff;
  position: relative;
}
.article-card .t-thumb:not(.t-thumb--photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 22% 14%, rgba(255, 255, 255, 0.22), transparent 55%);
}
.article-card .t-thumb--photo {
  background: var(--paper-2);
  padding: 0;
}
.article-card .t-thumb--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.t-init {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
[dir="rtl"] .t-init { font-family: var(--serif-fa); font-weight: 700; font-size: 38px; }
.article-card .a-ttl {
  font-family: var(--serif-fa);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.3px;
  transition: color 0.15s;
}
.article-card .a-by { font-size: 12px; color: var(--ink-3); margin: 12px 0 0; }
.article-card[hidden] { display: none; }

@media (max-width: 720px) {
  .article-card { grid-template-columns: 84px 1fr; gap: 16px; }
  .article-card .a-ttl { font-size: 21px; }
  .t-init { font-size: 34px; }
}
