/* ── News Page ─────────────────────────────────────────────── */
/* Mirrors the /speakers/ design: centered cards in the shared home grid. */

.home--news .home-card {
  align-items: center;
  text-align: center;
}

.home--news .home-card__title {
  align-self: center;
  text-align: center;
}

.home--news .home-card__body,
.home--news .home-card__body p {
  text-align: center;
}

/* Outlet logo / thumbnail, centered above the title */
.home-card__thumb {
  width: 48px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Type + date meta line */
.home-card__meta {
  font-size: var(--home-text-size);
  line-height: var(--home-line-height);
  color: #888888;
  margin: 0;
}

.home--news .home-card__body del {
  text-decoration-color: #111111;
}

/* ── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .home-card__thumb {
    width: 44px;
  }
}
