   /* === Только нужные стили для списка статей === */

    .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;
        }
    }