   /* === Только нужные стили для списка статей === */

    .content-wrapper {
        display: flex;
        gap: 20px;
        margin: 20px 0;
    }

    .main-content {
        flex: 3;
    }

    /* === Статья в списке === */
    .article {
        background: rgba(30, 25, 65, 0.8);
        margin-bottom: 18px;
        padding: 18px;
        border-radius: 12px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(157, 78, 221, 0.2);
        display: flex;
        gap: 15px;
        transition: all 0.3s ease;
    }

    .article:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
        border-color: rgba(157, 78, 221, 0.5);
    }

    .article-image {
        width: 85px;
        height: 85px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid rgba(157, 78, 221, 0.3);
    }

    .article-content {
        flex: 1;
    }

    .article h2 {
        color: #c5b3e6;
        font-family: 'Playfair Display', serif;
        font-size: 1.3em;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .article h2 a {
        color: #c5b3e6;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .article h2 a:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
        transform: translateX(5px);
    }

    .article p {
        line-height: 1.5;
        margin-bottom: 0;
        font-size: 0.95em;
        color: #d0c5f0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* === Адаптивность === */
    @media (max-width: 768px) {
        .content-wrapper {
            flex-direction: column;
        }

        .article {
            flex-direction: column;
        }

        .article-image {
            width: 100%;
            height: 130px;
            margin-bottom: 10px;
        }
    }

   /* === Пагинация === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px 0;
    font-family: 'Playfair Display', serif;
    color: #c5b3e6;
}

.pagination-info {
    font-size: 0.9em;
    color: #d0c5f0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.pagination-link {
    background: rgba(30, 25, 65, 0.8);
    color: #c5b3e6;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(157, 78, 221, 0.2);
}

.pagination-link:hover {
    background: rgba(157, 78, 221, 0.8);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 10px;
    }

    .pagination-link {
        width: 100%;
        text-align: center;
    }
}

/* === Основной стиль для h1 === */
h1 {
    font-family: 'Playfair Display', serif; /* Элегантный шрифт */
    font-size: 2.5em; /* Размер шрифта */
    font-weight: 700; /* Жирность */
    color: #c5b3e6; /* Цвет текста (мягкий лиловый) */
    text-align: center; /* Выравнивание по центру */
    margin: 30px 0; /* Отступы сверху и снизу */
    line-height: 1.2; /* Межстрочный интервал */
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Легкая тень для глубины */
}

/* === Анимация при наведении === */
h1:hover {
    color: #ffffff; /* Белый цвет текста */
    text-shadow: 0 4px 10px rgba(157, 78, 221, 0.8); /* Усиленная тень */
}

/* === Адаптивность === */
@media (max-width: 768px) {
    h1 {
        font-size: 2em; /* Меньший размер на мобильных устройствах */
    }
}