/* Archive grid layout */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
}

/* Each item */
.archive-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

/* Date link */
.archive-date a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003b2e;
  text-decoration: none;
}

.archive-date a:hover {
  text-decoration: underline;
}

/* Summary text */
.archive-summary {
  margin-top: 0.25rem;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
}