.board-faq {}
.board-faq .bf-search {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    line-height: 24px;
    border-bottom: 1px solid #000;
}
.board-faq .bf-search i {
    flex: 0 0 auto;
    font-size: 24px;
    margin-right: 15px;
}
.board-faq .bf-search input[type='text'] {
    width: 100%;
    height: 38px;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    border: 0 none;
}
.board-faq .bf-search button {
    width: 100px;
}
.board-faq .bf-category {
    position: relative;
    padding: 25px 0px;
    white-space: nowrap;
    overflow: auto;
}
.board-faq .bf-category li {
    display: inline-block;
    margin-right: 20px;
}
.board-faq .bf-category li a {
    font-size: 15px;
    color: #000;
}
.board-faq .bf-category li a:hover {
    color: var(--font-color);
}
.board-faq .bf-category li.now a {
    font-weight: bold;
    color: var(--font-color);
}

.board-faq .bf-list {
    position: relative;
    width: 100%;
    border-top: 1px solid rgb(230, 230, 230);
}
.board-faq .bf-list li {
    list-style-type: none;
    border-bottom: 1px solid rgb(230, 230, 230);
}
.board-faq .bf-list li .bfl-tit {
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-height: 60px;
    line-height: 24px;
    padding: 18px 0px;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    border-bottom: 1px solid rgb(230, 230, 230);
}
.board-faq .bf-list li .bfl-tit:hover {
    color: var(--font-color);
}
.board-faq .bf-list li.open .bfl-tit {
    font-weight: bold;
}
.board-faq .bf-list li .bfl-cont {
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 1.5rem;
    background: #f5f9fd;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.board-faq .bf-list li.open .bfl-cont {
    height: auto;
    padding: 1.5rem;
}
.board-faq .bf-list li .bfl-cont .bflc-photo {}
.board-faq .bf-list li .bfl-cont .bflc-photo img {
    max-width: 100%;
}
.board-faq .bf-list li .bfl-cont .bflc-body {
    font-size: 15px;
    color: #000;
}
.board-faq .bf-list li .bfl-cont .bflc-btn {
    margin-top: 20px;
}
.board-faq .bf-list li.nodata {
    position: relative;
    display: block;
    width: 100%;
    padding: 100px 0;
    text-align: center;
    font-family: 'Raleway';
    font-weight: 500;
    letter-spacing: 0;
}
.reply-section {
    margin-left: 20px; /* 대댓글도 같은 정도로 들여쓰기 */
}

.reply-form textarea {
    width: calc(100% - 40px); /* 폼의 너비를 적절히 조절 */
    margin-bottom: 10px;
}

.reply-form button {
    margin-left: 10px;
}

@media (min-width: 992px) {
}

@media (max-width: 992px) {
}

@media (max-width: 520px) {
    .board-event.view-form .vf-body .vfb-photo {
        width: 100%;
    }
}

.table-list {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #000; /* 테두리 스타일과 색상 지정 */
}

.table-list th, .table-list td {
    border: 1px solid #000; /* 테두리 스타일과 색상 지정 */
    padding: 8px;
    text-align: left;
}
