.yearly-archive .inner {
  padding: 2rem;
  border-radius: 1.6rem;
  background-color: var(--light-green);
}
.yearly-archive--year-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 5rem;
}
.yearly-archive--year-item {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  opacity: 1;
  transition: color 0.3s;
}
.yearly-archive--year-item:hover {
  opacity: 0.7;
}
.yearly-archive--year-item.current {
  opacity: 0.7;
}

.archive--item {
  padding: 2rem 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2rem;
  transition: background-color 0.3s ease;
  border-radius: 1.6rem;
}
@media (max-width: 768px) {
  .archive--item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.archive--item:hover {
  background-color: var(--light-green);
}
.archive--thumbnail {
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .archive--thumbnail {
    width: 80%;
  }
}
.archive--details h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
}
.archive--details time {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  display: inline-block;
}
.archive .nav-links {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.archive .page-numbers {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--light-cerulean);
  display: inline-flex;
  align-items: center;
  opacity: 0.5;
  transition: color 0.3s;
}
.archive .page-numbers:hover {
  color: var(--cerulean);
  opacity: 1;
}
.archive .page-numbers.current {
  color: var(--cerulean);
  opacity: 1;
}