/* ✅ 공지사항 UI */
#notice_container {
  max-width: 100%;
  margin: 24px auto 24px;
  padding: 16px 20px;
  border: 1px solid #ffe58f;
  background: #fffbe6;
  /* border-radius: 10px; */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  position: relative;
}

#notice_container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  /* border-top-left-radius: 10px;
  border-bottom-left-radius: 10px; */
  background: linear-gradient(180deg, #ffb300, #ff7a00);
}

#notice_container::before {
  content: "공지";
  position: absolute;
  top: -12px;
  left: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #ff9900;
  padding: 3px 10px;
  /* border-radius: 6px; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

#noticeBar__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 800;
  color: #2b2b2b;
  margin-bottom: 6px;
  line-height: 1.3;
  text-wrap: balance;
}

#noticeBar__title::before {
  content: "📢";
  font-size: 20px;
  line-height: 1;
}

#noticeBar__content__text {
  font-size: clamp(12px, 2.5vw, 16px);
  line-height: 1.65;
  color: #333;
  word-break: keep-all;
}
#noticeBar__content__text a {
  text-decoration: underline;
  font-weight: 600;
}
