/* offerings-grid */
.abc-offerings-grid {
  display: grid;
  /* auto-fit — see leadership-grid for the reasoning. */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}
.abc-offering-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
/* 7a: the detail-link anchor wraps the image + body and must grow so the
   foot (price + Register), now a sibling of the anchor, stays pinned to the
   bottom of the card. */
.abc-offering-card > .abc-card-link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.abc-offering-foot { padding: 0 var(--s-4) var(--s-4); }
.abc-offering-img { aspect-ratio: 16 / 9; background: var(--bg-sunken); }
.abc-offering-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.abc-offering-body {
  padding: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-2);
  flex: 1 1 auto;
}
.abc-offering-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-h5); margin: 0; line-height: var(--lh-tight);
}
.abc-offering-meta {
  font-family: var(--font-mono); font-size: var(--fs-xs);
  color: var(--fg-subtle); margin: 0;
}
.abc-offering-summary {
  font-family: var(--font-body); font-size: var(--fs-sm);
  color: var(--fg-muted); margin: 0;
}
.abc-offering-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: var(--s-3);
}
.abc-offering-price {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h5); color: var(--accent-deep);
}
