.blogs-page{
    padding: 80px 0 30px 0;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-container h1{
    text-align: center;
    margin-bottom: 15px;
    color: var(--title-color);
}

.news-list {
    margin-bottom: 50px;
}

.news-item {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left-color: #4a6fa5;
}

.news-item:hover .news-item-title{
    text-decoration: underline;
}

.news-item-title {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.news-item-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.news-date {
    display: flex;
    align-items: center;
}

.news-views {
    display: flex;
    align-items: center;
}

.news-date::before {
    content: "📅";
    margin-right: 5px;
}

.news-views::before {
    content: "👁️";
    margin-right: 5px;
}

