body {
    word-break: keep-all;
}

/* 레이아웃 */

.container {
    /* max-width: 1890px !important; */
    max-width: 1720px !important;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #111;
}

.col-3._left {
    width: 22.5%;
}

.col-9._right {
    width: 77.5%;
}

/* 숨김 */

#header-navbar {
    /* display: none; */
    border-bottom: 0 solid #eee;
    background-color: rgba(0, 0, 0, .3)
}

/* 메뉴 */

.site-nav > ul > li > a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

/* 사이드바 */

.order-2 .na-menu {
    padding: 10px 0 !important;
    /* border: 1px solid #eee; */
    border-radius: 20px;
}

.order-2 .na-menu .nav-vertical a img {
    width: 279px;
}

.order-2 #sidebar-site-menu a.nav-link {
    /* font-family: "Bebas Neue", sans-serif; */
    font-weight: 500;
    font-size: 20px;
    color: #999;
    letter-spacing: -0.5px;
}

.order-2 #sidebar-site-menu .active a.nav-link {
    color: #333;
}

.order-2 #sidebar-site-menu a.nav-link:hover {
    text-decoration: underline !important;
}

.order-2 .na-menu .nav-vertical.nav-pills .nav-link {
    padding: 1px 0 !important;
    margin-bottom: 0rem; 
}

/* 게시판 */

#bo_list .ratio {
    border-radius: 0;
}

.card {
    overflow: hidden;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    border-radius: 20px;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 1;
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    text-align: center;
}

.card:hover .card-content {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0); /* 투명하게 */
}

.card .card-title {
    /* position: absolute;
    top: 4%;
    transform: translate(0, 0); */
    font-size: 30px;
    font-weight: 700;
}

.card .card-dec {
    /* position: absolute;
    top: 12%;
    transform: translate(0, 0);
    font-size: 14px;
    font-weight: normal;
    color: #a6a6a6; */
    font-size: 20px;
}

.card:hover .card-title,
.card:hover .card-dec {
    opacity: 0;
}

/* 페이징 */

a.page-link {
    border-radius: 999px !important;
}

/* 공통 */

#bo_list .row>* {
    margin-top: 8px !important;
    padding-right: 4px !important;
    padding-left: 4px !important;
}

/* */

.page-title {
    background-color: transparent !important;
}

.page-title h2 {
    font-size: 50px !important;
    font-weight: 700;
}

._txt {
    font-size: 20px;
    font-weight: 600;
}

/* category */

#bo_category .nav {
    gap: 14px;
}

#bo_category .nav-item .nav-link {
    padding: 5px 20px !important;
    /* background-color: #F1F1F1; */
    border: 1px solid #000;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

#bo_category .nav-item .nav-link.active {
    border: 1px solid #4478CE;
    background-color: #4478CE;
    color: #fff;
}