.portal_latest {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.portal_latest * {
    box-sizing: border-box;
}

.portal_latest_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.portal_latest_head h2 {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.portal_latest_head h2 a {
    color: #111827;
    text-decoration: none;
}

.portal_latest_head h2 a:hover {
    color: #0b6bcb;
}

.portal_more {
    flex-shrink: 0;
    font-size: 12px;
    color: #8a8f98;
    text-decoration: none;
}

.portal_more:hover {
    color: #0b6bcb;
}

.portal_latest_line {
    width: 100%;
    height: 2px;
    margin-top: 11px;
    background: #333333;
}

.portal_latest_list {
    margin: 13px 0 0;
    padding: 0;
    list-style: none;
}

.portal_latest_list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    gap: 20px;
    border-bottom: 1px solid #eeeeee;
}

.portal_latest_title {
    min-width: 0;
    overflow: hidden;
    color: #39485a;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.portal_latest_title:hover {
    color: #0b6bcb;
}

.portal_latest_date {
    flex-shrink: 0;
    font-size: 12px;
    color: #8b929a;
}

.portal_latest_empty {
    justify-content: center !important;
    min-height: 150px !important;
    color: #999999;
    border-bottom: 0 !important;
}

@media (max-width: 768px) {

    .portal_latest {
        padding: 17px;
        border-radius: 9px;
    }

    .portal_latest_head h2 {
        font-size: 17px;
    }

    .portal_latest_list li {
        min-height: 44px;
        gap: 12px;
    }

    .portal_latest_title {
        font-size: 13px;
    }

    .portal_latest_date {
        font-size: 11px;
    }
}