.gala-history {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 76px;
}

.history-card {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.history-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #191917;
  filter: saturate(.82);
  transition: filter .3s ease, transform .3s ease;
}

.history-card:hover img {
  filter: saturate(1);
  transform: translateY(-3px);
}

.history-copy { padding-top: 22px; }
.history-copy time {
  display: block;
  color: var(--gold);
  font: 12px/1.4 Georgia, serif;
  letter-spacing: 1.4px;
}
.history-copy h3 {
  min-height: 92px;
  margin-top: 14px;
  font: 400 18px/1.65 "Noto Serif SC", "Songti SC", serif;
}
.history-copy p {
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #85847f;
  font-size: 11px;
  line-height: 1.75;
}

.stats-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 76px;
  color: var(--gold);
  font: 10px/1.5 sans-serif;
  letter-spacing: 2.4px;
}
.stats-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}
.stats-heading + .stats { margin-top: 20px; }

.friend-link {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: 32px;
  margin-top: 62px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s, border-color .25s;
}
.friend-link:hover {
  color: var(--gold);
  border-color: #ccaf7f70;
}
.friend-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.friend-copy small {
  color: var(--muted);
  font-size: 11px;
}
.friend-copy strong {
  font: 400 23px/1.5 "Noto Serif SC", "Songti SC", serif;
}
.friend-cta {
  color: var(--gold);
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .gala-history {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 52px;
  }
  .history-card img { aspect-ratio: 16 / 9; }
  .history-copy h3 {
    min-height: 0;
    font-size: 17px;
  }
  .stats-heading { margin-top: 54px; }
  .friend-link {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 44px;
    padding: 24px 0;
  }
  .friend-cta { margin-top: 4px; }
}
