/* Общие настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Шапка */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3498db;
}

/* Основной контент */
.content {
    flex: 1;
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 5%;
}

.post {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.post-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.date {
    margin-right: 1rem;
}

.category {
    font-weight: bold;
    color: #3498db;
}

.post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    margin: 1rem 0;
}

.post-excerpt {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
}

/* Боковая панель */
.sidebar {
    position: sticky;
    top: 20px;
    width: 280px;
    margin: 0 20px 20px auto;
    padding: 1rem;
}

.search {
    display: flex;
    margin-bottom: 2rem;
}

.search input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.search button {
    padding: 0.5rem 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.popular-posts h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.popular-posts ul {
    list-style: none;
}

.popular-posts li {
    margin-bottom: 0.5rem;
}

.popular-posts a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.popular-posts a:hover {
    color: #2980b9;
}

/* Подвал */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 5%;
    margin-top: auto;
}

.social {
    margin-top: 1rem;
}

.social a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.social a:hover {
    color: #3498db;
}

/*