:root {
  --bg: #f4f4f4;
  --text: #111111;
  --muted: #777777;
  --line: #e5e5e5;
  --red: #c8232c;
  --red-dark: #a71820;
  --black: #080808;
  --card: #ffffff;
  --soft: #f1f1f1;
  --shadow: 0 18px 55px rgba(0, 0, 0, .12);
  --radius: 3px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0a0a0a;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1;
  white-space: nowrap;
}
.logo__mark { text-transform: lowercase; }
.logo__dot {
  color: #ffffff;
  opacity: .85;
  font-size: .55em;
  margin-left: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  margin-left: auto;
  color: rgba(255,255,255,.78);
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: #fff; }
.burger {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101010;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.9) 37%, rgba(8,8,8,.45) 70%, rgba(8,8,8,.92) 100%),
    url('assets/city-bg.svg') right center / cover no-repeat;
  opacity: .98;
}
.hero__inner {
  position: relative;
  padding: 42px 0 24px;
}
.hero__label {
  color: #ff545b;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.hero__date {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 900;
}
.hero__lead {
  max-width: 640px;
  margin: 26px 0 40px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2vw, 21px);
}
.hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  min-height: 42px;
  padding-top: 6px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.hero__meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}
.hero__meta a:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-1px);
}
.share-label { margin-left: auto; }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(280px, 360px);
  gap: 64px;
  align-items: start;
  padding: 32px 0 60px;
}
.article {
  background: transparent;
}
.news-photo {
  margin: 0 0 18px;
}
.news-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #151515;
}
.news-photo figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.article__date {
  color: #222;
  font-weight: 800;
  font-size: 18px;
  margin-top: 28px;
}
.article p {
  margin: 0 0 24px;
  font-size: 18px;
}
.lead-paragraph {
  font-size: 22px !important;
  line-height: 1.45;
  font-weight: 800;
}
blockquote {
  margin: 32px 0;
  padding: 28px 32px 28px 72px;
  background: #ececec;
  position: relative;
  font-size: 18px;
  line-height: 1.45;
  color: #242424;
}
blockquote::before {
  content: '“';
  position: absolute;
  left: 28px;
  top: 18px;
  color: var(--red);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  margin: 6px 0 30px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 12px 28px rgba(200,35,44,.25);
}
.cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(200,35,44,.34);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.tags a {
  padding: 10px 14px;
  background: #ebebeb;
  color: #333;
  font-size: 14px;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.tags a:hover { background: #dedede; }

.sidebar {
  position: sticky;
  top: 96px;
}
.side-card,
.subscribe {
  background: transparent;
  border-left: 0;
  margin-bottom: 34px;
}
.side-card h2,
.subscribe h2 {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.side-card a {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.28;
  transition: color .2s ease;
}
.side-card a:hover span { color: var(--red); }
.side-card time {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.popular a {
  grid-template-columns: 34px minmax(0, 1fr);
}
.popular b {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}
.popular small {
  display: block;
  margin-top: 3px;
  color: #8c8c8c;
  font-size: 13px;
}
.subscribe p {
  margin: 0 0 14px;
  color: #333;
}
.subscribe form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
}
.subscribe input {
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font: inherit;
  outline: none;
}
.subscribe input:focus { border-color: #bbb; }
.subscribe button {
  height: 46px;
  border: 0;
  padding: 0 18px;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.footer__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer__inner span { margin-right: auto; }
.footer a:hover { color: #fff; }

@media (max-width: 1060px) {
  .nav { gap: 16px; font-size: 13px; }
  .layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 1180px); }
  .burger { display: block; }
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 72px;
    display: grid;
    gap: 0;
    padding: 14px 16px 20px;
    background: #101010;
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 15px 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__inner { padding: 32px 0 22px; }
  .hero h1 { max-width: 100%; }
  .hero__lead { margin-bottom: 30px; }
  .share-label { margin-left: 0; }
  .layout { display: block; padding-top: 24px; }
  .article { margin-bottom: 44px; }
  .sidebar { position: static; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .container { width: min(100% - 24px, 1180px); }
  .topbar__inner { height: 64px; }
  .nav { top: 64px; }
  .logo { font-size: 27px; }
  .hero__inner { padding-top: 24px; }
  .hero__date { margin-bottom: 20px; }
  .hero h1 { font-size: clamp(31px, 12vw, 44px); line-height: 1.02; }
  .hero__lead { font-size: 17px; }
  .hero__meta { gap: 10px 14px; font-size: 13px; }
  .article p { font-size: 16px; }
  .lead-paragraph { font-size: 19px !important; }
  blockquote { padding: 24px 20px 24px 52px; font-size: 16px; }
  blockquote::before { left: 18px; top: 18px; font-size: 48px; }
  .cta { width: 100%; min-height: 52px; }
  .side-card h2, .subscribe h2 { font-size: 20px; }
  .side-card a { grid-template-columns: 42px minmax(0, 1fr); }
  .subscribe form { grid-template-columns: 1fr; gap: 10px; }
  .subscribe button { width: 100%; }
  .footer__inner { display: grid; gap: 10px; padding: 20px 0; }
  .footer__inner span { margin-right: 0; }
}
