/* custom board.css */
.tui-grid-header-area, .tui-grid-border-line-top {
    border: none !important;
}

.tui-grid-layer-focus {
    display: none;
}

.board-header {
    padding: 12px 20px 20px;
    background: var(--white, #FFF);
}

.board-header .border-bottom {
    border-bottom: 1px solid var(--border-light-gray, #EEE);
}

.board-header .container {
    display: flex;
    align-items: center;
    padding: 0;
    gap: 12px;
}

.board-header .container .back-button {
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("../img/icon/ic_back_arrow.svg");
}

.board-header .container .board-title {
    color: #121212;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px; /* 150% */
    letter-spacing: -0.4px;
    margin: 0;
}

.board-list-page .container {
    padding: 0;
}

/* skin1 (notice 공지사항 목록) */
.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell {
    background-color: var(--white);
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-row-odd {
    height: initial !important;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell-content {
    padding: 12px 20px;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column .title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column .title-wrap .title {
    overflow: hidden;
    color: var(--font-black);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.32px;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column .title-wrap .label {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
    border-radius: 6px;
    background: var(--font-gray);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column .title-wrap .label.notice {
    background: var(--blue-read);
}

.board-list-page.board-skin-1 .tui-grid-table .tui-grid-cell .format-column .date {
    overflow: hidden;
    color: var(--font-light-gray);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
}

/* skin1 (notice 공지사항 상세) */
.board-upsert-page.board-skin-1 .board-body {
    padding: 0 20px;
}

.board-upsert-page.board-skin-1 .board-body .detail-title {
    padding: 12px 4px;
    border-bottom: 1px solid var(--divider-light-gray);
}

.board-upsert-page.board-skin-1 .board-body .detail-title .title {
    font-size: 16px;
    color: var(--font-black);
    margin-bottom: 4px;
}

.board-upsert-page.board-skin-1 .board-body .detail-title .date {
    font-size: 12px;
    color: var(--font-light-gray);
}

.board-upsert-page.board-skin-1 .board-body .detail-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.board-upsert-page.board-skin-1 .board-body .detail-content .detail-image {
    border-radius: 6px;
    background-size: cover;
    background-repeat: no-repeat;
}

.board-upsert-page.board-skin-1 .board-body .detail-content .detail-image img {
    display: block;
    margin: 0 auto;
}

.board-upsert-page.board-skin-1 .board-body .detail-content p {
    margin-bottom: initial;
}


/* skin2 (visa 신청목록) */
.board-list-page.board-skin-2 .grid {
    padding: 12px 16px;
    background: var(--primary-light-gray);
}

.board-list-page.board-skin-2 .grid .tui-grid-table {
    border-collapse: collapse;
}

.board-list-page.board-skin-2 .grid .tui-grid-table td {
    background: var(--primary-light-gray);
    border: none;
}

.board-list-page.board-skin-2 .grid .tui-grid-table tr {
    border-bottom: 8px solid var(--primary-light-gray);
}

.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content {
    padding: 0;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label {
    width: min-content;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--status-progress-bg);
    color: var(--primary-light-blue);
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.22px;
}

/* 비자 상태에 따른 라벨링(완료) */
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap:has(.label.status-completed) .label {
    background: var(--gray-DDD);
    color: var(--gray-444);
}
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap:has(.label.status-completed) .title {
    color: var(--gray-666);
}

/* 행정 결제 상태 라벨 */
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label.payment-pending {
    background-color: #DFF2E1;
    color: #0C971C;
}
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label.payment-complete {
    background-color: #ddd;
    color: #444;
}
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label.payment-cancel {
    background-color: #FFD2D2;
    color: #EA0000;
}
/* 행정 첨부파일 상태 라벨 */
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label.attach-submit {
    background-color: #DDD;
    color: #444;
}
.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .label.attach-unsubmit {
    background-color: #EEF4FF;
    color: #235DBE;
}

.board-list-page.board-skin-2 .grid .tui-grid-table tr:has(.label.status-completed) .format-column {
    background-color: var(--gray);
}
.board-list-page.board-skin-2 .grid .tui-grid-table tr:has(.label.status-completed) .meta-row {
    color: var(--gray-999);;
}
.board-list-page.board-skin-2 .grid .tui-grid-table tr:has(.label.status-completed) .meta-value {
    color: var(--gray-999);;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .tui-grid-cell-content .title-wrap .title {
    color: var(--font-black);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.32px;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .format-column {
    position: relative;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-light-gray);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--gray-444);
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info i {
    height: 14px;
    line-height: normal;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info i::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info .icon-calendar::before {
    background-image: url("../img/icon/ic_calendar_gray.svg");
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info .icon-timer::before {
    background-image: url("../img/icon/ic_timer_gray.svg");
}

.board-list-page.board-skin-2 .grid .tui-grid-table .meta-info .meta-label {
    font-weight: 500;
}

.board-list-page.board-skin-2 .grid .tui-grid-table .format-column .btn-card-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url("../img/icon/ic_right_arrow_bg_gray.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tui-grid-border-line-bottom {
    border: none !important;
}

/* skin3 (news 뉴스 목록) */
.board-list-page.board-skin-3 .board-body {
    padding: 0;
}

/* 탭 영역 (뉴스정보 / 행정정보) */
.board-list-page.board-skin-3 .tabs-wrap {
    background: var(--white, #FFF);
    padding: 16px 16px 0;
    position: relative;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.board-list-page.board-skin-3 .tabs-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light-gray, #EEE);
}

.board-list-page.board-skin-3 .tabs-wrap ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.board-list-page.board-skin-3 .tabs-wrap li {
    flex: 1;
    display: flex;
    justify-content: center;
}

.board-list-page.board-skin-3 .tabs-wrap a {
    display: inline-block;
    color: var(--font-gray, #999);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.32px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.board-list-page.board-skin-3 .tabs-wrap a .tab-text {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}

.board-list-page.board-skin-3 .tabs-wrap a.active {
    color: var(--primary-blue, #2B7DE9);
}

.board-list-page.board-skin-3 .tabs-wrap li:has(a.active) .tab-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; /* 부모 너비에 맞춤 */
    z-index: 1;
    height: 2px; /* 선의 두께 */
    background-color: #2B7DE9; /* 선의 색상 */

    /* 핵심: 양 끝을 둥글게 */
    border-radius: 100px;
}

/* 카테고리 버튼 영역 (전체, 사회, 문화...) */
.category-button-wrap {
    padding: 8px 0;
    background: var(--white, #FFF);
    border-bottom: 1px solid var(--border-light-gray, #EEE);
}

.category-button-wrap ul {
    display: flex;
    gap: 6px;
    padding: 0 20px;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-button-wrap ul::-webkit-scrollbar {
    display: none;
}

.category-button-wrap li {
    flex-shrink: 0;
}

.category-button-wrap button {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--gray, #F7F7F7);
    color: var(--font-gray, #666);
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.26px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    /*transition: all 0.3s ease;*/
}

.category-button-wrap button.active {
    background: var(--primary-blue, #2B7DE9);
    color: var(--white, #FFF);
}

.category-button-wrap li button span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.category-button-wrap li:has(button.active) button span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../img/icon/ic_checked.svg");
}

.board-list-page.board-skin-3 .grid {
    background: var(--white, #FFF);
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell {
    background-color: var(--white);
    border-bottom: 4px solid var(--divider-light-gray);
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell:has(.job-card) {
    border-color: var(--white);
}

.board-list-page.board-skin-3 .tui-grid-table:has(.job-card) {
    margin-top: 12px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-row-odd {
    height: initial !important;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell-content {
    padding: 0;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .title-area {
    display: flex;
    gap: 12px;
    margin: 16px 0 4px;
    align-items: center;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .title-area .category-label {
    flex-shrink: 0;
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--gray, #F7F7F7);
    color: var(--font-gray, #666);
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.22px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .title-area .title {
    flex: 1;
    color: var(--font-black, #121212);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.32px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .content-preview {
    color: var(--font-dark-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-bottom: 20px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .meta-info {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 13px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .meta-info .meta-item {
    display: flex;
    align-items: center;
    color: var(--font-light-gray, #BDBDBD);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -0.24px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .meta-info .meta-item.comment::before {
    content: '';
    width: 14px;
    height: 14px;
    line-height: 14px;
    display: inline-block;
    aspect-ratio: 1/1;
    background-image: url("../img/icon/ic_comment_gray_2.svg");
    margin-right: 4px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .meta-info .meta-item:not(:first-child)::before {
    content: '·';
    margin: 0 4px;
    color: var(--font-light-gray, #BDBDBD);
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-buttons {
    display: flex;
    color: var(--font-black);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.24px;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid var(--divider-light-gray);
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 50%;
    justify-content: center;
    gap: 4px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn .icon {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn.like-btn .icon {
    background-image: url("../img/icon/ic_like_btn.svg");
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn.like-btn.active .icon {
    background-image: url("../img/icon/ic_like_btn_blue.svg");
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn.like-btn.active .text {
    color: var(--blue-login);
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .action-btn.comment-btn .icon {
    background-image: url("../img/icon/ic_comment_btn.svg");
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .register-area {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--divider-light-gray);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .register-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .register-area i {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-image: url("../img/icon/ic_profile_gray_2.svg");
}

.board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column .register-area .divider {
    height: 10px;
    background-color: var(--border-light-gray);
}

/* board-skin-3 목록 */
/* skin3 (news, community 목록) */
.board-list-page.board-skin-3 {
    position: relative;
}

.board-list-page.board-skin-3 .format-column .title-area {
    position: relative;
}

.board-list-page.board-skin-3 .reg-btn {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    position: fixed;
    right: 20px;
    bottom: 111px;
    border-radius: 30px;
    border: 1px solid #98BFFF;
    background: linear-gradient(180deg, #0B5FEA 0%, #2978FB 100%);
    box-shadow: 0 4px 8px 0 rgba(0, 60, 157, 0.20);
    z-index: 2000;
}

.board-list-page.board-skin-3 .reg-btn i {
    display: flex;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background-image: url("../img/icon/ic_pencil_white.svg");
}

/* skin3 (news, community 상세) */
.board-list-page.board-skin-3 .more-btn, .board-upsert-page.board-skin-3 .more-btn {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("../img/icon/ic_more.svg");
}

/* 구인/구직 스타일 부분 */
.board-list-page.board-skin-3 .job-search-area {
    background: var(--white);
    padding: 12px 16px 0;
}

/* 검색 입력 + 버튼 한 줄 */
.board-list-page.board-skin-3 .job-search-area .search-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.board-list-page.board-skin-3 .job-search-area .search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light-gray);
    border-radius: 10px;
    overflow: hidden;
    background: var(--primary-light-gray);
}

.board-list-page.board-skin-3 .job-search-area .search-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--font-black);
    outline: none;
}

.board-list-page.board-skin-3 .job-search-area .search-input-wrap input::placeholder {
    color: var(--gray-999);
}

.board-list-page.board-skin-3 .job-search-area .search-btn {
    flex-shrink: 0;
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    background: var(--gray-444);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* 상세조건 토글 버튼 */
.board-list-page.board-skin-3 .detail-filter-btn-wrap {
    border-bottom: 1px solid var(--border-light-gray);
    padding: 12px 0;
}

.board-list-page.board-skin-3 .detail-filter-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    background-color: var(--gray-444);
    border-radius: 10px;
}

.board-list-page.board-skin-3 .detail-filter-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("../img/icon/ic_right_arrow_gray.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    transition: transform 0.25s ease;
}

.board-list-page.board-skin-3 .detail-filter-arrow.open {
    transform: rotate(270deg);
}

.board-list-page.board-skin-3 .detail-option-arrow {
    display: inline-block;
    width: 16px;
    height: 19px;
    background-image: url("../img/icon/ic_bottom_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 4개 카테고리 버튼 */
.board-list-page.board-skin-3 .filter-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background-color: var(--gray);
    border-radius: 10px;
    margin: 0 0 16px;
}

.board-list-page.board-skin-3 .filter-category-list ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.board-list-page.board-skin-3 .filter-cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-light-gray);
    background-color: var(--white);
    text-align: left;
    gap: 8px;
    width: 100%;
    color: var(--gray-999);
    font-size: 14px;
    font-weight: normal;
}

.board-list-page.board-skin-3 .filter-cat-label {
    flex-shrink: 0;
    color: var(--font-light-gray);
    min-width: 56px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

.board-list-page.board-skin-3 .filter-cat-btn .filter-cat-value {
    flex: 1;
    color: var(--gray-999);
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    display: flex;
    justify-content: end;
}

.board-list-page.board-skin-3 .filter-cat-btn .filter-cat-value.has-value {
    color: var(--blue-login);
    font-weight: 500;
}

/* 초기화 / 적용 버튼 */
.board-list-page.board-skin-3 .filter-action-row {
    display: flex;
    gap: 8px;
}

.board-list-page.board-skin-3 .filter-reset-btn {
    flex: 1;
    height: 46px;
    border-radius: 10px;
    border: 1px solid var(--border-light-gray);
    background: var(--gray-DDD);
    color: var(--font-gray);
    font-size: 14px;
    font-weight: 500;
}

.board-list-page.board-skin-3 .filter-apply-btn {
    flex: 1;
    height: 46px;
    border-radius: 10px;
    background: var(--gray-444);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

/* ── Bottom Sheet Overlay ──────────────────────────────────── */
.board-list-page.board-skin-3 .bottom-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.board-list-page.board-skin-3 .bottom-sheet-overlay.open {
    opacity: 1;
}

/* ── Bottom Sheet ─────────────────────────────────────────── */
.board-list-page.board-skin-3 .bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2001;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
    display: flex;
    flex-direction: column;

    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}

.board-list-page.board-skin-3 .bottom-sheet.open {
    transform: translateY(0);
}

/* 헤더 */
.board-list-page.board-skin-3 .bottom-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 12px;
    border-bottom: 1px solid var(--border-light-gray);
    flex-shrink: 0;
}

.board-list-page.board-skin-3 .bottom-sheet-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--font-black);
}

.board-list-page.board-skin-3 .bottom-sheet-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-999);
    font-size: 18px;
    border-radius: 50%;
}

.board-list-page.board-skin-3 .bottom-sheet-close:hover {
    background: var(--gray);
}

/* 바디 – 스크롤 */
.board-list-page.board-skin-3 .bottom-sheet-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 env(safe-area-inset-bottom);
    -webkit-overflow-scrolling: touch;
}

/* 체크박스 아이템 */
.board-list-page.board-skin-3 .sheet-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light-gray);
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.board-list-page.board-skin-3 .sheet-checkbox-item:last-child {
    border-bottom: none;
}

.sheet-checkbox-item:active,
.board-list-page.board-skin-3 .sheet-checkbox-item.checked {
    background: var(--primary-light-gray);
}

.board-list-page.board-skin-3 .sheet-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: var(--blue-login);
    cursor: pointer;
}

.board-list-page.board-skin-3 .sheet-checkbox-label {
    flex: 1;
    color: var(--font-black);
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.3px;
    user-select: none;
}

.board-list-page.board-skin-3 .sheet-checkbox-item.checked .sheet-checkbox-label {
    color: var(--blue-login);
    font-weight: 500;
}

.board-list-page.board-skin-3 .sheet-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-999);
    font-size: 14px;
}

/* ── Job Card (TUI Grid formatter) ───────────────────────── */
.board-list-page.board-skin-3 .board-list-page.board-skin-3 .tui-grid-table .tui-grid-cell .format-column.job-card {
    padding: 14px 16px;
    gap: 0;
    cursor: pointer;
}

.job-card {
    margin: 0 16px;
    padding: 16px !important;
    gap: 6px;
    border-radius: 16px;
    border: 1px solid var(--border-light-gray);
}

.job-card .job-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-444);
}

.job-card .job-card-divider {
    width: 100%;
    height: 1px;
    background: #ededed;
}

.job-card .job-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--gray-666);
    font-size: 12px;
    font-weight: 400;
}

.job-card .company-name {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-666);
}

.job-card .job-title-row {
    font-size: 14px;
    font-weight: 500;
    color: var(--font-black);
    display: flex;
    align-items: flex-start;
}

.job-card .job-title-row .title {
    max-width: 90%;         /* 원하는 너비 설정 */
    white-space: nowrap;  /* 텍스트가 줄바꿈되지 않게 함 */
    overflow: hidden;     /* 넘치는 부분 숨김 */
    text-overflow: ellipsis; /* 넘치는 부분을 ...으로 표시 */
}

.job-period-text {
    color: var(--blue-login);
}

.job-card .job-title-row .visa-badge-group {
    display: flex;
    gap: 2px;
    margin-left: 0px;
}

.job-card .job-title-row .visa-badge-group .visa-badge-emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 6px;
    border-radius: 6px;
    background: #f6dcea;
    color: #c81e2d;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.job-card .job-title-row .visa-badge-group .visa-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 6px;
    border-radius: 6px;
    background: #EFF4FF;
    color: #0048FF;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.job-card .job-meta-text {

}

/* 제목 줄 – 뱃지 + 텍스트 */
.board-list-page.board-skin-3 .job-card .title-area {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

/* 구인/구직 뱃지 */
.board-list-page.board-skin-3 .job-badge {
    display: inline-block;
    flex-shrink: 0;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
}

.board-list-page.board-skin-3 .job-badge.recruit {
    background: #EEF4FF;
    color: var(--primary-light-blue);
}

.board-list-page.board-skin-3 .job-badge.seek {
    background: #FFF4E5;
    color: #C96A00;
}

/* 직무/근무형태 태그 */
.board-list-page.board-skin-3 .job-card .job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
}

.board-list-page.board-skin-3 .job-card .tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    background: var(--gray);
    color: var(--font-gray);
    font-size: 11px;
    font-weight: 500;
    line-height: 18px;
}

/* 급여 */
.board-list-page.board-skin-3 .job-card .job-salary {
    color: var(--font-black);
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 4px;
}

/* 모집기간 */
.board-list-page.board-skin-3 .job-card .job-period {
    color: var(--font-light-gray);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 8px;
}

/* 하단 작성자 / 날짜 */
.board-list-page.board-skin-3 .job-card .register-area {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--divider-light-gray);
    margin-bottom: 0;
    padding-bottom: 0;
}

.board-list-page.board-skin-3 .job-card .register-name {
    color: var(--font-gray);
    font-size: 12px;
    font-weight: 400;
}

.board-list-page.board-skin-3 .job-card .divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: var(--border-light-gray);
}

.board-list-page.board-skin-3 .job-card .meta-item {
    color: var(--font-light-gray);
    font-size: 12px;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .more-btn,
.board-upsert-page.board-skin-3 .comment-header-info .more-btn {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
}

/* skin4 (education 목록) */
.board-list-page.board-skin-4 ul {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--primary-light-gray);
}

.board-list-page.board-skin-4 ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid var(--border-light-gray);
    background: var(--white);
}

.board-list-page.board-skin-4 ul div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.board-list-page.board-skin-4 h3 {
    color: var(--font-black);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.32px;
    margin: 0;
}

.board-list-page.board-skin-4 li span {
    color: var(--gray-666);
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 145.455% */
    letter-spacing: -0.22px;
}

/* skin4 (education > upsert 상세) */
.board-upsert-page.board-skin-4 .video-wrapper {
    width: 100%; /* 부모 너비에 맞춤 */
    max-width: 800px; /* 너무 커지는 걸 방지 (선택 사항) */
    margin: 0 auto;
}

.board-upsert-page.board-skin-4 .video-wrapper iframe {
    width: 100%;
    /* 16:9 비율을 유지하며 너비에 따라 높이가 자동 계산됨 */
    aspect-ratio: 16 / 9;
    border: none;
}

.board-upsert-page.board-skin-4 .board-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px 20px;
}

.board-upsert-page.board-skin-4 .board-body h3 {
    color: var(--font-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.32px;
    margin: 0;
}

.board-upsert-page.board-skin-4 .board-body .detail-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    margin: 0;
}

.board-upsert-page.board-skin-4 .board-body .detail-content .content-wrap {
    display: flex;
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    border-radius: 12px;
    background: var(--primary-light-gray);
}

.board-upsert-page.board-skin-4 .board-body .detail-content .title {
    color: var(--font-gray);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.board-upsert-page.board-skin-4 .board-body .detail-content i {
    display: flex;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background-image: url("../img/icon/ic_pencil_gray_14.svg");
}

/* skin5 (education > list_category 목록) */
.board-list-page.board-skin-5 #grid {
    background: var(--primary-light-gray);
}

.board-list-page.board-skin-5 .tui-grid-body-container {
    margin-top: initial;
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell {
    background-color: var(--primary-light-gray);
    border-color: var(--primary-light-gray);
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell-content {
    padding: 4px;
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell-content .row-wrap {
    border-radius: 16px;
    border: 1px solid var(--divider-light-gray);
    background: var(--white);
    padding: 16px 20px;
    margin: 0 16px;
    position: relative;
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell-content .row-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    padding: 4px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 16px;
    background-color: var(--gray);
    background-image: url("../img/icon/ic_right_arrow_gray_24.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell-content .row-wrap .category {
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--primary-light-gray);
    color: var(--font-black);
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 145.455% */
    letter-spacing: -0.22px;
}

.board-list-page.board-skin-5 .tui-grid-table .tui-grid-cell-content .row-wrap .title {
    overflow: hidden;
    color: var(--font-black);
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    letter-spacing: -0.32px;
    margin-top: 4px;
}

/* More 팝업 스타일 */
.more-popup {
    position: absolute;
    top: -8px;
    right: 24px;
    background: var(--white);
    border: 1px solid var(--border-light-gray);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    min-width: 80px;
    overflow: hidden;
}

.more-popup.active {
    display: block;
}

.popup-action-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: var(--white);
    color: var(--font-black);
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light-gray);
}

.popup-action-btn:last-child {
    border-bottom: none;
}

.popup-action-btn:hover {
    background-color: var(--gray);
}

.popup-action-btn.delete-btn {
    color: #e53935;
}

.popup-action-btn.delete-btn:hover {
    background-color: #ffebee;
}

.board-upsert-page.board-skin-3 .board-body {
    padding: 20px;
    border-bottom: 4px solid var(--divider-light-gray);
}

.board-upsert-page.board-skin-3 .board-body .detail-title {
    padding: 0 4px 12px;
    border-bottom: 1px solid var(--divider-light-gray);
    position: relative;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .title {
    font-size: 16px;
    color: var(--font-black);
    margin-bottom: 8px;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .reg-info-row {
    font-size: 12px;
    color: var(--gray-444);
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
    display: flex;
    align-items: center;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .reg-info-row .icon {
    font-weight: 500;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .reg-info-row .icon::before {
    content: '';
    width: 14px;
    height: 14px;
    display: inline-block;
    background-repeat: no-repeat;
    transform: translateY(3px);
    margin-right: 4px;
    background-image: url(../img/icon/ic_timer_gray.svg) !important;
}

.board-upsert-page.board-skin-3 .board-body .detail-title .register .icon::before {
    background-image: url("../img/icon/ic_profile.svg");
}

.board-upsert-page.board-skin-3 .board-body .detail-title .date .icon::before {
    background-image: url("../img/icon/ic_timer.svg");
}

.board-upsert-page.board-skin-3 .board-body .detail-title .reg-info-row .icon::after {
    content: '';
    width: 1px;
    height: 10px;
    display: inline-block;
    background-color: var(--border-light-gray);
    transform: translateY(1px);
    margin: 0 6px;
}

.board-upsert-page.board-skin-3 .board-body .detail-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
}

.board-upsert-page.board-skin-3 .board-body .detail-content img {
    width: 100% !important;
    height: auto !important;
}

.board-upsert-page.board-skin-3 .board-body .detail-content .detail-image {
    overflow: hidden;
    border-radius: 6px;
}

.board-upsert-page.board-skin-3 .board-body .detail-content .detail-image img {
    display: block;
    margin: 0 auto;
}

.board-upsert-page.board-skin-3 .board-body .detail-content p {
    margin-bottom: initial;
    color: var(--gray-444);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: -0.28px;
}

.board-upsert-page.board-skin-3 .board-body .detail-additional {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .comment-wrap::before {
    content: '';
    width: 2px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--gray-444);
    display: inline-block;
    transform: translateY(-4px);
    margin: 0 8px;
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .icon::after {
    content: '';
    width: 1px;
    height: 10px;
    display: inline-block;
    background-color: var(--divider-light-gray);
    margin: 0 6px;
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .icon::before {
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(4px);
    margin-right: 4px;
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .like::before {
    background-image: url("../img/icon/ic_like_btn.svg");
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .like.active::before {
    background-image: url("../img/icon/ic_like_btn_blue.svg");
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .like.active {
    color: var(--blue-login);
}

.board-upsert-page.board-skin-3 .board-body .detail-additional .additional-row .comment::before {
    background-image: url("../img/icon/ic_comment_btn.svg");
}

/* 게시판 상세 댓글 관련 스타일 */
.comment-item {
    border-bottom: 1px solid var(--border-light-gray);
    padding: 16px 16px 0;
}

.comment-item.reply {
    background-color: var(--primary-light-gray);
    width: calc(100% + 32px);
    margin-left: -16px;
    padding-left: 32px;
    border-top: 1px solid var(--border-light-gray);
}

.comment-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    position: relative;
}

.comment-author {
    color: var(--gray-444);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
}

.comment-date {
    color: #999;
    font-size: 12px;
}

.comment-content {
    overflow: hidden;
    color: var(--gray-444);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
}

.comment-content.deleted {
    color: #999;
    font-style: italic;
}

.comment-actions {
    display: flex;
    gap: 10px;
    margin: 8px 0 12px;
}

.comment-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    overflow: hidden;
    color: var(--gray-999);
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 150% */
    letter-spacing: -0.24px;
}

.comment-action-btn:hover {
    color: #333;
    text-decoration: underline;
}

.reply-form {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    display: none;
}

.reply-form.active {
    display: block;
    width: calc(100% + 32px);
    margin-left: -16px;
}

.reply-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 10px;
}

.reply-form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.reply-form-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.reply-submit-btn {
    background-color: #333;
    color: white;
}

.reply-cancel-btn {
    background-color: #eee;
    color: #333;
}

.edit-form {
    margin-top: 10px;
    display: none;
}

.edit-form.active {
    display: block;
}

.edit-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 10px;
}

.edit-form-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.edit-form.active .edit-form-actions {
    margin-bottom: 16px;
}

.edit-form-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}

.edit-submit-btn {
    background-color: #333;
    color: white;
}

.edit-cancel-btn {
    background-color: #eee;
    color: #333;
}

.comment-write-form {
    position: fixed; /* 또는 sticky */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1100;
    align-items: center;
    padding-top: 10px;
    padding-inline: 16px; /* 좌우 패딩을 한 번에 */
    padding-bottom: env(safe-area-inset-bottom); /* 키보드가 올라왔을 때 하단 여백이 필요한 경우를 대비 */
    background-color: var(--primary-light-gray);
    border-top: 1px solid var(--border-light-gray);
}

.comment-write-form .comment-wrap {
    display: flex;
    gap: 10px;
}

.comment-write-form .textarea-wrap {
    flex: 1 0 0;
    display: flex;
    align-items: center;
}

.comment-write-form textarea {
    width: 100%;
    height: 44px;
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    resize: none;
    line-height: 20px;
}

.comment-write-form button {
    display: flex;
    height: 44px;
    padding: 13px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: var(--blue-login);
    color: var(--white);
}

/* 댓글이 없을 때 메시지 스타일 */
.comment-empty-message {
    padding: 60px 20px;
    text-align: center;
    color: var(--font-light-gray, #999);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.28px;
    background-color: var(--white);
}

/* TUI Grid 빈 데이터 메시지 스타일 */
.board-list-page.board-skin-3 .tui-grid-body-area .tui-grid-layer-datalist {
    min-height: 400px;
}

.board-list-page.board-skin-3 .tui-grid-no-data {
    padding: 120px 20px !important;
    text-align: center !important;
    color: var(--font-light-gray, #999) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
    letter-spacing: -0.28px !important;
    background-color: var(--white) !important;
}

.board-list-page.board-skin-3 .tui-grid-no-data::before {
    content: '등록된 게시물이 없습니다' !important;
    display: block;
    font-size: 14px;
    color: var(--font-light-gray, #999);
}

/* 기본 "No data." 텍스트 숨김 */
.board-list-page.board-skin-3 .tui-grid-no-data {
    font-size: 0 !important;
}

/* skin4 edu-list-category 카드 그리드 (list.html 내 eduListCategory fragment) */
.edu-list-category-section {
    padding: 12px 16px;
    background: var(--white);
    min-height: 100px;
}

.edu-card-grid {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    gap: 10px;
}

.edu-card {
    border-radius: 14px;
    border: 1px solid var(--border-light-gray, #EEE);
    background: var(--white, #FFF);
    overflow: hidden;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);*/
    position: relative;
}

.edu-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.edu-card-thumbnail {
    width: 100%;
    /*aspect-ratio: 4 / 2;*/
    height: 200px;
    overflow: hidden;
    background: var(--gray, #F7F7F7);
    flex-shrink: 0;
}

.edu-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.edu-card:active .edu-card-thumbnail img {
    transform: scale(1.03);
}

.edu-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-DDD, #DDD);
}

.edu-card-no-image::after {
    content: '';
    width: 36px;
    height: 36px;
    background-image: url("../img/icon/ic_pencil_gray_14.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
}

.edu-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px 12px;
    flex: 1;
    position: absolute;
    width: 100%;
    background-color: var(--white);
    bottom: 0;
    opacity: 0.8;
}

.edu-card-category {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--primary-light-gray, #F7F7F7);
    color: var(--font-gray, #666);
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.22px;
    align-self: flex-start;
}

.edu-card-title {
    color: var(--font-black, #121212);
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.26px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.edu-card-date {
    color: var(--font-light-gray, #BDBDBD);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.22px;
    white-space: nowrap;
    flex-shrink: 0;
}

.edu-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-top: auto;
    padding-top: 4px;
}

.edu-card-view {
    color: var(--font-light-gray, #BDBDBD);
    font-size: 11px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.edu-grid-loading {
    text-align: center;
    padding: 24px 0;
    color: var(--font-gray, #999);
    font-size: 14px;
}

.edu-grid-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--font-light-gray, #BDBDBD);
    font-size: 14px;
}

/* 뉴스 카드 목록 스킨 */
.board-card-list {

    tbody tr:first-child > td {
        padding-top: 4px !important;
    }

    tbody tr:last-child > td {
        padding-bottom: 16px !important;
    }

    .category-button-wrap {
        background-color: var(--primary-light-gray);
        border: none;
    }

    .tui-grid-rside-area {
        width: initial !important;
    }

    .tui-grid-cell {
        padding: 6px 16px !important;
        background-color: var(--primary-light-gray) !important;
        border: none !important;
    }

    .tui-grid-cell-content {
        border-radius: 16px;
        background: var(--white);
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
    }

    .tui-grid-body-container, .tui-grid-table-container {
        width: 100% !important;
    }

}