/* =============================================
   updates.css — styles for updates.html
   ============================================= */

.updates-title-section {
  text-align: center;
}

.updates-title-section h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.updates-subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* the log container */
.updates-log {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* each date group */
.update-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  align-items: baseline;
}

.update-entry:last-child {
  border-bottom: none;
}

.update-entry-date {
  font-size: 0.82rem;
  font-weight: bold;
  opacity: 0.55;
  margin: 0;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.update-entry ul {
  margin: 0;
  padding-left: 1.2rem;
}

.update-entry li {
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.85;
}

@media (max-width: 500px) {
  .update-entry {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}