@charset "utf-8";

/* ========================================================= */
/* 1. 기본 설정 및 테마 변수 (Base & Variables)              */
/* ========================================================= */
#bd {
    /* 색상 테마 설정 */
    --bd-primary: #111;       /* 메인 색상 (검정) */
    --bd-text: #222;          /* 본문 텍스트 */
    --bd-gray: #888;          /* 보조 텍스트 (날짜 등) */
    --bd-border: #eee;        /* 연한 테두리 */
    --bd-bg-light: #f9f9f9;   /* 연한 배경 */

    /* 기본 폰트 설정 */
    font-size: 16px;
    color: var(--bd-text);
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
}

#bd * { box-sizing: border-box; }
#bd a { text-decoration: none; color: inherit; transition: all 0.2s; }
#bd ul, #bd li { list-style: none; padding: 0; margin: 0; }
#bd img { border: 0; vertical-align: middle; }

/* 레이아웃 컨테이너: 모든 페이지 공통 최상위 */
#bd .board-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%; /* 추가 */
}

/* 게시판 타이틀: 위치 강제 통일 */
#bd .board-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--bd-primary);
    margin: 60px 0 30px 0;
    letter-spacing: -1px;
    text-align: left; /* 왼쪽 정렬 강제 */
}

/* 게시판 타이틀: 위치 강제 통일 */
#bd .view-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--bd-gray);
    margin: 60px 0 30px 0;
    letter-spacing: -1px;
    text-align: left; /* 왼쪽 정렬 강제 */
}


/* ========================================================= */
/* 2. 갤러리 리스트 그리드 (Gallery Grid)                    */
/* ========================================================= */

/* 그리드 레이아웃 정의 */
#bd .gallery-list {
    display: grid;
    /* 3단 배열 (화면 꽉 차게 1:1:1 비율) */
    grid-template-columns: repeat(3, 1fr);
    /* 간격: 상하 50px, 좌우 24px */
    gap: 50px 24px;
    margin-bottom: 80px;
}

/* 데이터 없음 (No Data) */
#bd .no-data {
    grid-column: 1 / -1; /* 전체 가로폭 차지 */
    text-align: center;
    padding: 120px 0;
    color: #999;
    border-top: 1px solid var(--bd-border);
    border-bottom: 1px solid var(--bd-border);
    font-size: 16px;
}


/* ========================================================= */
/* 3. 갤러리 아이템 카드 디자인 (Card Item)                  */
/* ========================================================= */

#bd .gallery-item {
    position: relative;
    transition: transform 0.3s ease;
}

/* 마우스 올렸을 때 살짝 떠오르는 효과 */
#bd .gallery-item:hover {
    transform: translateY(-8px);
}

#bd .g-link {
    display: block;
    height: 100%;
}

/* (1) 상단 카테고리 텍스트 */
#bd .g-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* (2) 썸네일 영역 (이미지 보류용 회색 박스 포함) */
#bd .g-thumb {
    width: 100%;
    position: relative;
    /* 4:3 비율 고정 (높이를 너비의 75%로 설정) */
    padding-top: 75%;
    background-color: #f4f4f4;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 2px; /* 아주 살짝 둥글게 */
}

/* 회색 플레이스홀더 (이미지 없을 때) */
#bd .g-thumb-placeholder {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #e0e0e0;
    transition: background-color 0.3s;
}

#bd .gallery-item:hover .g-thumb-placeholder {
    background-color: #d0d0d0; /* 호버 시 약간 진하게 */
}

/* 실제 이미지 (나중에 사용 시) */
#bd .g-thumb img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
#bd .gallery-item:hover .g-thumb img {
    transform: scale(1.05); /* 호버 시 이미지 확대 */
}


/* (3) 정보 영역 (제목/날짜) */
#bd .g-info {
    padding-right: 10px;
}

