@charset "utf-8";

.hc-board {
    background: #fff;
    border: 1px solid #e1e7ec;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
    width: 100%;
}

.hc-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.hc-board-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.hc-board-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f0f4f8;
    color: #005a96;
    border-radius: 4px;
    text-decoration: none;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.hc-board-more:hover {
    background: #005a96;
    color: #fff;
}

.hc-board-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hc-board-list li {
    margin-bottom: 12px;
}

.hc-board-list li:last-child {
    margin-bottom: 0;
}

.hc-board-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 100%;
}

.hc-board-list .subject {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 15px;
    font-size: 15px;
    line-height: 1.4;
}

.hc-board-list .date {
    font-size: 13px;
    color: #888;
    flex-shrink: 0;
    text-align: right;
}

.hc-board-list .empty_li {
    padding: 30px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.new_icon {
    display: inline-block;
    width: 16px;
    line-height: 16px;
    font-size: 10px;
    color: #23db79;
    background: #b9ffda;
    text-align: center;
    border-radius: 2px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 3px;
}

@media (max-width: 991px) {
    .hc-board {
        padding: 20px;
    }
    .hc-board-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
}

@media (max-width: 767px) {
    .hc-board {
        padding: 15px;
    }
    .hc-board-title {
        font-size: 16px;
    }
    .hc-board-list .subject {
        font-size: 14px;
        padding-right: 10px;
    }
    .hc-board-list .date {
        font-size: 12px;
    }
    .hc-board-list li {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hc-board-header {
        margin-bottom: 12px;
    }
    .hc-board-list .subject {
        max-width: 200px;
    }
}