/* --- ОБЩИЕ БЛОКИ КОНТЕНТА (SEO, FAQ, SIDEBAR) --- */

/* Сетка: Слева текст, справа сайдбар */
.content-section {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}
@media (min-width: 900px) {
    .content-section {
        grid-template-columns: 2fr 1fr; /* 2/3 контент, 1/3 сайдбар */
        gap: 60px;
    }
}

/* Типографика контента */
.content-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary, #111827); /* Fallback цвет */
}
.content-text p {
    color: var(--text-secondary, #6B7280);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Аккордеоны (FAQ) */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.faq-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}
.faq-item:hover {
    border-color: #D1D5DB;
}
.faq-item[open] {
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-color: transparent;
}
.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary, #111827);
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--text-secondary, #6B7280);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-body {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary, #6B7280);
    font-size: 14px;
    line-height: 1.5;
}

/* Дисклеймер (Важно) */
.disclaimer {
    background: #F9FAFB;
    padding: 16px;
    border-radius: 8px;
    font-size: 12px;
    color: #9CA3AF;
}

/* Сайдбар (Похожие инструменты) */
.sidebar-related h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary, #111827);
}
.related-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s;
}
.related-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transform: translateX(4px);
}
.related-icon {
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary, #6B7280);
    flex-shrink: 0;
}
.related-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #111827);
    margin-bottom: 2px;
    margin-top: 0;
}
.related-info span {
    font-size: 12px;
    color: var(--text-secondary, #6B7280);
}