@charset "UTF-8";

.archives {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
  background: #000;
  color: #eee;
  font-family: sans-serif;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 50px;
  text-align: center;
}

.archive-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.archive-card {
  display: block;
  background: #111;
  border-radius: 12px;
  width: 280px;
  color: #eee;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.archive-card:hover {
  background: #222;
  transform: translateY(-4px);
}

.card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.archive-card h2 {
  font-size: 1.6rem;
  margin: 16px 16px 4px;
  color: #ffcc00;
}

.archive-card p {
  margin: 0 16px 16px;
  font-size: 1rem;
  color: #ccc;
}
