:root {
    --bg: #07080e;
    --bg-soft: #0d111c;
    --panel: #111622;
    --panel-2: #151b29;
    --line: rgba(255, 255, 255, .09);
    --line-strong: rgba(255, 255, 255, .16);
    --text: #f6f7fb;
    --muted: #aab1c0;
    --muted-2: #747e91;
    --red: #d92832;
    --red-2: #f04349;
    --cyan: #43b5d8;
    --gold: #f1b44c;
    --green: #34c978;
    --shadow: 0 22px 60px rgba(0, 0, 0, .35);
    --radius: 6px;
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Cairo", Tahoma, Arial, sans-serif;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(21, 25, 37, .94), rgba(7, 8, 14, 1) 270px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 32px),
        var(--bg);
    letter-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    display: block;
}

button,
input {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 10, 17, .92);
    backdrop-filter: blur(14px);
}

.top-strip {
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.top-strip__inner,
.top-strip__meta,
.main-nav__inner {
    display: flex;
    align-items: center;
}

.top-strip__inner {
    min-height: 44px;
    justify-content: space-between;
    gap: 16px;
}

.top-strip__meta {
    gap: 10px;
    white-space: nowrap;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red-2);
    box-shadow: 0 0 12px rgba(240, 67, 73, .8);
}

.top-search {
    width: min(320px, 48vw);
    height: 34px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, .22);
}

.top-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    padding: 0 12px;
}

.top-search button {
    width: 42px;
    height: 100%;
    border: 0;
    color: var(--text);
    background: rgba(255, 255, 255, .05);
}

.brand-row {
    min-height: 86px;
    display: grid;
    place-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 76px;
    height: 72px;
    object-fit: contain;
}

.brand__text {
    display: grid;
    gap: 2px;
    text-align: start;
}

.brand__text strong {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, .18);
}

.brand__text small {
    color: var(--red-2);
    font-size: 12px;
    font-weight: 800;
}

.main-nav {
    border-top: 1px solid var(--line);
    background: rgba(12, 14, 22, .95);
}

.main-nav__inner {
    min-height: 50px;
    justify-content: space-between;
    gap: 16px;
}

.nav-links {
    display: flex;
    align-items: stretch;
    gap: 2px;
}

.nav-links a {
    position: relative;
    min-height: 50px;
    display: grid;
    place-items: center;
    padding: 0 15px;
    color: #e8ebf3;
    font-size: 14px;
    font-weight: 800;
    border-inline-start: 1px solid rgba(255, 255, 255, .05);
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 22%;
    left: 22%;
    bottom: 0;
    height: 2px;
    background: var(--red-2);
    transform: scaleX(0);
    transition: transform .2s ease;
    box-shadow: 0 0 18px rgba(240, 67, 73, .9);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.subscribe-btn,
.read-more,
.newsletter-panel button {
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    background: linear-gradient(180deg, #e23a40, #b91d27);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 12px 26px rgba(217, 40, 50, .22);
}

.subscribe-btn {
    display: inline-grid;
    min-width: 132px;
    height: 36px;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 36px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.flash-message {
    margin-top: 18px;
    padding: 12px 16px;
    border: 1px solid rgba(52, 201, 120, .3);
    color: #d8ffe8;
    background: rgba(52, 201, 120, .12);
}

.hero-section {
    padding: 34px 0 24px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background:
        linear-gradient(135deg, rgba(217, 40, 50, .12), transparent 36%),
        #06070c;
}

.hero-swiper {
    position: relative;
    width: 100%;
    height: 544px;
    min-height: 544px;
    isolation: isolate;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.hero-card,
.side-hero-card {
    position: relative;
    height: 100%;
    min-height: 272px;
    overflow: hidden;
    background: #080a12;
}

.hero-card img,
.side-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card::after,
.side-hero-card::after,
.article-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 50%, rgba(217, 40, 50, .18), transparent 34%),
        linear-gradient(270deg, rgba(4, 5, 9, .96) 0%, rgba(4, 5, 9, .72) 42%, rgba(4, 5, 9, .2) 100%);
    pointer-events: none;
}

.hero-card__overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    padding: 40px 42px 60px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

.hero-card__kicker,
.hero-card__footer,
.hero-card__meta,
.hero-swiper__chrome,
.hero-arrows {
    display: flex;
    align-items: center;
}

.hero-card__kicker {
    gap: 10px;
    margin-bottom: 14px;
}

.hero-live {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 3px 11px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    background: rgba(217, 40, 50, .92);
    box-shadow: 0 0 24px rgba(217, 40, 50, .34);
}

.hero-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 14px rgba(255, 255, 255, .95);
}

.hero-card__overlay h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(32px, 3.8vw, 52px);
    line-height: 1.2;
    font-weight: 900;
}

