#notice-section {
  margin-top: var(--gap-lg);
}

.notice-panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.notice-header {
  padding: var(--gap-md) var(--gap-lg);
  background: linear-gradient(180deg, #FFF8EE 0%, #FFFFFF 100%);
  border-bottom: 2px dashed var(--line);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}
.notice-header h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.notice-list {
  padding: var(--gap-md) var(--gap-lg);
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.notice-item {
  display: flex;
  gap: var(--gap-md);
  align-items: flex-start;
}

.notice-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.notice-mark::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.notice-body {
  flex: 1;
  min-width: 0;
}

.notice-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.notice-desc {
  font-size: 0.84rem;
  color: var(--ink-2);
  line-height: 1.7;
  font-weight: 500;
}
.notice-desc a {
  font-size: 0.82rem;
}

@media (max-width: 600px) {
  .notice-header { padding: var(--gap-sm) var(--gap-md); }
  .notice-header h2 { font-size: 0.94rem; }
  .notice-list { padding: var(--gap-sm) var(--gap-md); gap: var(--gap-sm); }
  .notice-item { gap: var(--gap-sm); }
  .notice-mark { width: 28px; height: 28px; }
  .notice-title { font-size: 0.86rem; }
  .notice-desc { font-size: 0.78rem; }
}
