@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
body {
    font-family: 'Noto Sans KR', sans-serif;
}
.active-tab {
    position: relative;
    font-weight: 600;
    color: #111;
}
.active-tab::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-left: -16px;
    margin-top: 6px;
}
.board-item {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}
.board-date {
    color: #6c757d;
    font-size: 0.85rem;
}
.main-menu a {
    transition: color 0.2s, background 0.2s;
}
.main-menu a:hover {
    color: #22c55e !important;
    background-color: #f0fdf4;
}
.news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
/* Hero slider styles */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7.2;
    min-height: 384px;
    max-height: 576px;
    overflow: hidden;
    background: #222;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s, transform 1.2s;
    z-index: 0;
    will-change: transform, opacity;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.08);
    transition: opacity 0.8s, transform 1.2s;
}
.hero-slide:not(.active) {
    transform: scale(1);
}
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
}
.hero-slider-content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
}

#bo_list th, #bo_list td {
  font-size: 1.05rem; /* 원하시는 크기로 조정 */
}

/* 강제: 디버그 콘솔 숨김 (운영에서 노출될 경우 안전장치) */
#debug-console, #debug-messages { display: none !important; }
