:root {
    color-scheme: light;
    --bg: #f5f7fa;
    --surface: rgba(255, 255, 255, .88);
    --surface-solid: #fff;
    --surface-muted: #eef2f6;
    --text: #17202a;
    --muted: #687482;
    --line: rgba(23, 32, 42, .10);
    --brand: #ff4d24;
    --brand-2: #ff7a35;
    --brand-soft: rgba(255, 77, 36, .12);
    --shadow: 0 18px 55px rgba(31, 42, 55, .10);
    --header: rgba(245, 247, 250, .82);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --bg: #0b0e12;
    --surface: rgba(20, 25, 32, .88);
    --surface-solid: #141920;
    --surface-muted: #1b222b;
    --text: #f4f7fb;
    --muted: #9ba7b4;
    --line: rgba(255, 255, 255, .10);
    --brand: #ff633f;
    --brand-2: #ff9b52;
    --brand-soft: rgba(255, 99, 63, .15);
    --shadow: 0 22px 65px rgba(0, 0, 0, .36);
    --header: rgba(11, 14, 18, .82);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 88% 5%, var(--brand-soft), transparent 28rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    transition: background-color .25s ease, color .25s ease;
    overflow-x: clip;
}

a { color: inherit; }
.inner { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.header {
    position: sticky;
    inset-block-start: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    min-height: 76px;
    background: var(--header);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    box-shadow: none;
}
.header .inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header .left, .header .right { display: flex; align-items: center; gap: 10px; }
.header .logo {
    color: var(--text);
    font-size: 24px;
    font-weight: 850;
    letter-spacing: -.8px;
    text-decoration: none;
}
.header .logo::before { content: ""; display: inline-block; width: 35px; height: 35px; margin-right: 10px; border-radius: 11px; background: linear-gradient(145deg, transparent 0 28%, #fff 29% 36%, transparent 37% 48%, rgba(255,255,255,.72) 49% 56%, transparent 57%), linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 20px var(--brand-soft); }
.header .button, .theme-toggle {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--surface);
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.header .button { display: inline-flex; align-items: center; justify-content: center; }
.header .button:hover, .theme-toggle:hover { transform: translateY(-2px); border-color: var(--brand); }
.header .button.register { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.theme-toggle { width: 42px; padding: 0; display: inline-grid; place-items: center; font-size: 18px; }
.theme-toggle .theme-dark-icon { display: none; }
html[data-theme="dark"] .theme-toggle .theme-light-icon { display: none; }
html[data-theme="dark"] .theme-toggle .theme-dark-icon { display: inline; }

.main { min-height: calc(100vh - 76px); padding: 72px 0 90px; background: transparent; }
.main > .inner { position: relative; }
.h1_index, .article_page h1 {
    max-width: 900px;
    margin: 0;
    color: var(--text);
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 880;
}
.h1_index::after { content: "."; color: var(--brand); }
.h1_description { margin-top: 24px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.5; }

.search_block {
    display: flex;
    max-width: 820px;
    margin: 44px 0 56px;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-solid);
    box-shadow: var(--shadow);
}
.search_block .search_input {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 16px;
}
.search_block .search_input::placeholder { color: var(--muted); }
.search_block .search_btn, .save {
    min-height: 56px;
    padding: 0 26px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 28px var(--brand-soft);
}

.articles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.articles .marka {
    float: none;
    width: auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 8px 28px rgba(0,0,0,.04);
}
.articles .marka .marka_name {
    position: relative;
    min-height: 64px;
    padding: 20px 50px 20px 22px;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}
.articles .marka .marka_name::after { content: "+"; position: absolute; right: 20px; top: 17px; color: var(--brand); font-size: 24px; font-weight: 400; transition: transform .2s; }
.articles .marka.opened .marka_name::after { transform: rotate(45deg); }
.articles .marka .models { margin: 0; padding: 0 14px 14px; border: 0; background: transparent; }
.articles .marka .models .model { margin: 0; border-top: 1px solid var(--line); }
.articles .marka .models .model .model_name { padding: 14px 8px; color: var(--muted); font-weight: 650; cursor: pointer; }
.articles .marka .models .model .model_name:hover { color: var(--brand); }
.articles_list .article, .articles_list .empty, .articles_list .loading { margin: 0 0 8px; padding: 14px; border-radius: 12px; background: var(--surface-muted); color: var(--text); }

.add_article {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 28px;
}
.add_article_close {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--text);
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.add_article_close:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand);
    transform: rotate(90deg);
}

.article_page .inner, .add_article {
    max-width: 900px;
    padding: clamp(24px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.main > .inner .add_article {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding: 56px;
}
.article_page h1 { margin-bottom: 36px; font-size: clamp(38px, 6vw, 68px); }
.article_page p, .article_page li { color: var(--muted); font-size: 18px; line-height: 1.75; }
.article_page img { max-width: 100%; height: auto; border-radius: 18px; }

.add_article .row { margin: 0; }
.add_article .row-wide,
.add_article .row.preview,
.add_article .row.text,
.add_article .row:last-child { grid-column: 1 / -1; }
.add_article .row > span:first-child { display: block; margin-bottom: 8px; color: var(--text); font-size: 14px; font-weight: 750; }
.add_article input, .add_article select, .add_article textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: none;
    background: var(--surface-solid);
    color: var(--text);
    font: inherit;
}
.main .inner .add_article .row input[type="text"],
.main .inner .add_article .row select { width: 100%; }
.main .inner .add_article .row.preview .jqte .jqte_editor { min-height: 280px; height: 34vh; }
.main .inner .add_article .row.text .jqte .jqte_editor { min-height: 520px; height: 58vh; }
.add_article input:focus, .add_article select:focus, .add_article textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.jqte { border-color: var(--line) !important; border-radius: 12px !important; background: var(--surface-solid) !important; box-shadow: none !important; }
.jqte_editor, .jqte_toolbar { background: var(--surface-solid) !important; color: var(--text) !important; }
.notification { position: fixed; top: auto; right: auto; bottom: 28px; left: 50%; z-index: 200; width: max-content; height: auto; max-width: min(420px, calc(100vw - 28px)); transform: translateX(-50%); padding: 14px 20px; border-radius: 14px; background: var(--text); color: var(--bg); box-shadow: var(--shadow); }

.rally_editor_page { padding-top: 42px; }
.rally_editor_page .add_article { background: color-mix(in srgb, var(--surface-solid) 94%, transparent); }
.editor_intro { grid-column: 1 / -1; max-width: 760px; margin-bottom: 12px; }
.editor_badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.editor_intro h1 { margin: 18px 0 10px; font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -.045em; }
.editor_intro p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.editor_section_title { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; margin-top: 18px; padding-top: 30px; border-top: 1px solid var(--line); }
.editor_section_title > span { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border-radius: 13px; background: var(--brand-soft); color: var(--brand); font-size: 13px; font-weight: 900; }
.editor_section_title div { display: grid; gap: 3px; }
.editor_section_title b { font-size: 19px; }
.editor_section_title small, .field_hint { color: var(--muted); font-size: 13px; }
.add_article .row label { margin-bottom: 9px; font-size: 14px; font-weight: 750; }
.add_article input, .add_article select { min-height: 56px; padding-inline: 17px; border-radius: 14px; }
.add_article input::placeholder { color: color-mix(in srgb, var(--muted) 72%, transparent); }
.field_hint { display: block; margin: -4px 0 10px; }
.add_article .jqte { overflow: hidden; border: 1px solid var(--line) !important; border-radius: 16px !important; }
.add_article .jqte_toolbar { padding: 10px 12px !important; border-bottom: 1px solid var(--line) !important; background: var(--surface-muted) !important; }
.add_article .jqte_tool { margin: 2px !important; border: 0 !important; border-radius: 7px !important; background: var(--surface-solid) !important; }
.add_article .jqte_editor { padding: 24px !important; font-size: 17px; line-height: 1.65; }
html[data-theme="dark"] .add_article .jqte_toolbar {
    border-bottom-color: #cfd5dc !important;
    background: #eef1f4 !important;
}
html[data-theme="dark"] .add_article .jqte_tool,
html[data-theme="dark"] .add_article .jqte_tool:hover,
html[data-theme="dark"] .add_article .jqte_tool_depressed {
    border-color: transparent !important;
    background: #fff !important;
}
html[data-theme="dark"] .add_article .jqte_tool:hover { box-shadow: 0 0 0 1px #9aa3ad; }
html[data-theme="dark"] .add_article .jqte_tool_depressed { box-shadow: inset 0 0 0 1px #6f7882; }
html[data-theme="dark"] .add_article .jqte_tool_label,
html[data-theme="dark"] .add_article .jqte_tool_text { color: #20252b !important; }
html[data-theme="dark"] .add_article .jqte_formats,
html[data-theme="dark"] .add_article .jqte_fontsizes,
html[data-theme="dark"] .add_article .jqte_cpalette,
html[data-theme="dark"] .add_article .jqte_linkform { background: #fff !important; }
html[data-theme="dark"] .add_article .jqte_formats *,
html[data-theme="dark"] .add_article .jqte_fontsizes *,
html[data-theme="dark"] .add_article .jqte_linkform * { color: #20252b !important; }
.editor_actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; padding-top: 12px; }
.editor_actions .cancel { display: inline-flex; min-height: 56px; padding: 0 24px; align-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--muted); font-weight: 750; text-decoration: none; }
.main .inner .add_article .editor_actions .save { min-width: 230px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 12px 28px var(--brand-soft); font-size: 15px; }
.main .inner .add_article .editor_actions .save:hover { background: linear-gradient(135deg, var(--brand-2), var(--brand)); transform: translateY(-1px); }

@media (max-width: 860px) {
    .inner { width: min(100% - 28px, 1180px); }
    .articles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .header .button.login { display: none; }
    .main { padding-top: 52px; }
    .add_article { grid-template-columns: 1fr; }
    .add_article .row, .editor_intro, .editor_section_title { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
    .header .inner { min-height: 66px; }
    .header .logo { font-size: 20px; }
    .header .logo::before { width: 31px; height: 31px; margin-right: 7px; }
    .header .button.register { display: none; }
    .articles { grid-template-columns: 1fr; }
    .search_block { display: block; padding: 6px; margin-top: 32px; }
    .search_block .search_input, .search_block .search_btn { width: 100%; }
    .h1_index br { display: none; }
    .article_page .inner, .add_article { padding: 22px; border-radius: 20px; }
}

/* Championship */
.header .logo span { color: var(--brand); }
.header-portals { display: flex; gap: 5px; margin-left: 12px; padding-left: 16px; border-left: 1px solid var(--line); }
.header-portal-link { display: inline-flex; min-height: 36px; padding: 0 13px; align-items: center; border: 1px solid transparent; border-radius: 10px; color: var(--muted); font-size: 12px; font-weight: 750; text-decoration: none; transition: .18s ease; }
.header-portal-link:hover { border-color: var(--line); background: var(--surface-solid); color: var(--text); }
.header-portal-link.active { background: var(--brand-soft); color: var(--brand); }
.championship_page { padding-bottom: 110px; }
.championship_page > .inner { width: min(1180px, calc(100% - 40px)); }
.champ_hero { display: grid; grid-template-columns: 1fr 290px; gap: 60px; align-items: end; padding: 86px 0 64px; }
.champ_kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .13em; }
.champ_kicker i { width: 28px; height: 2px; background: var(--brand); }
.champ_hero h1 { margin: 22px 0 24px; font-size: clamp(50px, 7vw, 90px); line-height: .93; letter-spacing: -.065em; }
.champ_hero h1 em { color: var(--brand); font-style: normal; }
.champ_hero_copy > p { max-width: 700px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.champ_tags { display: flex; gap: 8px; margin-top: 30px; }
.champ_tags span { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.champ_badge { min-height: 210px; padding: 23px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(145deg, var(--surface-solid), var(--surface-muted)); box-shadow: var(--shadow); }
.champ_badge > span { color: var(--brand); font-size: 70px; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.champ_badge div { padding-top: 18px; border-top: 1px solid var(--line); }
.champ_badge b, .champ_badge small { display: block; }
.champ_badge b { font-size: 14px; }
.champ_badge small { margin-top: 6px; color: var(--muted); font-size: 11px; }
.champ_tabs { position: sticky; top: 72px; z-index: 20; display: flex; gap: 6px; padding: 7px; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(16px); }
.champ_tab { min-height: 51px; padding: 0 22px; border: 0; border-radius: 12px; background: transparent; color: var(--muted); font: inherit; font-size: 14px; font-weight: 800; cursor: pointer; }
.champ_tab span { margin-right: 8px; font-size: 10px; opacity: .65; }
.champ_tab.active { background: var(--text); color: var(--bg); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.champ_panel { padding-top: 72px; }
.champ_panel[hidden] { display: none; }
.champ_section_head { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 50px; margin-bottom: 34px; }
.champ_section_head > span { grid-column: 1 / -1; color: var(--brand); font-size: 11px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.champ_section_head h2 { margin: 8px 0 0; font-size: clamp(34px, 4vw, 53px); line-height: 1.03; letter-spacing: -.05em; }
.champ_section_head p { align-self: end; margin: 0 0 4px; color: var(--muted); line-height: 1.65; }
.game_grid, .fund_grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.game_card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface-solid); box-shadow: 0 16px 48px rgba(31,42,55,.07); }
.game_top { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; }
.game_number { color: var(--muted); font-size: 11px; font-weight: 850; }
.platform_badge { padding: 7px 11px; border-radius: 999px; color: #fff; background: #111; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.game_art { position: relative; height: 230px; margin: 0 12px; overflow: hidden; display: grid; place-items: center; border-radius: 20px; }
.game_mobile .game_art { background: radial-gradient(circle at 72% 25%, rgba(255,255,255,.25), transparent 22%), linear-gradient(145deg, #f44b24, #821b18 72%); }
.game_mobile .game_art::before, .game_mobile .game_art::after { content: ""; position: absolute; width: 150%; height: 1px; background: rgba(255,255,255,.21); transform: rotate(-24deg); }
.game_mobile .game_art::after { transform: rotate(24deg); }
.game_mobile .game_art strong { z-index: 1; color: #fff; font-size: 82px; font-style: italic; letter-spacing: -.09em; text-shadow: 0 16px 40px rgba(0,0,0,.25); }
.game_mobile .game_art strong span { color: #ffdc43; }
.game_mobile .game_art > small { position: absolute; right: 18px; bottom: 15px; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 850; letter-spacing: .18em; }
.game_pc .game_art { background: linear-gradient(#f2a16f 0 42%, #d6a576 43% 53%, #47745f 54% 72%, #283f3b 73%); }
.game_pc .game_art::after { content: ""; position: absolute; left: -10%; right: -10%; bottom: 23%; height: 33%; background: #314e46; clip-path: polygon(0 80%, 15% 40%, 32% 70%, 48% 18%, 63% 72%, 82% 32%, 100% 75%, 100% 100%, 0 100%); }
.game_pc .game_art strong { z-index: 2; color: #fff8eb; font: 800 56px/1 Georgia, serif; letter-spacing: -.07em; text-shadow: 0 8px 22px rgba(0,0,0,.2); }
.game_pc .game_art strong small { display: inline-block; margin: 0 7px; font-size: 17px; font-style: italic; }
.art_sun { position: absolute; top: 28px; right: 42px; width: 48px; height: 48px; border-radius: 50%; background: #ffe2a4; }
.game_body { padding: 30px; }
.game_label { color: var(--brand); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.game_body h3 { margin: 8px 0 13px; font-size: 34px; letter-spacing: -.045em; }
.game_body > p { min-height: 78px; margin: 0; color: var(--muted); line-height: 1.6; }
.game_body ul { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.game_body li { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.game_body li b { color: var(--muted); font-weight: 600; }
.game_body li span { font-weight: 750; }
.game_note { display: flex; gap: 12px; margin-top: 21px; padding: 15px; border-radius: 14px; background: var(--surface-muted); }
.game_note > span { flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; }
.game_note p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.compare_block { display: grid; grid-template-columns: 280px 1fr; gap: 52px; margin-top: 70px; padding: 38px; border-radius: 28px; background: #11151a; color: #f7f7f5; }
.compare_intro > span { color: var(--brand); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.compare_intro h2 { margin: 12px 0 0; font-size: 31px; line-height: 1.1; letter-spacing: -.04em; }
.compare_row { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px; padding: 18px 0; align-items: center; border-bottom: 1px solid rgba(255,255,255,.11); color: #c3c7cc; font-size: 12px; }
.compare_row:last-child { border: 0; }
.compare_header { padding-top: 0; color: #737a82; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.compare_row strong { color: #fff; font-size: 14px; }
.compare_row strong small { display: block; margin-top: 5px; color: var(--brand); font-size: 9px; letter-spacing: .1em; }
.future_game { display: grid; grid-template-columns: 180px 1fr auto; gap: 30px; align-items: center; margin-top: 18px; padding: 27px 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.future_game span { color: var(--brand); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.future_game h3 { margin: 5px 0 0; font-size: 25px; }
.future_game p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.future_game > b { color: var(--brand); font-size: 10px; letter-spacing: .1em; }
.fund_total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding: 34px 38px; border-radius: 26px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; }
.fund_total span, .fund_total strong { display: block; }
.fund_total span { font-size: 11px; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; opacity: .8; }
.fund_total strong { margin-top: 7px; font-size: 52px; letter-spacing: -.06em; }
.fund_total p { margin: 0; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: 12px; font-weight: 750; }
.fund_total i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.14); }
.fund_card { padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface-solid); }
.fund_card_head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.fund_card_head span { color: var(--brand); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.fund_card_head h3 { margin: 8px 0 0; font-size: 26px; letter-spacing: -.035em; }
.fund_card_head > b { font-size: 27px; letter-spacing: -.04em; }
.fund_progress { height: 7px; margin-top: 30px; overflow: hidden; border-radius: 10px; background: var(--surface-muted); }
.fund_progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.fund_card > small { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; }
.prize_list { margin: 28px 0 0; padding: 0; list-style: none; }
.prize_list li { display: flex; min-height: 58px; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); font-size: 13px; }
.prize_list li span { display: flex; align-items: center; gap: 12px; }
.prize_list li span b { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: var(--surface-muted); color: var(--brand); }
.prize_list li strong { font-size: 15px; }
.fund_info { display: grid; grid-template-columns: 180px 1fr; gap: 30px; margin-top: 18px; padding: 26px 30px; border: 1px solid var(--line); border-radius: 20px; }
.fund_info span { color: var(--brand); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.fund_info p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

@media (max-width: 850px) {
    .champ_hero { grid-template-columns: 1fr; }
    .champ_badge { display: none; }
    .champ_section_head { grid-template-columns: 1fr; }
    .game_grid, .fund_grid { grid-template-columns: 1fr; }
    .compare_block { grid-template-columns: 1fr; gap: 28px; }
    .future_game { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 580px) {
    .championship_page > .inner { width: min(100% - 28px, 1180px); }
    .champ_hero { padding: 56px 0 44px; }
    .champ_hero h1 { font-size: 48px; }
    .champ_hero_copy > p { font-size: 16px; }
    .champ_tabs { top: 72px; }
    .champ_tab { flex: 1; padding-inline: 10px; font-size: 12px; }
    .champ_panel { padding-top: 50px; }
    .game_art { height: 190px; }
    .game_body, .fund_card { padding: 22px; }
    .game_body > p { min-height: auto; }
    .compare_block { margin-top: 45px; padding: 25px 20px; }
    .compare_header { display: none; }
    .compare_row { grid-template-columns: 1fr; gap: 7px; }
    .fund_total { padding: 26px 22px; }
    .fund_total strong { font-size: 42px; }
    .fund_total p { font-size: 10px; }
    .fund_card_head { display: block; }
    .fund_card_head > b { display: block; margin-top: 20px; }
    .fund_info { grid-template-columns: 1fr; gap: 10px; }
}

/* Rally home — route-specific editorial redesign */
.rally_home { padding-bottom: 0; overflow: hidden; }
.rally_home > .inner { width: min(1280px, calc(100% - 48px)); }
.rally_sections { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface-muted) 92%, var(--bg)); backdrop-filter: blur(18px); box-shadow: 0 8px 24px rgba(31,42,55,.06); }
.rally_sections .inner { display: flex; width: min(1440px, calc(100% - 32px)); height: auto; margin: 0 auto; padding: 12px 0; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 8px; overflow: visible; }
.rally_sections .inner::-webkit-scrollbar { display: none; }
.rally_section { display: inline-flex; flex: 1 1 auto; min-height: 48px; padding: 0 18px; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, var(--text) 18%, transparent); border-radius: 12px; background: var(--surface-solid); color: var(--text); font: inherit; font-size: 14px; font-weight: 720; text-align: center; text-decoration: none; white-space: nowrap; cursor: pointer; box-shadow: 0 3px 10px rgba(31,42,55,.07), inset 0 1px 0 rgba(255,255,255,.55); transition: border-color .18s, background .18s, color .18s, transform .18s, box-shadow .18s; }
.rally_section:hover { border-color: color-mix(in srgb, var(--brand) 65%, var(--line)); background: color-mix(in srgb, var(--brand-soft) 55%, var(--surface-solid)); color: var(--brand); box-shadow: 0 8px 20px rgba(31,42,55,.12), inset 0 1px 0 rgba(255,255,255,.55); transform: translateY(-2px); }
.rally_section.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.rally_section > span:not(.section_live) { margin-left: 6px; color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.rally_section > span.sale_percent:not(.section_live) { display: inline-grid; width: 23px; height: 23px; margin-left: 8px; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-size: 13px; font-weight: 900; line-height: 1; }
.rally_section_featured { display: grid; flex-grow: 0; grid-template-columns: auto auto; grid-template-rows: auto auto; column-gap: 10px; min-height: 52px; padding: 7px 20px 7px 16px; align-content: center; border-color: transparent; background: #11151a; color: #fff; text-align: left; }
.rally_section_featured:hover { border-color: transparent; background: var(--brand); color: #fff; }
.rally_section_featured .section_live { grid-row: 1 / 3; align-self: center; width: 8px; height: 8px; border-radius: 50%; background: #ff5635; box-shadow: 0 0 0 5px rgba(255,86,53,.16); }
.rally_section_featured b { font-size: 14px; }
.rally_section_featured small { color: #8f98a4; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.rally_section_featured:hover small { color: rgba(255,255,255,.75); }
.rally_section_featured.active { border-color: transparent; background: var(--brand); color: #fff; }
html[data-theme="dark"] .rally_sections { border-bottom-color: rgba(255,255,255,.12); background: #11161d; box-shadow: 0 10px 28px rgba(0,0,0,.26); }
html[data-theme="dark"] .rally_section:not(.rally_section_featured) { border-color: rgba(255,255,255,.16); background: #1b222b; box-shadow: 0 4px 12px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.055); }
html[data-theme="dark"] .rally_section:not(.rally_section_featured):hover { border-color: var(--brand); background: #242c36; color: #fff; box-shadow: 0 9px 22px rgba(0,0,0,.32), 0 0 0 1px color-mix(in srgb, var(--brand) 25%, transparent); }
html[data-theme="dark"] .rally_section.active:not(.rally_section_featured) { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.rally_section_page { min-height: calc(100vh - 72px); padding: 0 0 100px; }
.rally_section_page > .inner { width: min(1280px, calc(100% - 48px)); padding-top: clamp(70px, 9vw, 128px); }
.section_page_eyebrow { color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.section_page_title { max-width: 980px; margin: 20px 0 24px; font-size: clamp(52px, 7vw, 96px); line-height: .92; letter-spacing: -.065em; }
.section_page_intro { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.6; }
.section_page_grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; margin-top: 72px; }
.section_page_card { min-height: 250px; padding: clamp(26px, 4vw, 46px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface-solid); }
.section_page_card:first-child { background: linear-gradient(145deg, var(--surface-solid), var(--surface-muted)); }
.section_page_card span { color: var(--brand); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.section_page_card h2 { max-width: 520px; margin: 18px 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: -.045em; }
.section_page_card p { max-width: 560px; margin: 0; color: var(--muted); line-height: 1.65; }
.section_page_status { display: flex; align-items: flex-end; justify-content: space-between; }
.section_page_status strong { font-size: clamp(48px, 6vw, 76px); letter-spacing: -.07em; }
.section_page_status i { width: 13px; height: 13px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 8px var(--brand-soft); }
@media (max-width: 760px) {
    .rally_section_page > .inner { width: min(100% - 28px, 1280px); padding-top: 60px; }
    .section_page_grid { grid-template-columns: 1fr; margin-top: 48px; }
}
.rally_home .rally_hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .55fr); gap: clamp(48px, 8vw, 120px); align-items: center; padding: 76px 0 96px; }
.rally_home .rally_hero::before { content: ""; position: absolute; left: -22vw; top: 12%; width: 42vw; height: 42vw; border: 1px solid var(--line); border-radius: 50%; opacity: .7; }
.rally_home .rally_hero::after { top: 6%; right: -8%; width: 520px; height: 520px; background: radial-gradient(circle, var(--brand-soft), transparent 66%); }
.rally_home .hero_copy { position: relative; z-index: 1; }
.rally_home .hero_eyebrow { margin-bottom: 28px; color: var(--muted); letter-spacing: .14em; }
.rally_home .hero_eyebrow::before { display: none; }
.rally_home .hero_eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 6px var(--brand-soft); }
.rally_home .inner .h1_index { max-width: 860px; font-size: clamp(58px, 7.1vw, 104px); font-weight: 820; line-height: .9; letter-spacing: -.068em; }
.rally_home .h1_index span { color: var(--brand); }
.rally_home .inner .h1_description { max-width: 640px; margin-top: 32px; font-size: clamp(18px, 1.7vw, 22px); }
.search_area { position: relative; width: min(100%, 680px); margin-top: 42px; }
.rally_home .inner .search_block { width: 100%; margin-top: 0; border-radius: 999px; box-shadow: 0 24px 70px rgba(31,42,55,.13); }
.rally_home .inner .search_block .search_btn { min-width: 126px; border-radius: 999px; }
.search_results { position: absolute; z-index: 20; top: calc(100% + 10px); left: 0; right: 0; display: none; max-height: 330px; padding: 8px; overflow-y: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface-solid); box-shadow: 0 22px 65px rgba(20,28,38,.18); }
.search_results.visible { display: block; }
.search_result { display: flex; width: 100%; min-height: 54px; padding: 8px 10px 8px 16px; align-items: center; justify-content: space-between; gap: 16px; border: 0; border-radius: 13px; background: transparent; color: var(--text); font: inherit; text-align: left; cursor: pointer; }
.search_result:hover, .search_result:focus-visible { outline: 0; background: var(--surface-muted); }
.search_result strong { font-size: 15px; }
.search_result span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.search_result span::after { content: "→"; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--brand-soft); color: var(--brand); font-size: 14px; }
.search_empty { padding: 16px; color: var(--muted); font-size: 14px; }
.hero_hint { margin: 14px 0 0 23px; color: var(--muted); font-size: 12px; }
.hero_hint span { color: var(--text); font-weight: 750; }
.hero_panel { position: relative; min-height: 500px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(155deg, var(--surface-solid), var(--surface-muted)); box-shadow: var(--shadow); }
.hero_panel_top { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.hero_panel_top b { color: var(--brand); font-size: 12px; }
.hero_orbit { position: absolute; inset: 50% auto auto 50%; width: 270px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%, -55%); }
.hero_orbit::before, .hero_orbit::after { content: ""; position: absolute; border-radius: 50%; }
.hero_orbit::before { inset: 32px; border: 1px dashed color-mix(in srgb, var(--brand) 45%, transparent); animation: rally-spin 22s linear infinite; }
.hero_orbit::after { top: 28px; left: 48%; width: 13px; height: 13px; background: var(--brand); box-shadow: 0 0 24px var(--brand); }
.hero_orbit span { position: absolute; inset: 50% auto auto 50%; color: var(--text); font-size: 116px; font-weight: 950; letter-spacing: -.1em; transform: translate(-54%, -55%); }
.hero_panel_bottom { position: absolute; left: 24px; right: 24px; bottom: 25px; display: flex; align-items: end; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.hero_panel_bottom strong { font-size: 46px; line-height: .9; letter-spacing: -.06em; }
.hero_panel_bottom span { color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; }
@keyframes rally-spin { to { transform: rotate(360deg); } }
.catalog_section { position: relative; padding: 96px 0 120px; }
.catalog_section::before { content: ""; position: absolute; z-index: -1; top: 0; bottom: 0; left: 50%; width: 100vw; background: color-mix(in srgb, var(--surface-muted) 65%, transparent); border-top: 1px solid var(--line); transform: translateX(-50%); }
.rally_home .catalog_heading { margin-bottom: 34px; }
.rally_home .catalog_heading span { letter-spacing: .15em; }
.rally_home .catalog_heading h2 { margin-top: 10px; font-size: clamp(38px, 5vw, 62px); letter-spacing: -.055em; }
.rally_home .inner .articles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.rally_home .inner .articles .marka { border-radius: 14px; box-shadow: none; }
.rally_home .inner .articles .marka:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(31,42,55,.08); }
.rally_home .inner .articles .marka.search_hit { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft), 0 18px 42px rgba(31,42,55,.12); }
.rally_home .inner .articles .marka .marka_name { min-height: 66px; padding: 22px 52px 20px 21px; }
.rally_home .inner .articles .marka .marka_name::after { content: "↗"; display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--surface-muted); font-size: 15px; }
.rally_home .inner .articles .marka.opened .marka_name::after { background: var(--brand); color: #fff; transform: translateY(-50%) rotate(90deg); }
.rally_footer { position: relative; overflow: hidden; padding: 96px 0 30px; background: #101216; color: #f8f8f6; }
.rally_footer::after { content: "RALLY"; position: absolute; right: -30px; bottom: -85px; color: rgba(255,255,255,.025); font-size: clamp(180px, 28vw, 480px); font-weight: 950; line-height: .7; letter-spacing: -.09em; pointer-events: none; }
.rally_footer .inner { position: relative; z-index: 1; width: min(1280px, calc(100% - 48px)); }
.footer_lead { display: grid; grid-template-columns: .6fr 1.5fr auto; gap: 40px; align-items: start; padding-bottom: 96px; }
.footer_logo { color: #fff; font-size: 19px; font-weight: 900; letter-spacing: .14em; text-decoration: none; }
.footer_logo span { color: var(--brand); }
.footer_lead h2 { margin: -8px 0 0; font-size: clamp(42px, 5.5vw, 76px); line-height: .98; letter-spacing: -.055em; }
.footer_cta { display: inline-flex; min-height: 58px; padding: 0 22px; align-items: center; gap: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff; font-size: 14px; font-weight: 750; text-decoration: none; transition: .2s ease; }
.footer_cta span { color: var(--brand); font-size: 19px; }
.footer_cta:hover { border-color: var(--brand); background: var(--brand); }
.footer_cta:hover span { color: #fff; }
.footer_bottom { display: flex; justify-content: space-between; gap: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: #8e929a; font-size: 12px; }
.footer_bottom p { margin: 0; }
.footer_bottom div { display: flex; gap: 28px; }
.footer_bottom a { color: #c6c8cc; text-decoration: none; }
.footer_bottom a:hover { color: #fff; }
@media (max-width: 980px) {
    .rally_home .rally_hero { grid-template-columns: 1fr; min-height: auto; }
    .hero_panel { display: none; }
    .rally_home .inner .articles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer_lead { grid-template-columns: 1fr auto; }
    .footer_lead h2 { grid-row: 2; }
    .footer_cta { grid-row: 2; }
}
@media (max-width: 700px) {
    .rally_home > .inner, .rally_footer .inner { width: min(100% - 28px, 1280px); }
    .rally_sections .inner { width: 100%; margin: 0; padding-inline: 14px; justify-content: flex-start; flex-wrap: nowrap; gap: 7px; overflow-x: auto; scroll-padding-inline: 14px; }
    .rally_section { flex: 0 0 auto; min-height: 46px; padding-inline: 15px; font-size: 13px; }
    .rally_home .rally_hero { padding: 58px 0 70px; }
    .rally_home .inner .h1_index { font-size: clamp(48px, 15vw, 68px); line-height: .94; }
    .rally_home .inner .h1_description { margin-top: 24px; font-size: 17px; }
    .search_area { margin-top: 30px; }
    .hero_hint { display: none; }
    .catalog_section { padding: 68px 0 82px; }
    .rally_home .catalog_heading { display: block; }
    .rally_home .catalog_heading p { margin-top: 12px; }
    .rally_home .inner .articles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer_lead { display: block; padding-bottom: 70px; }
    .footer_lead h2 { margin: 42px 0 34px; }
    .footer_bottom, .footer_bottom div { flex-direction: column; }
    .footer_bottom div { gap: 14px; }
}
@media (max-width: 760px) {
    .header-portals { margin-left: 6px; padding-left: 8px; }
    .header-portal-link { padding-inline: 9px; font-size: 11px; }
}
@media (max-width: 580px) {
    .header .logo { font-size: 15px; letter-spacing: .06em; }
    .header-portals { gap: 2px; }
    .header-portal-link { min-height: 34px; padding-inline: 7px; font-size: 0; }
    .header-portal-link::after { font-size: 11px; }
    .header-portal-link:first-child::after { content: "Rally"; }
    .header-portal-link:last-child::after { content: "A-EL"; }
    .header .right .button.register { display: none; }
}
@media (max-width: 430px) {
    .rally_home .inner .articles { grid-template-columns: 1fr; }
    .rally_home .inner .search_block .search_btn { min-width: 94px; }
}
@media (prefers-reduced-motion: reduce) { .hero_orbit::before { animation: none; } }

/* Rally 2026: unified visual system */
.header { min-height: 72px; background: color-mix(in srgb, var(--bg) 86%, transparent); }
.header .inner { min-height: 72px; }
.header .logo { display: inline-flex; align-items: center; padding: 0 !important; background: none !important; color: var(--text) !important; font-size: 20px; font-weight: 900; letter-spacing: .11em; }
.header .logo::before { display: none; content: none; }
.header .button.register { min-height: 44px; padding-inline: 20px; border-radius: 999px; }

.main { height: auto; overflow: visible; padding: 0 0 100px; }
.main > .inner { height: auto; margin-top: 0; padding: 0; }
.rally_hero { position: relative; padding: 92px 0 76px; }
.rally_hero::after { content: ""; position: absolute; z-index: -1; top: 34px; right: 3%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--brand-soft), transparent 68%); filter: blur(4px); }
.hero_eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; color: var(--brand); font-size: 13px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero_eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: var(--brand); }
.main .inner .h1_index { max-width: 820px; margin: 0; color: var(--text); font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; font-size: clamp(48px, 6vw, 76px); font-weight: 760; line-height: 1.02; letter-spacing: -.052em; }
.main .inner .h1_index::after { display: none; }
.main .inner .h1_description { max-width: 690px; margin: 24px 0 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.main .inner .search_block { display: flex; width: min(100%, 720px); max-width: none; margin: 38px 0 0; padding: 6px; align-items: center; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-solid); box-shadow: 0 18px 50px rgba(31,42,55,.10); }
.search_icon { flex: 0 0 22px; width: 22px; height: 22px; margin-left: 14px; border: 2px solid var(--muted); border-radius: 50%; opacity: .65; position: relative; }
.search_icon::after { content: ""; position: absolute; right: -5px; bottom: -3px; width: 7px; height: 2px; border-radius: 2px; background: var(--muted); transform: rotate(45deg); }
.main .inner .search_block .search_input { width: auto; height: 54px; flex: 1; padding: 0 17px; border: 0; background: transparent; color: var(--text); font-size: 16px; }
.main .inner .search_block .search_btn { width: auto; min-width: 112px; height: 50px; padding: 0 22px; border: 0; border-radius: 13px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 14px; font-weight: 800; box-shadow: 0 10px 24px var(--brand-soft); }
.main .inner .search_block .search_btn:hover { background: linear-gradient(135deg, var(--brand-2), var(--brand)); transform: translateY(-1px); }
.catalog_heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 0 0 24px; }
.catalog_heading span { color: var(--brand); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.catalog_heading h2 { margin: 7px 0 0; color: var(--text); font-size: clamp(27px, 3vw, 38px); line-height: 1.15; letter-spacing: -.035em; }
.catalog_heading p { margin: 0 0 5px; color: var(--muted); font-size: 14px; }
.main .inner .articles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: start; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--text); }
.main .inner .articles .marka { width: auto; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface-solid); color: var(--text); box-shadow: 0 5px 18px rgba(31,42,55,.035); transition: border-color .2s, box-shadow .2s, transform .2s; }
.main .inner .articles .marka:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); box-shadow: 0 12px 30px rgba(31,42,55,.07); transform: translateY(-1px); }
.main .inner .articles .marka .marka_name { min-height: 60px; height: auto; padding: 20px 50px 18px 20px; color: var(--text); font-size: 15px; font-weight: 760; line-height: 1.3; }
.main .inner .articles .marka .marka_name::after { content: "+"; top: 50%; right: 19px; width: auto; height: auto; background: none; color: var(--muted); font-size: 22px; font-weight: 350; line-height: 1; transform: translateY(-50%); }
.main .inner .articles .marka.opened .marka_name::after { color: var(--brand); transform: translateY(-50%) rotate(45deg); }
.main .inner .articles .marka .models { margin: 0; padding: 0 14px 14px; }
.main .inner .articles .marka .models .model { border: 0; border-top: 1px solid var(--line); }
.main .inner .articles .marka .models .model:first-child { border-top: 1px solid var(--line); }
.main .inner .articles .marka .models .model .model_name { height: auto; min-height: 47px; padding: 14px 7px; color: var(--muted); font-size: 14px; line-height: 1.35; }

@media (max-width: 860px) {
    .rally_hero { padding: 68px 0 58px; }
    .main .inner .articles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
    .main > .inner { width: min(100% - 28px, 1180px); }
    .rally_hero { padding: 52px 0 48px; }
    .main .inner .h1_index { font-size: 43px; }
    .main .inner .h1_description { font-size: 16px; }
    .main .inner .search_block { display: flex; }
    .search_icon { display: none; }
    .main .inner .search_block .search_input { min-width: 0; }
    .main .inner .search_block .search_btn { min-width: 92px; padding-inline: 16px; }
    .main .inner .articles { grid-template-columns: 1fr; }
}
