

/* Start:/local/components/bonusplus.blog/hero/templates/.default/style.css?1782807973627*/
.blog-hero-block {
    padding-top: 44px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.blog-hero-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    border-bottom: var(--border-settings) !important;
    pointer-events: none;
    /* width: 1400px; */
}

@media (max-width: 768px) {

    .blog-hero-block {
        justify-content: start;
        align-items: start;
        text-align: start;
    }
}
/* End */


/* Start:/local/components/bonusplus.common/news/templates/.default/style.css?178282194034450*/
/* =============================
Основной блок
============================= */
.news-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    /* padding-bottom: 64px; */
    gap: 32px;
    width: 100%;
}

@media (max-width: 768px) {
    .news-block {
        align-items: initial;
    }
}

.news-block-btn-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    margin-top: 32px;
    gap: 12px;

    width: 200px;
    height: 36px;
}

.change-news-selected,
.change-news {
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 10px;
    width: 97px;
    height: 36px;
    border-radius: 60px;
    transition: 0.3s;
}

.change-news {
    border: var(--border-settings);
    background: none;
}

.change-news:hover,
.change-news-selected {
    color: var(--background-primary);
    background: var(--secondary-hover);
}

.change-news-selected:hover {
    filter: brightness(0.7);
}

/* =============================
Сетка
============================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    padding: 10px;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: minmax(280px, 1fr);
        width: 100%;
    }
}

/* =============================
Иконки и Бейджи
============================= */
.blog-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: fit-content;
    height: 30px;
}

.blog-icon svg {
    min-width: 24px;
    max-width: 24px;
    min-height: 24px;
    max-height: 24px;
}

.news-badge {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin: 20px;
    padding: 6px 12px;
}

.news-badge svg {
    min-width: 16px;
    max-width: 16px;
    min-height: 16px;
    max-height: 16px;
}

/* =============================
Закрытая новость (Карточка)
============================= */
.news-closed,
.news-header-closed {
    width: 100%;
    max-width: 100%;
}

.news-closed {
    cursor: pointer;
    transition: transform 0.25s ease;
}

.news-header-closed {
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 280px;
    display: flex;
    border-radius: 12px;
    height: auto !important;
    aspect-ratio: 16 / 9;
}

.news-closed .news-body {
    display: none;
}

.news-closed .desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 8px;
}

.news-closed .header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0px;
    gap: 8px;
}

.news-closed .header-content > * {
    margin: 0px;
}

/* =============================
Открытая новость
============================= */
.news-viewer .news-closed,
.news-viewer .news-header-closed,
.news .note {
    display: none;
}

.news-viewer {
    width: 100%;
}

.news {
    width: 100%;
    grid-column: 1 / -1;
}

.news .news-header {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    border-bottom: var(--border-settings);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 140px;
    gap: 10px;
    box-sizing: border-box;
}

.news .header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 32px;
    width: 100%;
}

.icons-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 24px;
    flex-wrap: wrap;
}

/* =============================
Тело новости
============================= */
.news-body {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.news-info {
    border-left: var(--border-settings);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 20px 60px 60px;
    gap: 120px;
    width: 100%;
    flex: 1;
    box-sizing: border-box;
}

.sub-container,
.text-container,
.sub-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
}

.sub-container {
    gap: 44px;
}

.text-container {
    gap: 32px;
}

.sub-text-container {
    gap: 12px;
}

/* =============================
Закладки (Сайдбар)
============================= */
.bookmarks-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 24px;
    gap: 37.5px;
    width: 100%;
    max-width: 390px;
    box-sizing: border-box;
}

.bookmarks {
    position: sticky;
    top: 100px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media (max-width: 1168px) {
    .bookmarks {
        top: 100px;
    }
}

.bookmarks-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 342px;
    padding: 15px;
    gap: 20px;
    padding-top: 30px;
    background-color: var(--background-secondary);
    border-radius: 12px;
    box-sizing: border-box;
}

@media (min-width: 901px) {
    .bookmarks-body {
        max-height: calc(100vh - 220px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-hover) rgba(255, 255, 255, 0.05);
    }

    .bookmarks-body::-webkit-scrollbar {
        width: 4px;
    }

    .bookmarks-body::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }

    .bookmarks-body::-webkit-scrollbar-thumb {
        background-color: var(--secondary-hover);
        border-radius: 2px;
    }
}

