/* =========================================================
   햇바람발전소 공지사항 상세 (헤더/푸터 제외)
   공용 프리미티브(.hb-inner)는 app_www/base/css/style.css 사용.
   반응형: 375px ~ 폴드 펼침 이상
   ========================================================= */

.nd-main {
    color: #222;
    background: #fff;
}

.nd-main * {
    box-sizing: border-box;
}

.nd-main>section {
    padding-left: clamp(20px, 5vw, 80px);
    padding-right: clamp(20px, 5vw, 80px);
}

/* =========================================================
   1. HERO  (min-height + padding, 추후 배경이미지)
   ========================================================= */
.nd-main .nd-hero {
    border-bottom: 1px solid #e6eaec;
    padding: 0;
    background: url(/static/app_www/main/img/cm08177973.jpg) no-repeat center/cover;
}

.nd-hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: clamp(300px, 38vw, 443px);
    padding-top: clamp(56px, 9vw, 90px);
    padding-bottom: clamp(56px, 9vw, 90px);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(40, 50, 55, .3) 0%, rgba(40, 50, 55, 0) 60%);
}

.nd-hero__eyebrow {
    margin-bottom: 12px;
    font-size: clamp(12px, 1.6vw, 13px);
    font-weight: 600;
    letter-spacing: .12em;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .18);
}

.nd-hero__title {
    font-size: clamp(28px, 5.4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .22);
}

/* =========================================================
   2. VIEW (상세 본문)
   ========================================================= */
.nd-view {
    padding-top: clamp(40px, 6vw, 70px);
    padding-bottom: clamp(40px, 6vw, 70px);
    background: #fff;
}

/* 목록으로 버튼 */
.nd-top {
    margin-bottom: clamp(20px, 3vw, 30px);
}

.nd-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 50px;
    padding: 10px 16px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: #00233e;
    border: 1px solid #00233e;
    border-radius: 8px;
    transition: background-color .15s ease, color .15s ease;
}

.nd-back:hover {
    background: #00233e;
    color: #fff;
}

/* 게시글 */
.nd-article {
    border-bottom: 1px solid #e1e1e1;
}

.nd-head {
    padding-bottom: clamp(18px, 2.5vw, 24px);
    border-bottom: 1px solid #d6d6d6;
}

.nd-title {
    font-size: clamp(18px, 2.4vw, 20px);
    font-weight: 600;
    line-height: 1.5;
    color: #222;
}

.nd-meta {
    margin-top: 12px;
}

.nd-date {
    font-size: 14px;
    color: #5e5e5e;
}

/* 본문 */
.nd-body {
    padding: clamp(24px, 4vw, 30px) 0;
}