/* SEO СТИЛИ - breadcrumbs и другие SEO элементы */

.breadcrumbs {
    background-color: #f8f9fa;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item span {
    color: #6c757d;
}

.breadcrumb-item[aria-current="page"] span {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #6c757d;
}

/* Responsive breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-separator {
        margin: 0 4px;
    }
}

/* Стили для структурированного контента */
.seo-content {
    line-height: 1.6;
    color: #212529;
}

.seo-content p {
    margin-bottom: 1rem;
}

.seo-content ul,
.seo-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.seo-content li {
    margin-bottom: 0.5rem;
}

/* Выделение ключевых слов */
.keyword {
    font-weight: 600;
    color: #c9a64e;
}

/* Кнопки призыва к действию */
.cta-button {
    background-color: #c9a64e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #b8944a;
    color: white;
    text-decoration: none;
} 