@media (min-width: 901px) and (max-width: 1168px) {
    .bookmarks-body {
        max-height: calc(100vh - 170px);
    }
}

.bookmarks-body a {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 34px;
}

/* =============================
KPI Блок
============================= */
.kpi-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 100%;
}

.advantages {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 16px;
}

.advantages svg {
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
}

.kpi-number {
    width: 49px;
    height: 44px;
    font-family: "Manrope";
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: -0.04em;
    color: #55e6e8;
    flex-shrink: 0;
}

.kpi-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
}

/* =============================
Изображения
============================= */
.news-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* =============================
АДАПТИВНОСТЬ
============================= */
@media (max-width: 900px) {
    .news .news-header {
        padding: 40px 20px;
    }

    .news-info {
        padding: 40px 20px;
        border-left: none;
        gap: 60px;
    }

    .bookmarks-block {
        padding: 40px 20px;
        max-width: 100%;
    }

    .news-body {
        flex-direction: column;
    }
}

.last-element {
    position: relative;
}

.last-element::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    right: -20px;
    border-top: var(--border-settings);
}

@media (max-width: 900px) {
    .last-element::before {
        left: -20px;
        right: -20px;
    }
}

/* =============================
Интеграция со Swiper 
============================= */

.news-block.swiper {
    display: block;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 40px 10px;
}

.news-grid.swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    flex-wrap: nowrap;
    align-items: stretch;
    margin: 0;
    padding: 0;
}

.news-grid.swiper-wrapper .news-closed.swiper-slide {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
}

/* =============================
Стили для скроллбара Swiper
============================= */

.news-block .swiper-scrollbar {
    background: rgba(255, 255, 255, 0.1);
    height: 8px;
    width: 80%;
    bottom: 18px;
    left: 50% !important;
    transform: translateX(-50%);
}

.news-block .swiper-scrollbar-drag {
    background: var(--secondary-default);
    border-radius: 10px;
    cursor: grab;
}

.news-block .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* ==========================================================================
   Глоссарий ритейла и лояльности (Glossary Styles)
   ========================================================================== */

/* Переменные для глоссария */
.glossary-hero,
.index-bar,
.glossary-section,
.glossary-cta,
.term-card {
    --bg: #0a1515;
    --bg-2: #141d1d;
    --surface: #ffffff;
    --ink: #ffffff;
    --muted: #efefef;
    --ink-inverse: #0f1e1e;
    --yellow: #ffd400;
    --yellow-hover: #ffdf33;
    --cyan: #4ecccd;
    --cyan-hover: #5df1f3;
    --line: rgba(255, 255, 255, 0.16);
    --line-dark: rgba(15, 30, 30, 0.2);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.page {
    position: relative;
    isolation: isolate;
}

.blob {
    position: absolute;
    filter: blur(24px);
    opacity: 0.95;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
}
.blob.yellow {
    background: radial-gradient(circle, rgba(255, 212, 0, 0.52), rgba(255, 212, 0, 0.12) 48%, transparent 68%);
}
.blob.cyan {
    background: radial-gradient(circle, rgba(78, 204, 205, 0.5), rgba(78, 204, 205, 0.12) 46%, transparent 70%);
}

.wrap {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--cyan));
    box-shadow: 0 0 36px rgba(78, 204, 205, 0.32);
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.18s ease;
}
.btn.primary {
    background: var(--yellow);
    color: var(--ink-inverse);
    box-shadow: 0 18px 48px rgba(255, 212, 0, 0.18);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    border: 1px solid var(--line);
}
.btn.secondary:hover {
    border-color: rgba(78, 204, 205, 0.56);
}

/* Hero Section */
.glossary-hero,
.glossary-hero *,
.glossary-hero *::before,
.glossary-hero *::after {
    box-sizing: border-box;
}

.glossary-hero {
    position: relative;
    padding: 86px 0 74px;
    display: grid;
    align-items: center;
    overflow: hidden;
}
.glossary-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 54px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    max-width: 100%;
    flex-wrap: wrap;
}
.kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 22px var(--cyan);
}

.glossary-hero h1 {
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin: 24px 0 22px;
    color: var(--ink);
    overflow-wrap: break-word;
    word-break: break-word;
}

.lead {
    font-size: 20px;
    line-height: 1.46;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 34px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    max-width: 660px;
}
.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.55);
}
.search-box svg {
    flex: 0 0 auto;
}
.search-box span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-metrics {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.metric {
    padding: 17px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    min-width: 142px;
}
.metric strong {
    display: block;
    font-size: 28px;
    letter-spacing: -0.06em;
    color: #fff;
}
.metric span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
}

