/* Раздел «Интересное» — боковое меню и статьи */

.interesting-page .content-page {
    padding-top: 220px;
}

.interesting-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.interesting-sidebar {
    position: sticky;
    top: 200px;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 20px;
}

.interesting-sidebar-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 16px;
    font-weight: 400;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.interesting-sidebar nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 70vh;
    overflow-y: auto;
}

.interesting-sidebar nav li {
    margin: 0;
    border-bottom: 1px solid #ececec;
}

.interesting-sidebar nav li:last-child {
    border-bottom: none;
}

.interesting-sidebar nav a {
    display: block;
    padding: 10px 4px;
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.interesting-sidebar nav a:hover,
.interesting-sidebar nav a.active {
    color: #333;
}

.interesting-sidebar nav a.active {
    font-weight: 500;
    border-left: 3px solid #d4af37;
    padding-left: 8px;
    margin-left: -4px;
}

.interesting-article h1 {
    font-size: 3rem;
    color: #333;
    font-weight: 300;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.interesting-article-lead {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.interesting-cta {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-align: center;
}

.interesting-cta p {
    color: #555;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.interesting-index-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interesting-index-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ececec;
}

.interesting-index-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.interesting-index-list a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: #333;
    text-decoration: none;
}

.interesting-index-list a:hover {
    color: #000;
}

.interesting-index-list p {
    margin: 0.35rem 0 0;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .interesting-page .content-page {
        padding-top: 140px;
    }

    .interesting-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .interesting-sidebar {
        position: static;
        max-height: none;
    }

    .interesting-sidebar nav ul {
        max-height: none;
    }

    .interesting-article h1 {
        font-size: 2rem;
    }
}
