.termin-table {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /*background-color: #c6cebd;*/
  margin-bottom: 20px;
}

.termin-row {
  display: grid;
  grid-template-columns: 90px 200px 1fr 3fr;
  gap: 1rem;
  padding: 0.8rem;
  border-bottom: 1px solid #ddd;
  align-items: start;
}

.termin-row:hover {
  background: #f7f7f7;
}



.termin-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

.termin-date {
  font-weight: bold;
  white-space: nowrap;
}

.termin-title a {
  font-weight: 600;
  text-decoration: none;
  color: #1a1a1a;
}

.termin-title a:hover {
  text-decoration: underline;
}

.termin-desc {
  color: #555;
  font-size: 0.95rem;
}


@media (max-width: 979px) {
  .termin-row {
    grid-template-columns: 1fr;
  }

  .termin-date {
    color: #666;
    font-size: 0.9rem;
  }
}