.hero-visual {
    position: relative;
    min-height: 540px;
}
.orbit {
    position: absolute;
    inset: 0;
    border-radius: 42px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.orbit:before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -110px;
    top: -80px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.66), transparent 65%);
    filter: blur(16px);
}
.orbit:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -140px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(78, 204, 205, 0.58), transparent 64%);
    filter: blur(18px);
}

.term-float {
    position: absolute;
    /* background: #fff; */
    color: var(--ink-inverse);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
    border: 1px solid var(--line-dark);
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.term-float h3,

.term-float p {
    margin: 0;
}

.term-float h3 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}
.term-float.big {
    left: 40px;
    top: 56px;
    width: 338px;
    /* background: #101a1a; */
    border-color: var(--line);
}
.term-float.big h3 {
    color: #fff;
}
.term-float.big p {
    color: rgba(255, 255, 255, 0.68);
}
.term-float.small {
    right: 38px;
    top: 246px;
    width: 248px;
}
.term-float.dark {
    right: 25px;
    top: 270px;
    width: 310px;
    background: #101a1a;
    color: #fff;
    border-color: var(--line);
}
.term-float.dark p {
    color: rgba(255, 255, 255, 0.68);
}

.pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 10px;
    background: rgba(78, 204, 205, 0.14);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}
.pill.yellow {
    background: rgba(255, 212, 0, 0.18);
    color: #775f00;
}
.dark .pill.yellow {
    color: var(--yellow);
}

/* Index Bar */
.index-bar {
    position: relative;
    margin-top: -38px;
    z-index: 10;
}
.index-card {
    background: #fff;
    color: var(--ink-inverse);
    border-radius: 30px;
    padding: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line-dark);
}
.index-search {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0 18px;
    color: rgba(15, 30, 30, 0.48);
    background: #f7f7f2;
    font-weight: 600;
}
.alphabet {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.letter {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: rgba(15, 30, 30, 0.72);
}
.letter.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink-inverse);
}

/* Sections */
.glossary-section {
    padding-bottom: 92px;
    position: relative;
}
.glossary-section.alt {
    background: var(--bg-2);
}
.glossary-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}
.glossary-section-head .index-bar.wrap {
    padding: 0 !important;
    max-width: 580px !important;
    margin: 0 !important;
    width: 100% !important;
    flex-shrink: 0 !important;
}
.glossary-section-title {
    max-width: 700px;
}
.eyebrow {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.glossary-section h2 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0;
    color: var(--ink);
}
.glossary-section .sub {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.45;
    max-width: 620px;
}

.glossary-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.glossary-tab {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}
.glossary-tab.active {
    background: var(--cyan);
    color: #0a1515;
    border-color: var(--cyan);
}

/* Term Cards in Glossary Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.term-card {
    position: relative;
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
    padding: 26px;
    overflow: hidden;
}
.term-card:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -72px;
    top: -72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 204, 205, 0.38), transparent 66%);
    filter: blur(4px);
}
.term-card.highlight:before {
    background: radial-gradient(circle, rgba(255, 212, 0, 0.42), transparent 66%);
}
.term-card h3 {
    margin: 20px 0 10px;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: var(--ink);
}
.term-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.44;
    font-size: 15px;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
/* .card-meta span:not(.tag) {
    display: none !important;
} */
.tag {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(78, 204, 205, 0.14);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}
.read {
    position: absolute;
    left: 26px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-weight: 900;
    font-size: 14px;
}
.arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 212, 0, 0.14);
}

/* Section 02 - Guide */
.start-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    padding-top: 92px;
}
.light-panel {
    background: #fff;
    color: var(--ink-inverse);
    border-radius: 34px;
    padding: 34px;
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.light-panel:after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.45), transparent 68%);
    filter: blur(18px);
}
.light-panel h3 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 0 0 14px;
}
.light-panel p {
    color: rgba(15, 30, 30, 0.66);
    line-height: 1.5;
    margin: 0;
    max-width: 620px;
}
.route-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}
.route {
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    background: #f8f8f2;
}
.route strong {
    display: block;
    margin-bottom: 10px;
}
.route span {
    display: block;
    font-size: 14px;
    color: rgba(15, 30, 30, 0.62);
    line-height: 1.36;
}