#bd .g-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bd-primary);
    line-height: 1.4;
    margin-bottom: 10px;
    word-break: keep-all; /* 한글 단어 끊김 방지 */

    /* 긴 제목 2줄 말줄임표(...) 처리 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#bd .g-date {
    font-size: 15px;
    color: var(--bd-gray);
    font-weight: 400;
}

/* 아이콘들 */
#bd .icon-secret { color: #aaa; margin-right: 6px; font-size: 14px; }
#bd .icon-new {
    font-size: 10px; color: #e74c3c; margin-left: 6px;
    font-weight: 800; vertical-align: top;
}


/* ========================================================= */
/* 4. 페이지네이션 (Pagination)                              */
/* ========================================================= */
#bd .pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}

#bd .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    color: #999;
    font-size: 15px;
    border-radius: 4px;
}

#bd .page-link:hover {
    background-color: #f5f5f5;
    color: #333;
}

#bd .page-link.active {
    background-color: var(--bd-primary);
    color: #fff;
    font-weight: 700;
}


/* ========================================================= */
/* 5. 버튼 (Buttons)                                         */
/* ========================================================= */
#bd .list-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

#bd .btn-board {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0; /* 각진 버튼 */
    cursor: pointer;
    transition: opacity 0.2s;
}

#bd .btn-dark {
    background-color: var(--bd-primary);
    color: #fff;
    border: none;
}
#bd .btn-dark:hover {
    opacity: 0.85;
}


/* ========================================================= */
/* 6. 반응형 미디어 쿼리 (Responsive)                        */
/* ========================================================= */

/* 태블릿 (폭 1024px 이하) */
@media (max-width: 1024px) {
    #bd .gallery-list {
        grid-template-columns: repeat(2, 1fr); /* 2단 배열 */
        gap: 40px 20px;
    }
    #bd .board-title { font-size: 32px; margin: 40px 0; }
}

/* 모바일 (폭 768px 이하) */
@media (max-width: 768px) {
    #bd .gallery-list {
        grid-template-columns: 1fr; /* 1단 배열 */
        gap: 50px;
    }

    #bd .g-title { font-size: 22px; } /* 모바일에서 제목 더 크게 */

    /* 버튼 꽉 차게 */
    #bd .list-actions { width: 100%; }
    #bd .btn-board { width: 100%; }
}

/* ========================================================= */
/* 갤러리 상세 보기 (View)                                   */
/* ========================================================= */

#bd .gallery-view {
    /* padding: 100px 0 100px;  <-- 삭제 */
    /* max-width: 960px;        <-- 삭제 */
    /* margin: 0 auto;          <-- 삭제 */
    width: 100%;
}

/* [추가] 본문 중앙 정렬용 공통 클래스 (View & Write 본문용) */
#bd .inner-content-wrapper {
    max-width: 960px;
    margin: 0 auto;    /* 가운데 정렬 */
    padding-bottom: 100px;
}

/* 1. 헤더 (제목 + 연도) */
#bd .gv-header {
    margin-bottom: 60px;
    border-bottom: 1px solid var(--bd-primary); /* 제목 하단 굵은 선 */
    padding-bottom: 30px;
}

#bd .gv-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--bd-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

#bd .gv-date {
    font-size: 17px;
    color: var(--bd-gray);
    font-weight: 600;
}


/* 2. 이미지 및 본문 */
#bd .gv-content {
    margin-bottom: 80px;
}

/* 이미지 스타일 수정됨 */
#bd .gv-images {
    margin-bottom: 50px;
    text-align: center;
}

#bd .gv-images img {

    max-width: 100%;
    width: 100%;


    /* 블록 요소로 변경하여 margin auto 적용 가능하게 함 */
    display: block;

    /* 중앙 정렬 및 하단 여백 */
    margin: 0 auto 40px;
}

/* 에디터 본문 */
#bd .post-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--bd-text);
}


/* 3. 하단 기능 버튼 (수정/삭제/목록) */
#bd .gv-actions {
    display: flex;
    justify-content: flex-end; /* 우측 정렬 */
    margin-bottom: 50px;
    font-size: 14px;
    color: #999;
}

#bd .gv-actions .btn-text {
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0 5px;
    font-size: 14px;
}
#bd .gv-actions .btn-text:hover { color: #111; text-decoration: underline; }
#bd .gv-actions .sep { margin: 0 5px; color: #ddd; }


