.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
}

.notice-card {
  min-height: 260px;
  padding: var(--space-lg);
  border-radius: 8px;
  background: var(--surface-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.notice-card h3 {
  margin: 12px 0 4px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.notice-meta {
  color: var(--color-text-secondary);
  font-size: 0.86rem;
}

.notice-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-badge-admissions {
  background: #E8F5E9;
  color: #2E7D32;
}

.notice-badge-exam {
  background: #FFF3E0;
  color: #E65100;
}

.notice-badge-sports {
  background: #F3E5F5;
  color: #6A1B9A;
}

.notice-badge-general {
  background: #F5F5F5;
  color: #555555;
}

@media (max-width: 900px) {
  .notice-grid {
    grid-template-columns: 1fr;
  }
}
