body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    background: #111;
    color: #fff;
    padding: 20px 40px;
}

.site-header h1 {
    margin: 0 0 15px;
}

.site-header ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-home,
.single-wrap,
.category-page {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.main-article {
    background: #fff;
    padding: 20px;
    margin-bottom: 40px;
}

.main-article img {
    width: 100%;
    height: 100%
    object-fit: cover;
}

.category-block {
    margin-bottom: 50px;
}

.category-block > h2 {
    border-bottom: 2px solid #111;
    padding-bottom: 10px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.news-card {
    background: #fff;
    padding: 15px;
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card h3,
.news-card h2 {
    font-size: 18px;
    margin: 12px 0 8px;
}

.news-card p {
    font-size: 14px;
    color: #555;
}

.single-post {
    background: #fff;
}

.single-post h1 {
    font-size: 36px;
}

.post-meta {
    color: #777;
    margin-bottom: 25px;
}

.single-thumb img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.post-content {
    font-size: 18px;
    line-height: 1.8;
}

.site-footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

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

    .main-article img {
        height: 280px;
    }
}

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

    .site-header ul {
        flex-wrap: wrap;
    }
}
