/* Archive page specific styles */

.archive-card {
  position: sticky;
  top: 1rem;
}

.year-header {
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e6eaf2;
}

.year-header:hover {
  background-color: #f8f9fa;
}

.issue-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.issue-list li {
  padding: 0.25rem 0;
}

.issue-link {
  color: #495057;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.issue-link:hover {
  background-color: #e9ecef;
  padding: 0.25rem 0.5rem;
  color: #0d6efd;
}

.issue-link.active {
  background-color: #0d6efd;
  padding: 0.25rem 0.5rem;
  color: white !important;
}

.issue-link.active:hover {
  background-color: #0b5ed7;
  color: white !important;
  padding: 0.25rem 0.5rem;
}


