/* =========================
   Notice Detail – Final
========================= */

.notice-detail {
  max-width: 720px;
  margin: 60px auto;
  padding: 0 24px;
  color: #222;
}

/* 제목 */
.notice-header h1 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.notice-date {
  font-size: 14px;
  color: #9aa0a6;
  margin-bottom: 32px;
}

/* 이미지 */
.notice-image {
  margin: 48px 0 56px;
  text-align: center;
}

.notice-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}


/* 본문 */
.notice-body {
  font-size: 17px;
  line-height: 1.9;
  text-align: justify;
  word-break: keep-all;
  letter-spacing: 0.01em;
  color: #222;     /* 진한 본문 색 */
}

.notice-body p {
  margin-bottom: 1.6em;
}

/* 하단 네비 */
.notice-nav {
  margin-top: 60px;
  text-align: center;
}

.notice-nav a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.notice-nav a:hover {
  text-decoration: underline;
}

/* =========================
   Mobile
========================= */

@media (max-width: 600px) {

  .notice-detail {
    margin: 40px auto;
    padding: 0 16px;
  }

  .notice-header h1 {
    font-size: 20px;
  }
}