.hero-card__overlay p {
    max-width: 610px;
    margin: 18px 0 0;
    color: #d7dce7;
    font-size: 16px;
    line-height: 1.9;
}

.hero-card__footer {
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-card__meta {
    gap: 12px;
    flex-wrap: wrap;
    color: #c5ccda;
    font-size: 13px;
    font-weight: 800;
}

.hero-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-card__meta span:not(:first-child)::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
}

.read-more {
    display: inline-grid;
    min-width: 136px;
    height: 44px;
    place-items: center;
    font-weight: 900;
}

.hero-swiper__chrome {
    position: absolute;
    z-index: 5;
    right: 34px;
    left: 34px;
    bottom: 24px;
    justify-content: space-between;
    gap: 16px;
    pointer-events: none;
}

.hero-swiper .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: none;
    pointer-events: auto;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    opacity: .35;
    transition: width .25s ease, opacity .25s ease, background .25s ease;
}

.swiper-pagination-bullet-active {
    background: var(--red-2);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet {
    width: 24px;
    height: 4px;
    border-radius: 0;
    opacity: .28;
}

.hero-swiper .swiper-pagination-bullet-active {
    width: 46px;
    box-shadow: 0 0 18px rgba(240, 67, 73, .75);
}

.hero-arrows {
    gap: 8px;
    pointer-events: auto;
}

.hero-arrows button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    background: rgba(8, 10, 17, .72);
    backdrop-filter: blur(10px);
    font-size: 28px;
    line-height: 1;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-arrows button:hover {
    border-color: rgba(240, 67, 73, .7);
    background: rgba(217, 40, 50, .9);
    transform: translateY(-1px);
}

.hero-side {
    display: grid;
    grid-template-columns: 1fr;
    border-inline-start: 1px solid var(--line-strong);
    gap: 0;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.hero-side__top {
    display: grid;
    grid-template-rows: repeat(2, 180px);
    min-height: 0;
}

.side-hero-card {
    height: auto;
    min-height: 0;
    border-bottom: 1px solid var(--line-strong);
    position: relative;
}

.side-hero-card:last-child {
    border-bottom: 0;
}

.side-hero-card a {
    position: relative;
    z-index: 2;
    inset: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.side-hero-card span,
.video-card__body span,
.infographic-card span,
.category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 10px;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    background: rgba(217, 40, 50, .88);
}

.side-hero-card strong {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.hero-side__mini {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    min-height: 0;
    background: rgba(255, 255, 255, .025);
    grid-column: 1 / -1;
}

.hero-mini-card {
    min-height: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background:
        linear-gradient(90deg, rgba(67, 181, 216, .08), transparent 58%),
        rgba(9, 12, 20, .96);
    transition: background .3s ease, transform .3s ease;
}

.hero-mini-card:hover {
    background:
        linear-gradient(90deg, rgba(67, 181, 216, .16), transparent 58%),
        rgba(15, 18, 28, .96);
    transform: translateY(-2px);
}

.hero-mini-card:last-child {
    border-bottom: 0;
}

.hero-mini-card a {
    height: 100%;
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
}

.hero-mini-card img {
    width: 116px;
    height: 92px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 4px;
}

.hero-mini-card span {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
}

.hero-mini-card strong {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    color: #f2f5fb;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-mini-card a div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.ticker {
    min-height: 46px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(12, 15, 24, .9);
}

.ticker strong {
    align-self: stretch;
    min-width: 150px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, rgba(217, 40, 50, .92), rgba(217, 40, 50, .28));
    font-size: 15px;
    font-weight: 900;
}

.ticker__track {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker__track > span {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding-inline: 18px;
    color: #e3e7ef;
    animation: ticker 34s linear infinite;
}

.ticker a:hover {
    color: var(--red-2);
}

.ticker i {
    color: var(--red-2);
    font-style: normal;
}

@keyframes ticker {
    from { transform: translateX(-15%); }
    to { transform: translateX(100%); }
}

.section-block,
.content-section {
    padding: 26px 0;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.section-title h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.section-title--line h2 {
    position: relative;
    padding-inline-start: 18px;
}

.section-title--line h2::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 7px;
    height: 22px;
    transform: translateY(-50%);
    background: var(--red-2);
    box-shadow: 0 0 14px rgba(240, 67, 73, .65);
}

.section-title a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-controls button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, .04);
}

.featured-swiper,
.video-swiper {
    padding-bottom: 10px;
}

.article-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(23, 29, 44, .94), rgba(10, 13, 21, .96));
    box-shadow: 0 12px 34px rgba(0, 0, 0, .22);
}

