.eko_news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.eko_news-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}

.eko_news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.eko_news-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.eko_news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eko_news-content {
    padding: 20px;
}

.eko_news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.eko_news-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.eko_news-title a {
    color: #333;
    text-decoration: none;
}

.eko_news-title a:hover {
    color: #6fae3c;
}

@media (max-width: 1024px) {
    .eko_news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eko_news-grid {
        grid-template-columns: 1fr;
    }
}
