/* What's New / Changelog Page Styles */

.changelog-month-header {
  font-family: var(--theme-font-primary);
  color: var(--theme-primary);
  font-size: 1.4rem;
  font-weight: 600;
}

.changelog-entry {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.changelog-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08) !important;
}

.changelog-icon-wrapper {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(var(--bs-primary-rgb), 0.08);
}

[data-bs-theme="dark"] .changelog-icon-wrapper {
  background-color: rgba(var(--bs-primary-rgb), 0.15);
}

.changelog-highlights {
  padding-left: 1.25rem;
  margin-bottom: 0;
}
.changelog-highlights li {
  color: var(--bs-secondary-color);
  font-size: 0.9rem;
  line-height: 1.6;
}
.changelog-highlights li::marker {
  color: var(--theme-primary);
}

/* Filter buttons */
.changelog-filter.active {
  pointer-events: none;
}
