/* Основные настройки шрифтов и сброс */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.clr { clear: both; }

/* Навигация */
#main-nav {
    background: #2c3e50;
    padding: 10px 0;
}

#main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#main-menu li {
    display: inline-block;
    margin-right: 20px;
}

#main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}

/* Шапка */
#top-header {
    background: #fff;
    padding: 30px 0;
    border-bottom: 3px solid #e74c3c;
    text-align: center;
}

#top-header img {
    max-width: 250px;
}

/* Основной контент и сайдбар */
#inner-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

#content {
    flex: 2;
    margin-right: 30px;
}

#sidebar {
    flex: 1;
    min-width: 300px;
}

/* Стили карточек постов */
.item-list {
    background: #fff;
    margin-bottom: 40px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.item-list h2 a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 24px;
}

.item-list h2 a:hover {
    color: #e74c3c;
}

.postmeta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.cthumb img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Виджеты сайдбара */
.widget {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.widget-title {
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.post-thumbnail img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 3px;
}

/* Пагинация */
.pagenavi {
    margin: 20px 0;
    text-align: center;
}

.page-numbers {
    padding: 8px 15px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.page-numbers.current {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

/* Футер */
#main-footer {
    background: #2c3e50;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
    text-align: center;
}

#main-footer a {
    color: #e74c3c;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    #inner-content {
        flex-direction: column;
    }
    #content {
        margin-right: 0;
    }
}