.article-card__media {
    position: relative;
    display: block;
    height: 185px;
    overflow: hidden;
    background: #0b0e16;
}

.article-card--featured .article-card__media {
    height: 220px;
}

.article-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.article-card:hover .article-card__media img {
    transform: scale(1.04);
}

.article-card__media .category-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    inset-inline-start: 14px;
    background: rgba(26, 42, 70, .92);
}

.article-card__body {
    padding: 16px;
}

.article-card h3 {
    min-height: 58px;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 900;
}

.article-card p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 700;
}

.article-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-inline-start: 10px;
    border-radius: 50%;
    background: var(--red-2);
}

.main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 24px;
    align-items: start;
}

.main-column {
    min-width: 0;
}

.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 30px;
}

.topic-tile {
    min-height: 76px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(67, 181, 216, .16), transparent 62%),
        rgba(255, 255, 255, .035);
}

.topic-tile:hover {
    border-color: rgba(67, 181, 216, .45);
}

.topic-tile__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(67, 181, 216, .38), rgba(217, 40, 50, .26));
}

.topic-tile strong,
.topic-tile small {
    grid-column: 2;
}

.topic-tile strong {
    font-size: 16px;
    font-weight: 900;
}

.topic-tile small {
    color: var(--muted);
    font-size: 12px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.post-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

.sidebar {
    display: grid;
    gap: 16px;
}

.side-panel {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(21, 27, 42, .95), rgba(10, 13, 21, .94));
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.side-panel__title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
}

.side-panel__title h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 900;
}

.side-panel__title span {
    color: var(--cyan);
    font-size: 22px;
}

.side-list {
    list-style: none;
    margin: 0;
    padding: 8px 14px 12px;
}

.side-list li {
    position: relative;
    padding: 9px 16px 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: #dce2ee;
    font-size: 13px;
    line-height: 1.6;
}

.side-list li:last-child {
    border-bottom: 0;
}

.side-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--red-2);
}

.side-list--blue li::before {
    background: var(--cyan);
}

.market-panel {
    padding-bottom: 8px;
}

.market-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    color: var(--muted);
}

.market-row strong {
    color: var(--green);
}

.newsletter-panel {
    padding-bottom: 16px;
}

.newsletter-panel p {
    margin: 14px 16px;
    color: var(--muted);
    font-size: 13px;
}

