.news-category {
    padding: 40px 20px;
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.news-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    padding: 15px;
    transition: transform 0.2s;
}
.news-item:hover {
    transform: translateY(-5px);
}
.news-thumb {
    width: 100%;
    height: 200px; /* фиксированная высота блока */
    overflow: hidden;
    border-radius: 5px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* сохраняет пропорции и обрезает лишнее */
    display: block;
}

.news-item h2 {
    font-size: 1.2em;
    margin: 10px 0;
}
.news-date {
    font-size: 0.85em;
    color: #777;
}
.news-excerpt {
    font-size: 1em;
}
.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #007263;
    font-weight: bold;
}
.pagination {
    margin-top: 30px;
    text-align: center;
}
