body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    background: #f6f6f6;
    color: #111;
}

.header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-inner {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo {
    font-weight: 600;
    text-decoration: none;
    color: #111;
    width: 100%;
}

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

.page-title {
    font-size: 28px;
    margin-bottom: 25px;
}

/* 🔥 НОРМАЛЬНЫЙ СПИСОК */
.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    transition: 0.2s;
}

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

.item-link {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.item-link:hover {
    color: #555;
}

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footer {
    text-align: center;
    padding: 30px;
    color: #888;
}
.post .content img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}