.newsletter-panel form {
    display: grid;
    grid-template-columns: 1fr 82px;
    gap: 8px;
    padding: 0 16px;
}

.newsletter-panel input {
    min-width: 0;
    height: 38px;
    border: 1px solid var(--line);
    outline: 0;
    color: var(--text);
    background: rgba(0, 0, 0, .24);
    padding: 0 10px;
}

.newsletter-panel button {
    height: 38px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
}

.form-error {
    display: block;
    margin: 8px 16px 0;
    color: var(--red-2);
}

.video-band {
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

.video-grid,
.infographic-grid {
    display: grid;
    gap: 16px;
}

.video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.video-frame {
    aspect-ratio: 16 / 9;
    background: #05060a;
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card__body {
    padding: 14px;
}

.video-card__body span {
    background: rgba(67, 181, 216, .82);
}

.video-card__body h3 {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 900;
}

.video-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.infographic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.infographic-grid--large {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.infographic-card {
    position: relative;
    display: block;
    min-height: 240px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #07080e;
    transition: border-color .2s ease, transform .2s ease;
}

.infographic-card:hover {
    border-color: rgba(240, 67, 73, .72);
    transform: translateY(-2px);
}

.infographic-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.infographic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .88));
}

.infographic-card > div {
    position: absolute;
    z-index: 2;
    inset: auto 0 0 0;
    padding: 14px;
}

.infographic-card h3 {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 900;
}

.archive-hero,
.article-hero {
    padding: 42px 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(217, 40, 50, .18), transparent 45%),
        rgba(255, 255, 255, .02);
}

.archive-hero__inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.archive-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--red-2);
    border: 1px solid rgba(217, 40, 50, .35);
    background: rgba(217, 40, 50, .08);
}

.archive-hero h1,
.article-hero h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.25;
    font-weight: 900;
}

.archive-hero p,
.article-hero p {
    max-width: 820px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.9;
}

.archive-hero small {
    display: inline-block;
    margin-top: 10px;
    color: var(--cyan);
    font-weight: 800;
}

.article-hero__inner {
    max-width: 980px;
}

.article-hero .category-badge {
    margin-bottom: 14px;
}

.article-meta--large {
    margin-top: 18px;
    font-size: 13px;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 28px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-cover {
    margin: 0 0 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.article-cover img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.article-body {
    padding: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18, 23, 36, .96), rgba(10, 13, 21, .96));
}

.article-body p {
    margin: 0 0 20px;
    color: #e4e8f1;
    font-size: 18px;
    line-height: 2.15;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body p.article-body__intro {
    color: #fff;
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.gallery-grid a {
    height: 190px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
}

.team-grid {
    display: grid;
    gap: 14px;
}

.team-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel);
}

.team-card img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}

.about-page {
    display: grid;
    gap: 26px;
}

.about-project-header {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line-strong);
    background:
        linear-gradient(90deg, rgba(217, 40, 50, .16), transparent 42%),
        rgba(15, 20, 31, .94);
}

.about-project-header__title span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
}

.about-project-header__title h2 {
    margin: 8px 0;
    font-size: 30px;
    font-weight: 900;
}

.about-project-header__title p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.leader-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .035);
}

.leader-card img {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, .12);
}

.leader-card strong,
.work-team li {
    color: #fff;
    font-weight: 900;
}

.leader-card span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.about-report-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}

.about-body h2 {
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line-strong);
    color: #fff;
    font-size: 32px;
    font-weight: 900;
}

.about-body h3 {
    margin: 28px 0 12px;
    color: var(--gold);
    font-size: 23px;
    font-weight: 900;
}

.work-team {
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.work-team h2 {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 24px;
    font-weight: 900;
}

.work-team img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.work-team ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.work-team li {
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .035);
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.pager a,
.pager span,
.pager strong {
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
    font-size: 13px;
}

.pager a {
    color: var(--text);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--muted);
}