.side-stack {
    display: grid;
    gap: 18px;
}
.mini-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    padding: 26px;
}
.mini-card strong {
    display: block;
    font-size: 22px;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.mini-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}
.mini-card.accent {
    background: linear-gradient(135deg, rgba(78, 204, 205, 0.22), rgba(255, 212, 0, 0.12));
}

/* CTA */
.glossary-cta {
    padding: 92px 0 110px;
}
.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    padding: 48px;
    background: linear-gradient(135deg, #172222, #0a1515);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}
.cta-card:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -120px;
    top: -180px;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.46), transparent 62%);
    filter: blur(12px);
}
.cta-card:after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    left: 22%;
    bottom: -250px;
    background: radial-gradient(circle, rgba(78, 204, 205, 0.36), transparent 64%);
    filter: blur(18px);
}
.cta-card > * {
    position: relative;
}
.cta-card h2 {
    font-size: 44px;
    line-height: 1.06;
    letter-spacing: -0.04em;
    margin: 0 0 12px;
    color: var(--ink);
}
.cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.45;
    max-width: 650px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Responsiveness */
@media (max-width: 980px) {
    .glossary-hero {
        padding: 54px 0 62px;
        min-height: 0;
    }
    .glossary-hero-grid,
    .start-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0 10px;
    }
    .term-float {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 450px !important;
    }
    .index-card {
        grid-template-columns: 1fr;
    }
    .alphabet {
        justify-content: flex-start;
    }
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .glossary-section-head {
        display: block;
    }
    .glossary-section-head .index-bar.wrap {
        max-width: 100% !important;
        margin-top: 24px !important;
    }
    .glossary-tabs {
        margin-top: 22px;
    }
    .cta-actions {
        justify-content: flex-start;
    }
    .cta-card h2,
    .glossary-section h2 {
        font-size: 34px;
    }
    .glossary-hero h1 {
        font-size: 48px;
    }
    .lead {
        font-size: 18px;
    }
}

