/* 修复指针样式和移动端显示问题 */
.section-news .item {
    transition: all 0.3s ease;
    cursor: pointer;
    height: 65px;
    display: flex;
    align-items: center;
}

.section-news .item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.section-news .item .meta {
    width: 80px;
}

.section-news .item .title {
    font-size: 26px;
    line-height: 1.3;
    display: block;
    margin: 0;
}

.section-news .item .title a {
    color: inherit;
    text-decoration: none;
    word-wrap: break-word;
    white-space: normal;
    display: inline-block;
}

/* 移动端样式适配 */
@media (max-width: 768px) {
    .section-news .item {
        padding: 15px 10px;
        height: auto !important;
        min-height: 65px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-news .item .meta {
        margin-bottom: 8px;
        width: 100% !important;
    }
    
    .section-news .item .content {
        width: 100%;
    }
    
    .section-news .item .title {
        font-size: 22px;
    }
}
