/* Article-listing titles were h3-sized (bold 20px). In the 3-column card grid
 * the cards are narrow, so a long headline wrapped to seven or eight lines and
 * dominated the card, and cards ended up wildly different heights (founder
 * 2026-09-06, viewing the Xã hội / Hoạt động archives: "too big and
 * inconsistent"). Bring the title down, tighten the leading, and clamp long
 * headlines to three lines so the cards line up. Own file so theme.css stays on
 * its own track; loaded after it, so this wins by order. */
.archive-card__title { font-size: 16px; line-height: 1.3; }
@media (min-width: 768px) {
  .archive-card__title { font-size: 16.5px; }
}
/* Clamp long headlines to keep cards a consistent height. */
.archive-card__title a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
