.admission-notice {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 10px 15px;
  text-align: center;
  width: 100%;
}

.notice-line1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.new-badge {
  display: inline-block;
  background: #FF6600;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  animation: pulse 1.4s infinite;
}

.notice-headline {
  color: #CC0033;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.notice-line2 {
  color: #0924ed;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.notice-line2:hover {
  text-decoration: underline;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1);   opacity: 1; }
}