@import "/css/public-7b3882c692b83def71b51c549f3f4343.css";

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #f1f2f6;
    border-radius: 12px;
    overflow: hidden;
}

.news-card {
    background: white;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.news-card + .news-card {
    border-top: 1px solid #f1f2f6;
}

.news-card:hover {
    border-left-color: #667eea;
    background: #fafbfe;
}

.news-card:hover .news-card-title {
    color: #667eea;
}

.news-card::before {
    content: attr(data-index);
    font-size: 13px;
    font-weight: 500;
    color: #c0c7d6;
    width: 32px;
    flex-shrink: 0;
    text-align: center;
}

.news-card-body {
    flex: 1;
    min-width: 0;
}

.news-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.news-card-desc {
    font-size: 13px;
    color: #94a3b8;
    flex-shrink: 0;
    margin: 0;
    white-space: nowrap;
}

.news-card-arrow {
    font-size: 14px;
    color: #c0c7d6;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.news-card:hover .news-card-arrow {
    color: #667eea;
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .news-grid {
        border-radius: 8px;
    }
    .news-card {
        padding: 16px 20px;
        gap: 14px;
    }
    .news-card::before {
        width: 24px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .news-card { padding: 14px 16px; gap: 12px; }
    .news-card::before { display: none; }
    .news-card-title { font-size: 15px; }
    .news-card-desc { font-size: 12px; }
}

