/* ========================================
   Notice Page Styles
   ======================================== */

.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-6);
  color: var(--text-color);
  letter-spacing: var(--tracking-tight);
}

.notice-content {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.notice-content h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--text-color);
  margin-bottom: var(--space-4);
  border-bottom: 2px solid var(--primary-500);
  padding-bottom: var(--space-2);
}

.notice-content p {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
}

.notice-content ul {
  color: var(--text-secondary);
  margin-left: var(--space-6);
  margin-bottom: var(--space-4);
  list-style: disc;
}

.notice-content li {
  margin-bottom: var(--space-2);
  line-height: var(--leading-loose);
}

.notice-content .notice-sublist {
  margin-top: var(--space-2);
  margin-left: var(--space-4);
  list-style: none;
}

.notice-content .notice-sublist li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-link {
  color: var(--primary-600);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: var(--text-2xl);
  }

  .notice-content {
    padding: var(--space-6);
  }

  .notice-content h3 {
    font-size: var(--text-lg);
  }
}
