.pengumuman {
  padding: 80px 20px;
  background: var(--light-color);
  margin-top: 4rem;
}

.pengumuman-list {
  max-width: 800px;
  margin: 0 auto;
}

.pengumuman-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  background: var(--glass-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(10, 20, 30, 0.05);
  border-left: 4px solid var(--primary-color);
}

.pengumuman-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  background: linear-gradient(180deg, var(--primary-color), rgba(27, 94, 76, 0.85));
  color: white;
  border-radius: 5px;
  padding: 15px;
}

.pengumuman-date .day {
  font-size: 24px;
  font-weight: bold;
}

.pengumuman-date .month {
  font-size: 12px;
}

.pengumuman-content h3 {
  margin-bottom: 10px;
  color: var(--dark-color);
}

.pengumuman-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}