/* ========================================================= */
/* 4. 이전글 / 다음글 (Original Board Style)                 */
/* ========================================================= */

#bd .view-footer-list {
    border-top: 1px solid var(--bd-border);
    margin-top: 20px;
}

#bd .footer-item {
    display: flex;
    align-items: center;
    padding: 20px 10px;
    border-bottom: 1px solid var(--bd-border);
    color: var(--bd-text);
    transition: background 0.2s;
    text-decoration: none; /* 링크 밑줄 제거 */
}
#bd .footer-item:hover {
    background-color: var(--bd-bg-light);
}

#bd .footer-item .f-date {
    width: 120px;
    color: var(--bd-gray);
    font-size: 14px;
    flex-shrink: 0;
}
#bd .footer-item .f-title {
    flex: 1;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#bd .footer-item .f-icon {
    width: 30px;
    text-align: right;
    color: var(--bd-gray);
    font-size: 13px;
}

/* 모바일 반응형 (네비게이션) */
@media (max-width: 768px) {
    #bd .footer-item .f-date { display: none; } /* 모바일에서 날짜 숨김 */
    #bd .gv-title { font-size: 26px; }
}


/* ========================================================= */
/* 게시글 쓰기 (Write) - #bd .write                          */
/* ========================================================= */

#bd .write {
    padding-bottom: 60px;
}


#bd .form-group {
    margin-bottom: 30px;
}

/* 가로 배치 (작성자/비밀번호 등) */
#bd .form-row {
    display: flex;
    gap: 20px;
}
#bd .form-col {
    flex: 1;
}

/* 2. 라벨 & 입력창 */
#bd label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--bd-text);
}

/* 필수항목 표시 (*) */
#bd .label-required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
    font-weight: 700;
}

/* 입력창 공통 디자인 */
#bd .input-board {
    width: 100%;
    padding: 14px 15px;
    font-size: 15px;
    border: 1px solid var(--bd-border);
    border-radius: 4px;
    background-color: #fff;
    transition: 0.2s;
    outline: none;
    color: var(--bd-text);
}

/* 포커스 시 테마 색상 적용 */
#bd .input-board:focus {
    border-color: var(--bd-primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05); /* 미세한 그림자 */
}

/* 에러 메시지 박스 */
#bd .error-msg {
    background-color: #fff5f5;
    color: #e74c3c;
    padding: 15px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #ffcccc;
    line-height: 1.5;
}

/* 3. 에디터 컨테이너 */
#bd .editor-container {
    border: 1px solid var(--bd-border);
    border-radius: 4px;
    overflow: hidden; /* 에디터 툴바 둥글게 처리 */
}
/* 에디터 내부 이미지 반응형 강제 */
#bd .editor-container img {
    max-width: 100% !important;
    height: auto !important;
}


/* 6. 비밀글 체크박스 */
#bd .checkbox-group {
    margin-top: 10px;
}
#bd .check-label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    user-select: none;
}
#bd .check-label input {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--bd-primary); /* 체크 시 테마 색상 */
    cursor: pointer;
}
#bd .check-text {
    font-size: 15px;
    color: var(--bd-text);
}

/* 7. 하단 버튼 액션 */
#bd .form-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    border-top: 1px solid var(--bd-border);
    padding-top: 40px;
}
#bd .form-actions .btn-board {
    min-width: 140px; /* 버튼 너비 확보 */
    height: 50px;
    font-size: 16px;
}

/* 취소 버튼 (흰색 배경) */
#bd .btn-light {
    background-color: #fff;
    border: 1px solid var(--bd-border);
    color: #666;
}
#bd .btn-light:hover {
    background-color: #f9f9f9;
    border-color: #ccc;
    color: #333;
}

/* ========================================================= */
/* 모바일 반응형 (max-width: 768px)                          */
/* ========================================================= */
@media (max-width: 768px) {
    #bd .form-row {
        flex-direction: column; /* 가로 배치를 세로로 */
        gap: 0;
    }

    #bd .form-actions .btn-board {
        flex: 1; /* 버튼 꽉 차게 */
    }
}
