/* Aktiviti terkini di muka depan: gambar di kiri, ringkasan di kanan. */
.records .container {
  max-width: 1100px;
}
.records .report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
.records .report-card {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
  align-items: stretch;
}
.records .report-card > a {
  display: block;
  min-width: 0;
  height: 100%;
  max-height: 340px;
  overflow: hidden;
}
.records .report-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 340px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.records .report-card-body {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
  align-self: center;
  overflow-wrap: anywhere;
}
.records .report-card--no-image {
  grid-template-columns: 1fr;
}
@media (max-width: 700px) {
  .records .report-card {
    grid-template-columns: 1fr;
  }
  .records .report-card > a,
  .records .report-card img {
    height: auto;
    max-height: none;
  }
  .records .report-card img {
    aspect-ratio: 16 / 10;
  }
  .records .report-card-body {
    padding: 24px;
  }
}
