.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.featured img {
    width: 100%;
    border-radius: 8px;
}

.featured h2 {
    font-size: 26px;
    margin-top: 10px;
}

.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.news-item img {
    width: 100%;
    border-radius: 6px;
}

.news-item h3 {
    font-size: 16px;
}

.sidebar {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.popular-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.news-grid {
    display: grid;
    gap: 15px;
}

.news-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-2px);
}

.thumb img {
    width: 100%;
    height: auto;
}

.content {
    padding: 10px;
}

.content h3 {
    font-size: 16px;
    margin: 0 0 5px;
}

.content p {
    font-size: 14px;
    color: #555;
}
.featured-post {
    display: block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #000;
}

.featured-post img {
    width: 100%;
    border-radius: 12px;
}

.featured-post h2 {
    font-size: 22px;
    margin: 10px 0;
}

/* СІТКА */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* КАРТКИ */
.news-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
}

.news-card img {
    width: 100%;
}

.news-card h3 {
    font-size: 14px;
    padding: 8px;
}

/* МОБІЛКА */
@media(max-width:768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}