@media (max-width: 620px) {
    .logo {
        font-size: 15px;
    }
    .logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }
    .btn {
        padding: 13px 16px;
        font-size: 14px;
    }
    .glossary-hero {
        padding: 38px 0 50px;
    }
    .kicker {
        font-size: 12px;
    }
    .glossary-hero-grid {
        gap: 24px;
    }
    .glossary-hero h1 {
        font-size: 40px;
        letter-spacing: -0.04em;
        margin: 20px 0 16px;
    }
    .lead {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    .search-panel {
        grid-template-columns: 1fr;
        border-radius: 24px;
        padding: 10px;
    }
    .search-box {
        height: 50px;
    }
    .search-panel .btn {
        justify-content: center;
    }
    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .metric {
        min-width: 0;
        padding: 15px;
    }
    .metric strong {
        font-size: 24px;
    }
    .hero-visual {
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    .orbit {
        border-radius: 30px;
    }
    .term-float {
        max-width: 100% !important;
        border-radius: 22px;
        padding: 20px;
    }
    .term-float h3 {
        font-size: 23px;
    }
    .index-bar {
        margin-top: -22px;
    }
    .index-card {
        border-radius: 24px;
        padding: 14px;
    }
    .letter {
        width: 32px;
        height: 32px;
    }
    .glossary-section {
        padding-bottom: 62px;
    }
    .glossary-section h2 {
        font-size: 30px;
    }
    .glossary-section .sub {
        font-size: 15px;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
    .term-card {
        min-height: 230px;
        border-radius: 24px;
    }
    .route-list {
        grid-template-columns: 1fr;
    }
    .light-panel {
        border-radius: 26px;
        padding: 26px;
    }
    .light-panel h3 {
        font-size: 28px;
    }
    .glossary-cta {
        padding: 66px 0 80px;
    }
    .cta-card {
        border-radius: 30px;
        padding: 30px;
    }
    .cta-card h2 {
        font-size: 30px;
    }
    .cta-card p {
        font-size: 16px;
    }
}

/* Предотвращение улетания sticky-закладок (bookmarks) при открытии модального окна (только для десктопа) */
@media (min-width: 901px) {
    body:has(#registration_popup) .bookmarks,
    body:has(#get_pptx_popup) .bookmarks,
    body:has(.css-si425x) .bookmarks,
    body:has([class*="MuiModal"]) .bookmarks,
    body:has([class*="MuiDialog"]) .bookmarks,
    body:has(#bonus_plus_popup:not(:empty)) .bookmarks,
    body:has(#bonusplus_popup:not(:empty)) .bookmarks {
        position: fixed !important;
        top: 100px !important;
        width: 342px !important;
    }
}

/* ==========================================================================
   Glossary Auto-Design styles (applied via JS only in /glossary/)
   ========================================================================== */
.glossary-detail .table-shell {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line, rgba(255, 255, 255, 0.16));
    background: var(--bg-2, #141d1d);
    margin: 28px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}
.glossary-detail .table-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan, #4ecccd), var(--yellow, #ffd400));
}
.glossary-detail .table-scroll {
    overflow-x: auto;
    width: 100%;
}
.glossary-detail .glossary-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    text-align: left;
}
.glossary-detail .glossary-table th,
.glossary-detail .glossary-table td {
    padding: 16px 20px;
    font-family: var(--font-family-base, "Manrope", sans-serif);
}
.glossary-detail .glossary-table th {
    background: rgba(78, 204, 205, 0.08);
    color: var(--cyan, #4ecccd);
    font-weight: 700;
    font-size: var(--body14-fs, 14px);
    border-bottom: 1px solid var(--line, rgba(255, 255, 255, 0.16));
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.glossary-detail .glossary-table td {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--body14-fs, 14px);
    border-bottom: 1px dashed var(--line, rgba(255, 255, 255, 0.16));
}
.glossary-detail .glossary-table tr:last-child td {
    border-bottom: none;
}
.glossary-detail .glossary-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Списки */
.glossary-detail .glossary-list {
    margin: 16px 0;
    padding-left: 24px;
    font-family: var(--font-family-base, "Manrope", sans-serif);
}
.glossary-detail .glossary-ul {
    list-style: none;
}
.glossary-detail .glossary-ul li {
    position: relative;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--body16-fs, 16px);
    line-height: 1.5;
}
.glossary-detail .glossary-ul li::before {
    content: "•";
    position: absolute;
    left: -16px;
    color: var(--cyan, #4ecccd);
    font-weight: bold;
}
.glossary-detail .glossary-ol {
    list-style-type: decimal;
    padding-left: 20px;
}
.glossary-detail .glossary-ol li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--body16-fs, 16px);
    line-height: 1.5;
    padding-left: 4px;
}

/* Цитаты blockquote */
.glossary-detail blockquote.glossary-quote {
    margin: 28px 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 8px;
}
.glossary-detail .glossary-quote-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan, #4ecccd);
    margin-bottom: 8px;
}
.glossary-detail .glossary-quote-header svg {
    display: inline-flex;
    align-items: center;
}
.glossary-detail .glossary-quote-header span {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.glossary-detail blockquote.glossary-quote p {
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

/* Шаги и карточки */
.glossary-detail .glossary-step-card {
    position: relative;
    margin: 24px 0;
    width: 100%;
}
.glossary-detail .glossary-step-card.bp-card--dashed-glow,
.glossary-detail .glossary-step-card.bp-card--feature {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
}
.glossary-detail .glossary-step-card .bp-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--cyan, #4ecccd);
    font-weight: 700;
    padding-right: 60px; /* Отступ справа, чтобы не перекрывалось цифрой */
}
.glossary-detail .glossary-step-card .bp-card__text {
    font-size: var(--body16-fs, 16px);
    line-height: 1.5;
    color: var(--text-secondary, #cacaca);
}
.glossary-detail .glossary-step-number {
    position: absolute;
    right: 24px;
    top: 16px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(78, 204, 205, 0.12);
    line-height: 1;
    user-select: none;
    font-family: var(--font-family-base, "Manrope", sans-serif);
}

/* Сброс гридов для сгруппированных в статье карточек */
.glossary-detail .bp-card[class*="bp-card--cta"] {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 40px;
    margin: 24px 0;
    width: 100%;
    box-sizing: border-box;
}
.glossary-detail .bp-card[class*="bp-card--cta"] .bp-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin: 0;
}
.glossary-detail .bp-card[class*="bp-card--cta"] .bp-card__text {
    font-size: var(--body16-fs, 16px);
    line-height: 1.5;
    color: var(--text-secondary, #cacaca);
    margin: 0;
}

/* End */
/* /local/components/bonusplus.blog/hero/templates/.default/style.css?1782807973627 */
/* /local/components/bonusplus.common/news/templates/.default/style.css?178282194034450 */
