

/* Start:/local/components/public/content.manual/templates/.default/style.css?17825021015539*/
/* Общая обертка страницы */
.instruction-page-wrapper {
    background-color: #fafafa;
    min-height: 100vh;
    padding-bottom: 80px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Контейнер верхней навигации */
.instruction-nav-container {
    background: #ffffff;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #eef0f2;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Горизонтальный скролл на мобильных устройствах */
.nav-roles-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-role-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Название группы (Рекламодатель, Продавец и т.д.) */
.role-group-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #86868b;
    letter-spacing: 0.05em;
    min-width: 130px;
}

.role-links {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none; /* Скрываем стандартный скроллбар в Firefox */
    padding-bottom: 4px;
}

.role-links::-webkit-scrollbar {
    display: none; /* Скрываем стандартный скроллбар в Chrome/Safari */
}

/* Интерактивные ссылки-баджи */
.instruction-nav-link {
    display: inline-block;
    white-space: nowrap;
    padding: 8px 16px;
    background: #f5f5f7;
    color: #1d1d1f;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instruction-nav-link:hover {
    background: #e8e8ed;
    color: #000000;
}

.instruction-nav-link.is-active {
    background: #49698E;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(73, 105, 142, 0.25);
}

/* Центрированный современный контент-ридер */
.instruction-content-reader {
    max-width: 740px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

/* Типографика статьи в стиле Дзена/Медиума */
.article-body {
    font-size: 17px;
    line-height: 1.65;
    color: #2c2c2e;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h1, .article-body h2, .article-body h3 {
    color: #1d1d1f;
    margin-top: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

/* Стилизация картинок внутри текста (чтобы адаптивно вписывались) */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Нижний блок действий и фидбека */
.article-footer-actions {
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1px solid #eef0f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Кнопка поддержки */
.btn-modern-support {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #0071e3;
    color: #ffffff !important;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.3);
}

.btn-modern-support:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4);
}

/* Виджет фидбека */
.modern-feedback-box {
    text-align: center;
    background: #f5f5f7;
    padding: 20px 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 450px;
}

.feedback-title {
    display: block;
    font-size: 15px;
    color: #86868b;
    margin-bottom: 14px;
    font-weight: 500;
}

.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-feedback {
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    background: #ffffff;
    color: #1d1d1f;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-feedback:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.btn-feedback.positive:hover {
    color: #34c759;
}

.btn-feedback.negative:hover {
    color: #ff3b30;
}

/* Анимация появления контента */
.animate-fade-in {
    animation: fadeInPage 0.6s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность под телефоны */
@media (max-width: 768px) {
    .instruction-nav-container {
        padding: 16px 0;
    }
    .nav-role-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .role-links {
        width: 100%;
    }
    .instruction-content-reader {
        padding: 24px 20px;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .instruction-page-wrapper {
        background-color: #ffffff;
    }
}
/* End */
/* /local/components/public/content.manual/templates/.default/style.css?17825021015539 */