.site-footer {
    margin-top: 34px;
    border-top: 1px solid var(--line);
    background: #080a11;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 28px;
    padding: 34px 0;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 900;
}

.site-footer p,
.site-footer li,
.footer-mail {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer a:hover {
    color: var(--red-2);
}

.social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-list a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
}

.social-list a:hover {
    background: var(--red);
}

.footer-bottom {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 12px;
}

.ui-icon,
.social-icon {
    display: block;
}

@media (max-width: 1100px) {
    .post-grid,
    .infographic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-layout,
    .main-grid,
    .article-layout,
    .about-layout,
    .about-project-header,
    .about-report-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .hero-swiper {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 400px;
    }

    .hero-side {
        grid-column: 1 / -1;
        grid-row: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        border-inline-start: 0;
        border-top: 1px solid var(--line);
    }

    .hero-side__top {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .hero-side__mini {
        grid-column: 1 / -1;
        grid-row: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        border-top: 1px solid var(--line);
    }

    .side-hero-card {
        min-height: 220px;
        border-bottom: 0;
        border-inline-start: 1px solid var(--line);
    }

    .side-hero-card:nth-child(2) {
        border-inline-start: 1px solid var(--line);
    }

    .hero-mini-card {
        border-bottom: 0;
        border-inline-start: 1px solid rgba(255, 255, 255, .08);
    }

    .hero-mini-card a {
        min-height: 96px;
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-rows: none;
    }

    .hero-mini-card img {
        width: 76px;
        height: 100%;
        max-height: 72px;
    }

    .sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .leadership-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-grid,
    .infographic-grid--large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .top-strip__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .top-search {
        width: 100%;
    }

    .brand-row {
        min-height: 74px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .brand__text strong {
        font-size: 24px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav__inner {
        position: relative;
        min-height: 54px;
    }

    .nav-links {
        position: absolute;
        inset: 54px 0 auto 0;
        display: none;
        flex-direction: column;
        border: 1px solid var(--line);
        background: #0b0e16;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        min-height: 44px;
        justify-content: start;
        place-items: center start;
        padding: 0 16px;
    }

    .subscribe-btn {
        min-width: 110px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-swiper,
    .hero-card {
        min-height: 420px;
    }

    .hero-card__overlay {
        padding: 28px 22px;
    }

    .hero-card::after,
    .side-hero-card::after,
    .article-card__media::after {
        background: linear-gradient(180deg, rgba(4, 5, 9, .12) 0%, rgba(4, 5, 9, .86) 100%);
    }

    .hero-side,
    .hero-side__top,
    .hero-side__mini,
    .sidebar,
    .post-grid,
    .post-grid--compact,
    .topic-grid,
    .video-grid,
    .infographic-grid,
    .infographic-grid--large,
    .leadership-grid,
    .footer-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-side {
        grid-template-rows: none;
        grid-template-columns: 1fr;
    }

    .hero-side__top,
    .hero-side__mini {
        grid-template-rows: none;
        grid-template-columns: 1fr;
    }

    .hero-mini-card {
        border-inline-start: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        border-right: 0;
        min-height: auto;
    }

    .hero-mini-card a {
        min-height: 84px;
        grid-template-columns: 88px minmax(0, 1fr);
        grid-template-rows: none;
    }

    .hero-mini-card img {
        width: 88px;
        height: 64px;
        max-height: 64px;
    }

    .hero-mini-card a div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .ticker {
        align-items: stretch;
        flex-direction: column;
    }

    .ticker strong {
        min-height: 38px;
    }

    .article-body {
        padding: 18px;
    }

    .article-body p {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .hero-swiper,
    .hero-card {
        min-height: 470px;
    }

    .side-hero-card {
        min-height: 190px;
    }

    .article-card__media,
    .article-card--featured .article-card__media {
        height: 210px;
    }

    .archive-hero__inner {
        align-items: flex-start;
    }
}
