:root {
  --ink: #0b0b0b;
  --paper: #f1ede5;
  --cream: #ded6c9;
  --red: #a91617;
  --red-bright: #c62520;
  --muted: #746f68;
  --line: rgba(11, 11, 11, .2);
  --line-light: rgba(255, 255, 255, .18);
  --shell: min(1240px, calc(100% - 48px));
  --display: 'Oswald', Impact, sans-serif;
  --body: 'Manrope', Arial, sans-serif;
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 72px;
  --s8: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(241, 237, 229, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s2);
  width: max-content;
}
.brand img { width: 46px; height: 46px; object-fit: cover; }
.brand-copy { display: flex; align-items: baseline; gap: var(--s2); }
.brand-copy b { font: 700 26px/1 var(--display); letter-spacing: -.04em; }
.brand-copy small { font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.header-inner nav { display: flex; align-self: stretch; gap: var(--s5); }
.header-inner nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.header-inner nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.header-inner nav a:hover,
.header-inner nav a.is-active { color: var(--red); }
.header-inner nav a:hover::after,
.header-inner nav a.is-active::after { transform: scaleX(1); }
.tg-icon {
  justify-self: end;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.tg-icon svg { width: 18px; fill: currentColor; }
.tg-icon:hover { color: #fff; background: var(--red); border-color: var(--red); }
.back-link {
  justify-self: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.back-link:hover { color: var(--red); }

/* Cover */
.masthead { padding-block: 56px 48px; }
.masthead-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 5px rgba(198, 37, 32, .09);
}
.masthead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: end;
}
.masthead h1 {
  max-width: 800px;
  margin: 0;
  font: 600 clamp(72px, 6.2vw, 104px)/.86 var(--display);
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.masthead h1 em { color: var(--red); font-style: normal; }
.masthead-row > p {
  margin: 0 0 4px;
  padding-top: var(--s3);
  border-top: 1px solid var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

/* Lead story */
.hero {
  min-height: 488px;
  display: grid;
  grid-template-columns: 58% 42%;
  color: #fff;
  background: var(--ink);
}
.hero-media { position: relative; min-width: 0; min-height: 488px; overflow: hidden; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-media:hover img { transform: scale(1.018); }
.hero-placeholder { position: absolute; inset: 0; margin: 0; }
.hero-copy {
  position: relative;
  overflow: hidden;
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy::after {
  content: 'ES';
  position: absolute;
  right: -12px;
  bottom: -46px;
  color: rgba(255, 255, 255, .03);
  font: 700 174px/1 var(--display);
  pointer-events: none;
}
.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero .meta, .opinion .meta { color: #969087; }
.meta > span:first-child { color: var(--red-bright); }
.meta > * + * { padding-left: 10px; border-left: 1px solid currentColor; }
.views { opacity: .82; }
.hero h2 {
  max-width: 520px;
  margin: 20px 0 var(--s3);
  font: 600 clamp(38px, 3.2vw, 52px)/1.04 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.hero-copy > p { max-width: 470px; margin: 0; color: #bcb7af; font-size: 14px; line-height: 1.72; }
.hero.has-long-title h2 { font-size: clamp(34px, 2.7vw, 44px); }
.hero-copy > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.read-link {
  width: 100%;
  max-width: 252px;
  margin-top: var(--s5);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.read-link span { font-size: 18px; transition: transform .2s ease; }
.read-link:hover span { transform: translateX(4px); }

/* Editorial grids */
.section { padding-block: 88px; }
.section-heading {
  margin-bottom: var(--s6);
  padding-top: var(--s3);
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
}
.section-heading span,
.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font: 600 clamp(52px, 4.6vw, 72px)/1 var(--display);
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading > p { max-width: 290px; margin: 0 0 5px; color: var(--muted); font-size: 13px; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px var(--s4);
}
.news-card {
  min-width: 0;
  grid-column: span 3;
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}
.news-card.feature { grid-column: span 6; }
.media-link { display: block; }
.card-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  overflow: hidden;
  background: #151515;
}
.feature .card-media { aspect-ratio: 16 / 9; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.03);
  transition: transform .4s ease, filter .3s ease;
}
.news-card:hover .card-media img,
.opinion-card:hover .card-media img { transform: scale(1.02); filter: saturate(1); }
.news-card h3 {
  margin: var(--s2) 0 10px;
  font: 600 clamp(22px, 1.7vw, 28px)/1.16 var(--display);
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.news-card.feature h3 { max-width: 630px; font-size: clamp(27px, 2.3vw, 34px); }
.news-card h3 a { transition: color .2s ease; }
.news-card h3 a:hover { color: var(--red); }
.news-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.metric-card { position: relative; display: grid; place-items: center; color: var(--paper); background: var(--ink); }
.metric-card::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(255, 255, 255, .14); }
.metric-card > div { text-align: center; }
.metric-card strong { display: block; color: var(--red-bright); font: 600 clamp(44px, 5vw, 78px)/1 var(--display); }
.metric-card span { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.metric-card.is-alert strong { font-size: 54px; }
.metric-card.is-alert::after {
  content: 'ОПЕРАТИВНО';
  position: absolute;
  bottom: 22px;
  color: var(--red-bright);
  font: 600 12px var(--display);
  letter-spacing: .15em;
}

/* Opinion */
.opinion { position: relative; overflow: hidden; color: var(--paper); background: var(--ink); }
.opinion::before {
  content: 'ES!';
  position: absolute;
  left: -32px;
  top: -76px;
  color: rgba(255, 255, 255, .022);
  font: 700 360px/1 var(--display);
}
.section-heading.light { position: relative; border-color: rgba(255, 255, 255, .32); }
.section-heading.light > p { color: #969087; }
.opinion-grid { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); }
.opinion-grid.is-single { grid-template-columns: minmax(0, 1fr); }
.opinion-card { min-height: 344px; display: grid; grid-template-columns: 42% 58%; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.opinion-card .card-media { height: 100%; margin: 0; aspect-ratio: auto; }
.opinion-card .card-copy { min-width: 0; padding: var(--s5); display: flex; flex-direction: column; }
.opinion-card h3 { margin: var(--s3) 0 var(--s2); font: 600 clamp(26px, 2.1vw, 32px)/1.08 var(--display); text-transform: uppercase; }
.opinion-card p { margin: 0; color: #9d978e; font-size: 13px; line-height: 1.68; }
.opinion-card .read-link { margin-top: auto; }

/* Channel / footer */
.channel-cta { display: grid; grid-template-columns: 160px minmax(0, 1fr) 340px; gap: var(--s6); align-items: center; }
.cta-logo { width: 160px; padding: var(--s2); background: var(--ink); }
.cta-logo img { width: 136px; height: 136px; object-fit: cover; }
.channel-cta h2 { margin: 0; font: 600 clamp(48px, 4.8vw, 68px)/.96 var(--display); letter-spacing: -.035em; text-transform: uppercase; }
.cta-copy p { margin: 0 0 var(--s4); color: var(--muted); font-size: 14px; line-height: 1.72; }
.button {
  min-height: 52px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.button:hover { background: var(--ink); }
.button span { font-size: 17px; }
footer { padding: var(--s5) 0; color: #8b867f; background: #080808; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; font-size: 11px; }
.footer-brand { color: #fff; font: 600 26px var(--display); }
.footer-brand span { margin-left: var(--s2); color: #777; font: 500 10px var(--body); }
.footer-inner > p { text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: var(--s4); }
.footer-links a:hover { color: #fff; }

/* Article */
.article { padding-top: var(--s7); }
.article-head { max-width: 900px; margin: 0 auto var(--s6); }
.article-kicker { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.article-kicker span { margin: 0 7px; color: var(--muted); }
.article-head h1 {
  max-width: 880px;
  margin: 20px 0 var(--s4);
  font: 600 clamp(48px, 4.1vw, 68px)/1.01 var(--display);
  letter-spacing: -.035em;
  text-transform: uppercase;
  text-wrap: balance;
}
.article.has-long-title .article-head h1 { max-width: 960px; font-size: clamp(44px, 3.4vw, 58px); }
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s3); color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.article-meta > * + * { padding-left: var(--s3); border-left: 1px solid var(--line); }
.article-meta a:hover { color: var(--red); }
.article-media { max-width: 960px; margin: 0 auto; background: #111; }
.article-media img { width: 100%; max-height: 680px; object-fit: contain; }
.article-media video { display: block; width: 100%; max-height: 680px; background: #111; }
.article-gallery { max-width: 960px; margin: 0 auto; }
.article-gallery-main { margin: 0; background: #111; }
.article-gallery-main img { width: 100%; max-height: 640px; object-fit: contain; }
.article-gallery-pair { margin-top: var(--s3); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
.article-gallery-pair figure { margin: 0; overflow: hidden; background: #111; }
.article-gallery-pair img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.article-body { max-width: 720px; margin: var(--s6) auto 88px; }
.article-body p { margin: 0 0 var(--s4); font-size: 18px; line-height: 1.72; }
.article-body .lead { margin-bottom: var(--s5); padding-bottom: var(--s5); border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 600; line-height: 1.55; }
.article-sign { margin-top: 56px; padding-top: 20px; display: flex; align-items: center; gap: var(--s3); border-top: 1px solid var(--ink); }
.article-sign img { width: 54px; height: 54px; object-fit: cover; }
.article-sign div { display: flex; flex-direction: column; }
.article-sign b { font: 600 19px var(--display); text-transform: uppercase; }
.article-sign span { color: var(--muted); font-size: 11px; }
.article-placeholder { max-width: 900px; height: 420px; margin: 0 auto; }
.article-placeholder.metric-card strong { font-size: 96px; }
.article-cta { padding: 60px 0; color: #fff; background: var(--red); }
.article-cta .shell { display: grid; grid-template-columns: 150px minmax(0, 1fr) 240px; align-items: end; gap: var(--s5); }
.article-cta .shell > span { align-self: start; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.article-cta h2 { margin: 0; font: 600 clamp(40px, 4vw, 58px)/1 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.light-button { color: var(--ink); background: #fff; }
.light-button:hover { color: #fff; background: var(--ink); }

@media (max-width: 1050px) {
  .masthead-row { grid-template-columns: minmax(0, 1fr) 300px; gap: var(--s6); }
  .hero { grid-template-columns: 55% 45%; }
  .news-card { grid-column: span 4; }
  .news-card.feature { grid-column: span 6; }
  .opinion-card { grid-template-columns: 1fr; }
  .opinion-card .card-media { aspect-ratio: 16 / 10; }
  .channel-cta { grid-template-columns: 140px minmax(0, 1fr); }
  .cta-logo { width: 140px; }
  .cta-logo img { width: 116px; height: 116px; }
  .cta-copy { grid-column: 2; }
  .article-cta .shell { grid-template-columns: minmax(0, 1fr) 240px; }
  .article-cta .shell > span { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100% - 40px); --s7: 56px; --s8: 72px; }
  .grain { display: none; }
  .header-inner {
    height: 106px;
    grid-template-columns: 1fr auto;
    grid-template-rows: 64px 42px;
  }
  .brand { grid-column: 1; grid-row: 1; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy b { font-size: 24px; }
  .brand-copy small { display: none; }
  .tg-icon { grid-column: 2; grid-row: 1; width: 42px; height: 42px; }
  .header-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    border-top: 1px solid rgba(11, 11, 11, .1);
  }
  .header-inner nav a { min-height: 42px; font-size: 10px; }
  .back-link { display: none; }
  .masthead { padding-block: 42px 32px; }
  .masthead-kicker { margin-bottom: 20px; font-size: 9px; letter-spacing: .16em; }
  .masthead-row { grid-template-columns: 1fr; gap: var(--s5); }
  .masthead h1 { max-width: 100%; font-size: clamp(48px, 15vw, 64px); line-height: .87; }
  .masthead-row > p { font-size: 14px; line-height: 1.7; }
  .hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-media { min-height: 0; aspect-ratio: 1.08; }
  .hero-copy { padding: 30px 22px 34px; }
  .hero h2 { margin-top: var(--s3); font-size: clamp(32px, 9.5vw, 40px); line-height: 1.04; }
  .hero.has-long-title h2 { font-size: 30px; line-height: 1.06; }
  .hero-copy > p { font-size: 14px; }
  .hero-copy > p { -webkit-line-clamp: 2; }
  .section { padding-block: var(--s7); }
  .section-heading { display: block; margin-bottom: var(--s5); }
  .section-heading h2 { font-size: clamp(44px, 13vw, 58px); }
  .section-heading > p { margin-top: var(--s2); }
  .news-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .news-card, .news-card.feature { grid-column: auto; }
  .news-card.feature .card-media { aspect-ratio: 1.28; }
  .news-card.feature h3 { font-size: 29px; }
  .news-card.standard {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: var(--s3);
    align-items: start;
  }
  .news-card.standard .card-media { margin: 0; aspect-ratio: 1; }
  .news-card.standard h3 { margin-top: 10px; font-size: 22px; line-height: 1.14; }
  .news-card.standard p { display: none; }
  .news-card.standard .meta .views { display: none; }
  .opinion-grid { grid-template-columns: 1fr; gap: var(--s5); }
  .opinion-card { min-height: 0; }
  .opinion-card .card-copy { padding: var(--s4) 0; }
  .opinion-card h3 { font-size: 28px; }
  .channel-cta { grid-template-columns: 82px minmax(0, 1fr); gap: 20px; }
  .cta-logo { width: 82px; padding: 7px; }
  .cta-logo img { width: 68px; height: 68px; }
  .channel-cta h2 { font-size: clamp(40px, 11vw, 50px); }
  .cta-copy { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner > p { display: none; }
  .footer-links { gap: var(--s3); }
  .article { padding-top: var(--s7); }
  .article-head { margin-bottom: var(--s5); }
  .article-head h1 { margin-top: var(--s3); font-size: clamp(42px, 12.5vw, 52px); line-height: 1; }
  .article.has-long-title .article-head h1 { font-size: clamp(35px, 9.5vw, 40px); line-height: 1.03; }
  .article-meta { gap: 10px; }
  .article-meta > * + * { padding-left: 10px; }
  .article-media,
  .article-gallery,
  .article-placeholder { width: calc(100% + 40px); margin-left: -20px; }
  .article-media img { max-height: 560px; }
  .article-gallery-main img { max-height: 520px; }
  .article-gallery-pair { margin-top: 6px; grid-template-columns: 1fr; gap: 6px; }
  .article-gallery-pair img { aspect-ratio: 4 / 3; }
  .article-body { margin: 36px auto var(--s7); }
  .article-body p { margin-bottom: 22px; font-size: 17.5px; line-height: 1.72; }
  .article-body .lead { margin-bottom: var(--s4); padding-bottom: var(--s4); font-size: 20px; line-height: 1.55; }
  .article-placeholder { height: 320px; }
  .article-placeholder.metric-card strong { font-size: 72px; }
  .article-sign { margin-top: var(--s6); }
  .article-cta { padding: var(--s7) 0; }
  .article-cta .shell { min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .article-cta h2 { font-size: clamp(38px, 11vw, 48px); }
  .article-cta .button { width: 100%; min-width: 0; margin-top: var(--s2); }
}

@media (max-width: 370px) {
  :root { --shell: calc(100% - 32px); }
  .masthead h1 { font-size: 49px; }
  .news-card.standard { grid-template-columns: 104px minmax(0, 1fr); }
  .article-media, .article-gallery, .article-placeholder { width: calc(100% + 32px); margin-left: -16px; }
  .footer-links { flex-direction: column; gap: 4px; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; transition-duration: .01ms !important; }
}
