/* ==========================================================================
   Стили для Ситуационного Центра (Префикс sc-)
   ========================================================================== */
.sc-page {
    --sc-ink: #14142d;
    --sc-muted: #6d6d7b;
    --sc-line: #dedee5;
    --sc-paper: #f4f3ef;
    --sc-white: #ffffff;
    --sc-violet: #7057ef;
    --sc-violet-soft: #ece9ff;
    --sc-lime: #dcff61;
    --sc-green: #35bd70;

    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--sc-paper);
    color: var(--sc-ink);
    line-height: 1.5;
    width: 100%;
}

.sc-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-page a {
    color: inherit;
    text-decoration: none;
}

.sc-page h1, .sc-page h2, .sc-page h3, .sc-page h4, .sc-page p {
    margin: 0;
}

/* --- Текстовые плашки и заголовки --- */
.sc-kicker {
    color: var(--sc-violet);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.sc-heading {
    margin-bottom: 40px;
}

.sc-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.sc-heading p {
    color: var(--sc-muted);
    margin-top: 12px;
    font-size: 15px;
    max-width: 540px;
}

/* --- Кнопка --- */
.sc-button {
    background: var(--sc-ink);
    color: var(--sc-white) !important;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 13px;
    font-weight: 750;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.18s, transform 0.18s;
    cursor: pointer;
    width: fit-content;
}

.sc-button:hover {
    background: var(--sc-violet);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.sc-hero {
    padding: 60px 0;
    background: var(--sc-paper);
}

.sc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.sc-hero-copy h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.98;
    margin: 16px 0 20px;
}

.sc-hero-copy p {
    color: var(--sc-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sc-status-note {
    font-size: 13px !important;
    opacity: 0.8;
    margin-bottom: 28px !important;
}

.sc-hero-image {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--sc-line);
}

.sc-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Stages Section (Как мы помогаем)
   ========================================================================== */
.sc-section {
    padding: 80px 0;
    background: var(--sc-white);
}

.sc-stage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sc-stage-card {
    background: var(--sc-paper);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--sc-line);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background 0.18s;
}

.sc-stage-card:hover {
    background: var(--sc-violet-soft);
}

.sc-stage-card > span {
    color: var(--sc-violet);
    font-family: monospace;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
}

.sc-stage-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.sc-stage-card p {
    color: var(--sc-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================================
   Documents Section (Оставить контакты)
   ========================================================================== */
.sc-documents {
    background: var(--sc-violet-soft);
    padding: 80px 0;
}

.sc-documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sc-documents-grid h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 12px 0 16px;
}

.sc-documents-grid p {
    color: var(--sc-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sc-documents-grid small {
    display: block;
    color: var(--sc-muted);
    font-size: 11px;
    margin-top: 12px;
}

.sc-documents-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sc-documents-grid li {
    border-bottom: 1px solid rgba(20, 20, 45, 0.12);
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
}

.sc-documents-grid li:first-child {
    border-top: 1px solid rgba(20, 20, 45, 0.12);
}

.sc-documents-grid li span {
    color: var(--sc-violet);
    font-family: monospace;
    font-size: 12px;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.sc-resources {
    padding: 80px 0;
    background: var(--sc-paper);
}

.sc-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.sc-resource-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sc-resource-title h3 {
    font-size: 22px;
    font-weight: 600;
}

.sc-resource-title a {
    color: var(--sc-violet);
    font-weight: 600;
    font-size: 14px;
}

.sc-faq-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sc-faq-summary a {
    background: var(--sc-white);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid var(--sc-line);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: border-color 0.18s, transform 0.18s;
}

.sc-faq-summary a:hover {
    border-color: var(--sc-violet);
    transform: translateX(4px);
}

.sc-faq-summary span {
    color: var(--sc-violet);
    font-family: monospace;
    font-size: 12px;
}

.sc-faq-summary strong {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.sc-faq-summary i {
    color: var(--sc-violet);
    font-style: normal;
}

/* ==========================================================================
   Interaction Section (Роль Ассоциации)
   ========================================================================== */
.sc-interaction {
    padding: 80px 0;
    background: var(--sc-white);
}

.sc-interaction-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.sc-interaction-copy h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin: 12px 0 16px;
}

.sc-interaction-copy p {
    color: var(--sc-muted);
    font-size: 15px;
    margin-bottom: 28px;
}

.sc-interaction-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sc-interaction-cards article {
    background: var(--sc-paper);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid var(--sc-line);
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
}

.sc-interaction-cards b {
    color: var(--sc-violet);
    font-family: monospace;
    font-size: 12px;
}

.sc-interaction-cards h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.sc-interaction-cards p {
    color: var(--sc-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================================================
   Disclaimer
   ========================================================================== */
.sc-site-disclaimer {
    background: var(--sc-ink);
    color: rgba(255, 255, 255, 0.6);
    padding: 30px 0;
    font-size: 12px;
    line-height: 1.6;
}

/* ==========================================================================
   Адаптивность (Responsive)
   ========================================================================== */
@media (max-width: 992px) {
    .sc-hero-grid,
    .sc-documents-grid,
    .sc-interaction-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc-stage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sc-hero-image {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .sc-stage-grid {
        grid-template-columns: 1fr;
    }

    .sc-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}



/* ==========================================================================
   Оригинальные стили блока новостей (sc-news-home)
   ========================================================================== */
.sc-news-home {
    background: #EDF6FF !important;
    padding: 70px 0 !important;
    border-top: 1px solid var(--sc-line, #dedee5) !important;
    border-bottom: 1px solid var(--sc-line, #dedee5) !important;
}

.sc-news-block .sc-resource-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 32px !important;
}

.sc-news-block .sc-resource-title h2 {
    font-size: clamp(26px, 3vw, 36px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.04em !important;
    color: var(--sc-ink, #14142d) !important;
    margin: 0 !important;
}

.sc-news-summary {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
}

.sc-news-summary article {
    display: flex !important;
    height: 100% !important;
}

.sc-news-summary article a {
    background: var(--sc-white, #ffffff) !important;
    padding: 28px !important;
    border-radius: 20px !important;
    border: 1px solid var(--sc-line, #dedee5) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 200px !important;
    text-decoration: none !important;
    color: inherit !important;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.sc-news-summary article a:hover {
    transform: translateY(-4px) !important;
    border-color: var(--sc-violet, #7057ef) !important;
    box-shadow: 0 12px 30px rgba(112, 87, 239, 0.12) !important;
}

.sc-news-card-head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.sc-news-source {
    color: var(--sc-violet, #7057ef) !important;
    font-weight: 700 !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.sc-news-date {
    color: var(--sc-muted, #6d6d7b) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.sc-news-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: var(--sc-ink, #14142d) !important;
    margin: 0 0 12px 0 !important;
    letter-spacing: -0.02em !important;
}

.sc-news-text {
    font-size: 13px !important;
    line-height: 1.55 !important;
    color: var(--sc-muted, #6d6d7b) !important;
    margin: 0 0 20px 0 !important;
    flex-grow: 1 !important;
}

.sc-news-link {
    color: var(--sc-violet, #7057ef) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-top: auto !important;
    display: inline-block !important;
}

@media (max-width: 992px) {
    .sc-news-summary {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}


/* ==========================================================================
   Стили страницы /inicia/news
   ========================================================================== */
.sc-inner-hero {
    background: var(--sc-paper, #f4f3ef);
    padding: 50px 0 30px;
    border-bottom: 1px solid var(--sc-line, #dedee5);
}

.sc-inner-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.04em;
    margin: 10px 0 12px;
    color: var(--sc-ink, #14142d);
}

.sc-inner-hero p {
    color: var(--sc-muted, #6d6d7b);
    font-size: 15px;
    max-width: 600px;
}

.sc-news-page-list {
    padding: 40px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sc-news-page-list article {
    display: grid;
    grid-template-columns: 140px 40px 1fr;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--sc-line, #dedee5);
    scroll-margin-top: 100px; /* Отступ при прокрутке к анкору */
}

.sc-news-page-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sc-news-page-meta span {
    color: var(--sc-violet, #7057ef);
    font-weight: 700;
    font-family: monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.sc-news-page-meta time {
    color: var(--sc-muted, #6d6d7b);
    font-size: 12px;
}

.sc-news-page-list article > b {
    color: var(--sc-violet, #7057ef);
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
}

.sc-news-page-list article h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: var(--sc-ink, #14142d);
    letter-spacing: -0.02em;
}

.sc-news-page-list article p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--sc-muted, #6d6d7b);
    margin: 0 0 16px 0;
}

.sc-news-source {
    color: var(--sc-violet, #7057ef);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.sc-news-source:hover {
    text-decoration: underline;
}

.sc-inner-note {
    color: var(--sc-muted, #6d6d7b);
    font-size: 13px;
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .sc-news-page-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}


/* ==========================================================================
   ОРИГИНАЛЬНЫЙ БЛОК НОВОСТЕЙ НА ГЛАВНОЙ (sc-news-home)
   ========================================================================== */
.sc-news-home {
    background: #EDF6FF !important;
    padding: 60px 0 !important;
    border-top: 1px solid #dedee5 !important;
    border-bottom: 1px solid #dedee5 !important;
}

.sc-news-block .sc-resource-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 28px !important;
}

.sc-news-block .sc-resource-title h2 {
    font-size: clamp(26px, 3.2vw, 36px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.04em !important;
    color: #14142d !important;
    margin: 0 !important;
}

.sc-all-news-link {
    color: #7057ef !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
}

.sc-all-news-link:hover {
    text-decoration: underline !important;
}

.sc-news-summary {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
}

.sc-news-summary article {
    display: flex !important;
    height: 100% !important;
}

.sc-news-summary article a {
    background: #ffffff !important;
    padding: 24px !important;
    border-radius: 16px !important;
    border: 1px solid #dedee5 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 180px !important;
    text-decoration: none !important;
    color: #14142d !important;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.sc-news-summary article a:hover {
    transform: translateY(-4px) !important;
    border-color: #7057ef !important;
    box-shadow: 0 10px 25px rgba(112, 87, 239, 0.1) !important;
}

.sc-news-card-head {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 14px !important;
}

.sc-news-source {
    color: #7057ef !important;
    font-weight: 700 !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.sc-news-date {
    color: #6d6d7b !important;
    font-size: 12px !important;
}

.sc-news-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: #14142d !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: -0.02em !important;
}

.sc-news-text {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #6d6d7b !important;
    margin: 0 0 16px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.sc-news-link {
    color: #7057ef !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    margin-top: auto !important;
    display: inline-block !important;
}

/* ==========================================================================
   Стили страницы всех новостей (/inicia/news)
   ========================================================================== */
.sc-page {
    --sc-blue: #1769e0;
    --sc-border: #dedee5;
}

.sc-inner-hero {
    background: #EDF6FF !important;
    padding: 50px 0 35px !important;
    border-bottom: 1px solid #dedee5 !important;
}

.sc-inner-hero h1 {
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.04em !important;
    margin: 10px 0 12px 0 !important;
    color: #14142d !important;
}

.sc-inner-hero p {
    color: #6d6d7b !important;
    font-size: 15px !important;
    max-width: 600px !important;
    margin: 0 !important;
}

.sc-inner-content {
    background: #f4f3ef !important; /* Фоновый цвет страницы под светлые карточки */
    padding: 40px 0 80px !important;
}

.sc-news-page-list {
    display: flex !important;
    flex-direction: column !important;
}

/* Общие стили карточки новости */
.sc-news-page-list > article {
    border: 1px solid var(--sc-border, #dedee5) !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    grid-template-columns: 145px 35px 1fr !important;
    gap: 24px !important;
    margin-bottom: 16px !important;
    padding: 30px !important;
    display: grid !important;
    box-shadow: 0 7px 22px rgba(21, 52, 91, 0.05) !important;
    transition: all 0.25s ease !important;
    scroll-margin-top: 100px !important; /* Отступ сверху, чтобы фиксированная шапка не закрывала новость */
}

/* Активное состояние новости при переходе по ссылке c анкором (#news-ID) */
.sc-news-page-list > article:target {
    border-color: var(--sc-blue, #1769e0) !important;
    background: #f1f7ff !important;
    box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.12), 0 12px 30px rgba(21, 52, 91, 0.09) !important;
}

.sc-news-page-meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.sc-news-page-meta span {
    color: #7057ef !important;
    font-weight: 700 !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
}

.sc-news-page-meta time {
    color: #6d6d7b !important;
    font-size: 12px !important;
}

.sc-news-page-list article > b {
    color: #7057ef !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.sc-news-page-list article h2 {
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 0 12px 0 !important;
    color: #14142d !important;
    letter-spacing: -0.02em !important;
}

.sc-news-page-list article p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #6d6d7b !important;
    margin: 0 0 16px 0 !important;
}

.sc-inner-note {
    color: #6d6d7b !important;
    font-size: 13px !important;
    font-style: italic !important;
    margin-top: 20px !important;
}

@media (max-width: 768px) {
    .sc-news-page-list > article {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 20px !important;
    }
}

/* ==========================================================================
   Стили страницы FAQ (/inicia/faq)
   ========================================================================== */
.sc-legal-note {
    color: #6d6d7b !important;
    font-size: 13px !important;
    margin-top: 12px !important;
    font-style: italic !important;
}

.sc-faq-page-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 40px 20px 80px !important;
}

.sc-faq-page-list details {
    background: #ffffff !important;
    border: 1px solid #dedee5 !important;
    border-radius: 16px !important;
    padding: 24px 28px !important;
    transition: all 0.25s ease !important;
    scroll-margin-top: 100px !important;
}

.sc-faq-page-list details[open] {
    border-color: #7057ef !important;
    box-shadow: 0 8px 24px rgba(112, 87, 239, 0.08) !important;
}

.sc-faq-page-list summary {
    display: grid !important;
    grid-template-columns: 35px 1fr 24px !important;
    align-items: center !important;
    gap: 16px !important;
    cursor: pointer !important;
    list-style: none !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #14142d !important;
}

.sc-faq-page-list summary::-webkit-details-marker {
    display: none !important;
}

.sc-faq-page-list summary b {
    color: #7057ef !important;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-size: 13px !important;
}

.sc-faq-page-list summary i {
    color: #7057ef !important;
    font-style: normal !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-align: right !important;
    transition: transform 0.2s ease !important;
}

.sc-faq-page-list details[open] summary i {
    transform: rotate(45deg) !important; /* Превращаем плюс в крестик при открытии */
}

.sc-faq-answer {
    padding-top: 20px !important;
    padding-left: 51px !important;
    color: #6d6d7b !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    border-top: 1px solid #dedee5 !important;
    margin-top: 16px !important;
}

.sc-faq-answer ul {
    margin: 12px 0 !important;
    padding-left: 20px !important;
}

.sc-faq-answer li {
    margin-bottom: 6px !important;
}

.sc-faq-cta {
    background: #14142d !important;
    color: #ffffff !important;
    padding: 40px !important;
    border-radius: 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 30px !important;
}

.sc-faq-cta h2 {
    color: #ffffff !important;
    font-size: 28px !important;
    margin-bottom: 8px !important;
}

.sc-faq-cta p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .sc-faq-page-list summary {
        grid-template-columns: 28px 1fr 20px !important;
        font-size: 16px !important;
    }
    .sc-faq-answer {
        padding-left: 0 !important;
    }
    .sc-faq-cta {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 24px !important;
    }
}

/* ==========================================================================
   Суб-хедер ситуационного центра (sc-sub-header)
   ========================================================================== */
.sc-sub-header {
    background: #ffffff !important;
    border-bottom: 1px solid #dedee5 !important;
    padding: 14px 0 !important;
    width: 100% !important;
    position: relative !important;
    z-index: 10 !important;
}

.sc-sub-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
}

.sc-sub-title a {
    text-decoration: none !important;
}

.sc-sub-title strong {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #14142d !important;
    letter-spacing: -0.02em !important;
}

.sc-sub-nav {
    display: flex !important;
    align-items: center !important;
    gap: 28px !important;
}

.sc-sub-nav a {
    color: #6d6d7b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.18s ease !important;
}

.sc-sub-nav a:hover {
    color: #7057ef !important;
}

.sc-sub-button {
    background: #ece9ff !important;
    color: #5b40db !important;
    border-radius: 999px !important;
    padding: 8px 18px !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease !important;
    white-space: nowrap !important;
}

.sc-sub-button:hover {
    background: #5b40db !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .sc-sub-nav {
        display: none !important; /* На планшетах и мобилках оставляем только название и кнопку */
    }
}