/*
* 파일명: bulletin.css
* 경로: /public_html/assets/css/
* 기능: 주보 이미지 열람(보기/목록) 스타일
* 작성일: 2026-06-15
* 수정일: 2026-06-15 (인쇄 템플릿 → 이미지 열람 방식 전환)
*/

/* ===== 보기 페이지 (가로폭 최대 활용) ===== */
.bulletin-wide { max-width: 1400px; }
.bulletin-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2.5rem;
}
.bulletin-img-wrap {
    width: 100%;       /* 컨테이너 가로폭을 꽉 채움 */
    margin: 0;
    text-align: center;
}
.bulletin-img-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.bulletin-img-wrap img {
    width: 100%;
    height: auto;
    cursor: zoom-in;
}

/* ===== 모달 캐러셀 ===== */
#bulletinModal .modal-xl { max-width: 96vw; }
.bulletin-modal-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}
.bulletin-modal-slide img {
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
}
.carousel-caption-fixed {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.85rem;
    padding: 2px 12px;
    border-radius: 999px;
}
#bulletinModal .carousel-control-prev,
#bulletinModal .carousel-control-next { width: 10%; }
#bulletinModal .carousel-control-prev-icon,
#bulletinModal .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.45);
    border-radius: 50%;
    padding: 14px;
    background-size: 50%;
}

/* ===== 목록 카드 썸네일 ===== */
.bulletin-card { overflow: hidden; }
.bulletin-thumb {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f5f7;
    border-bottom: 1px solid #eee;
}
.bulletin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
