.more-btn {
    margin-top: 30px;
}

.sub-visual-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(90deg, rgba(27, 20, 13, 0.8) 0%, rgba(27, 20, 13, 0) 66.93%);
}

.sub-visual-bg img {
    transform: scaleX(-1);
}

.sub-visual-content p {
    color: #fff;
}

/* ===== Info Page ===== */
.info-page {
    padding: 100px 0;
}

/* 필터 바 */
.info-filter-bar {
    padding-top: 0;
}

/* 검색창 */
.info-search-input::placeholder {
    color: #767676;
}

/* 본문 */
.info-link {
    min-height: 110px;
}

/* 컬럼 너비 */
.col-no {
    width: 9.091%;
    flex-shrink: 0;
    text-align: center;
}

.col-title {
    flex: 1;
    min-width: 0;
}

.col-thumb {
    width: 10.39%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.td-col.col-thumb {
    padding: 20px 30px;
}

.col-date {
    width: 12.987%;
    flex-shrink: 0;
    text-align: center;
}

.td-col.col-title {
    color: #333;
}

.td-col.col-date {
    color: #6c6c6c;
}

/* 제목 한 줄 처리 */
.info-title {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

/* 썸네일 박스 */
.thumb-box {
    display: flex;
    width: 100%;
    aspect-ratio: 1/0.7;
    border-radius: 6px;
    overflow: hidden;
    background-color: #ebebeb;
    background-size: cover;
    background-repeat: no-repeat;
}

.thumb-box img {
    width: 100%;
    object-fit: cover;
}

.pagination {
    padding-top: 70px;
}


@media (max-width:1023px) {
    .sub-visual-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 88.85%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    }

    .td-col.col-thumb {
        padding: 0;
    }

}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .sub-visual-bg img {
        scale: 1;
        object-position: center 30%;
    }

    .info-page {
        padding: 36px 0 60px;
    }

    .info-filter-bar {
        gap: 16px;
    }

    .info-link {
        align-items: center;
        min-height: 0;
    }

    .col-no {
        width: calc((100% - 12px)/2);
        order: 1;
        text-align: left;

    }

    .col-title {
        order: 3;
        width: 100%;
    }

    .td-col.col-title {
        width: calc(85% - 12px);
    }

    .col-thumb {
        order: 4;
        width: 14.035%;
    }

    .col-date {
        width: calc((100% - 12px)/2);
        order: 2;
        text-align: right;
        font-size: 14px;
    }

    .thumb-box {
        aspect-ratio: 1/0.775;
    }

    .pagination {
        padding-top: 30px;
    }

}