:root {
  --c-main: #00c47a;
  --c-dark: #050505;
  --c-panel: #0e0e0f;
  --c-text: #171717;
  --c-muted: #747474;
  --c-line: #e5e7eb;
  --c-bg: #fff;
  --wrap: 1320px;
  --shadow: none;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--wrap), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #120d0f;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 190px;
}
.brand strong {
  display: block;
  color: #fff;
  font-size: 27px;
  font-weight: 820;
  letter-spacing: -.045em;
  line-height: 1;
}
.brand strong span { color: var(--c-main); }
.brand-pixels {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.brand-pixels::before,
.brand-pixels i {
  content: "";
  position: absolute;
  background: var(--c-main);
}
.brand-pixels::before { width: 7px; height: 7px; left: 0; top: 0; }
.brand-pixels i:nth-child(1) { width: 10px; height: 10px; left: 7px; top: 7px; }
.brand-pixels i:nth-child(2) { width: 15px; height: 15px; left: 11px; top: 11px; }
.brand-pixels i:nth-child(3) { display: none; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 32px);
  min-width: 0;
  flex: 1 1 auto;
  white-space: nowrap;
}
.nav-item { position: static; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  color: #f5f5f5;
  font-weight: 720;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-link.is-active,
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link { color: var(--c-main); }
.main-nav span { color: #a1a1aa; font-size: 12px; margin-left: 3px; }
.main-nav .multilang-switcher,
.main-nav .language-switcher,
.main-nav .lang-switcher,
.main-nav [class*="lang"] {
  color: #b8bcc6;
  font-size: 14px;
  font-weight: 650;
}
.main-nav .multilang-switcher a,
.main-nav .language-switcher a,
.main-nav .lang-switcher a,
.main-nav [class*="lang"] a {
  color: #b8bcc6;
}
.main-nav .multilang-switcher a:hover,
.main-nav .language-switcher a:hover,
.main-nav .lang-switcher a:hover,
.main-nav [class*="lang"] a:hover {
  color: var(--c-main);
}
.mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  width: min(86vw, 1400px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #1a1213;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 50px rgba(0,0,0,.38);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 330px;
}
.mega-cats {
  padding: 34px 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.mega-cats a {
  display: block;
  color: #e5e5e5;
  font-size: 17px;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mega-cats a:hover { color: var(--c-main); }
.mega-posts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding: 36px 34px 32px;
}
.mega-card { min-width: 0; white-space: normal; }
.mega-thumb {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #0b0b0b;
  margin-bottom: 16px;
}
.mega-thumb img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}
.mega-card h3 {
  margin: 0 0 12px;
  color: #f4f4f5;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.02em;
  font-weight: 650;
}
.mega-card h3 a:hover { color: var(--c-main); }
.mega-card time {
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 650;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.mode-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: #f5f5f5;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.search-trigger {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
}
.search-trigger::before {
  content: "";
  position: absolute;
  inset: 1px 5px 5px 1px;
  border: 3px solid #f5f5f5;
  border-radius: 50%;
}
.search-trigger::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  right: 0;
  bottom: 2px;
  background: #f5f5f5;
  transform: rotate(45deg);
  border-radius: 999px;
}
.wide-search input {
  flex: 1;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
}
.wide-search button, .button-link {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--c-main);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.home-hero {
  background: #000;
  color: #f5f5f5;
  padding: 44px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}
.post-card, .widget {
  background: #fff;
  color: #172033;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card { min-width: 0; }
.hero-image {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: #111;
}
.hero-image img {
  width: 100%;
  height: min(43vw, 500px);
  min-height: 360px;
  object-fit: cover;
}
.hero-copy { padding-top: 18px; }
.cat {
  display: inline-block;
  border-radius: 0;
  padding: 5px 11px 4px;
  background: var(--c-main);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-card h1 {
  margin: 15px 0 10px;
  color: #fff;
  font-size: clamp(30px, 3.35vw, 42px);
  line-height: 1.16;
  letter-spacing: -.04em;
  font-weight: 650;
}
.hero-card h1 a:hover,
.hero-side h2 a:hover { color: var(--c-main); }
.story-meta {
  color: #a1a1aa;
  font-size: 14px;
  font-weight: 650;
}
.story-meta span { color: #63636b; margin: 0 8px; }
.hero-card p {
  color: #b9b9c1;
  font-size: 18px;
  line-height: 1.75;
  max-width: 880px;
  margin: 18px 0 0;
}
.hero-side { display: grid; gap: 0; }
.hero-side article {
  padding: 0 0 24px;
  border-bottom: 1px solid #26323d;
  margin-bottom: 24px;
}
.hero-side article:last-child { margin-bottom: 0; }
.side-image {
  display: block;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 18px;
  background: #111;
}
.side-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.hero-side h2 {
  margin: 14px 0 10px;
  color: #f5f5f5;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 650;
}
.side-story h2 { font-size: clamp(18px, 1.4vw, 22px); }

.home-main {
  background: #fff;
  color: #171717;
  padding: 58px 0 64px;
}
.home-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(320px, .9fr);
  gap: 42px;
  align-items: start;
}
.section-title {
  position: relative;
  border-bottom: 2px solid #1c344c;
  margin-bottom: 26px;
  padding-bottom: 12px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 36px;
  height: 3px;
  background: var(--c-main);
}
.section-title h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -.02em;
}
.featured-list { display: grid; gap: 28px; }
.featured-row {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
}
.featured-row:last-child { border-bottom: 0; }
.featured-thumb,
.top-story-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #e5e7eb;
}
.featured-thumb { aspect-ratio: 16 / 9; }
.featured-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-body h3 {
  margin: 12px 0 8px;
  font-size: clamp(22px, 1.72vw, 28px);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 650;
}
.featured-body h3 a:hover,
.top-story h3 a:hover { color: var(--c-main); }
.featured-body .story-meta,
.top-story .story-meta {
  color: #767676;
  font-size: 13px;
  margin: 6px 0 12px;
}
.featured-body p {
  margin: 14px 0 0;
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.55;
}
.top-story-list { display: grid; gap: 24px; }
.top-story.lead {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.top-story.lead .top-story-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-story.lead .top-story-thumb { aspect-ratio: 16 / 9; }
.top-story h3 {
  margin: 12px 0 6px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.025em;
  font-weight: 650;
}
.top-story.compact {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.top-story.compact .top-story-thumb img {
  position: absolute;
  inset: 0;
  width: 108px;
  height: 100%;
  object-fit: cover;
}
.top-story.compact .top-story-thumb {
  width: 108px;
  aspect-ratio: 4 / 3;
}
.top-story.compact .cat { display: none; }
.top-story.compact h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 620;
}
.top-story.compact .story-meta { margin: 0; }
.featured-videos {
  background: #000;
  color: #fff;
  padding: 56px 0;
}
.section-title.dark {
  border-bottom-color: #202020;
  color: #fff;
}
.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr);
  gap: 34px;
  align-items: stretch;
}
.video-lead a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: 4px;
  background: #121212;
}
.video-lead img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.78));
}
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
}
.play-button::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 13px;
  border-left: 13px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.play-button.small {
  width: 34px;
  height: 34px;
}
.play-button.small::after {
  left: 13px;
  top: 9px;
  border-left-width: 10px;
  border-top-width: 7px;
  border-bottom-width: 7px;
}
.video-lead div {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
}
.video-lead h3 {
  max-width: 720px;
  margin: 12px 0 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 650;
}
.video-lead p {
  margin: 10px 0 0;
  color: #bfbfbf;
  font-size: 13px;
}
.video-list {
  display: grid;
  gap: 18px;
}
.video-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #1e1e1e;
}
.video-list article:last-child { border-bottom: 0; }
.video-list h3 {
  margin: 9px 0 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 650;
}
.video-list h3 a:hover { color: var(--c-main); }
.video-mini-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #151515;
}
.video-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.economy-insights {
  background: #fff;
  color: #171717;
  padding: 52px 0 70px;
}
.economy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
}
.economy-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #e5e7eb;
  margin-bottom: 14px;
}
.economy-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.economy-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.24;
  letter-spacing: -.02em;
  font-weight: 650;
}
.economy-card h3 a:hover { color: var(--c-main); }
.economy-card time {
  color: #9a9a9a;
  font-size: 13px;
}
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; padding: 42px 0 50px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin: 0 0 18px; color: #172033; }
.section-head h2, .widget h2 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.section-head span { color: var(--c-muted); font-size: 14px; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.post-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.post-list { display: grid; gap: 20px; }
.post-card { display: grid; grid-template-columns: 220px minmax(0, 1fr); min-height: 170px; }
.post-grid .post-card { display: block; }
.post-card .thumb { background: #dbeafe; min-height: 185px; display: grid; place-items: center; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-fallback { color: #64748b; font-weight: 800; }
.post-card-body { padding: 18px; }
.post-card h3 { margin: 10px 0 8px; font-size: 19px; line-height: 1.25; letter-spacing: -.02em; font-weight: 650; }
.post-card h3 a:hover { color: var(--c-main); }
.post-card p { color: var(--c-muted); margin: 0 0 12px; font-size: 14px; }
.post-card time { color: #94a3b8; font-size: 13px; }

.sidebar { display: grid; gap: 20px; align-content: start; }
.widget { padding: 20px; }
.term-list { display: grid; gap: 8px; margin-top: 14px; }
.term-list a { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--c-line); }
.term-list em { color: var(--c-muted); font-style: normal; }
.mini-list { display: grid; gap: 14px; margin-top: 14px; }
.mini-list a { display: grid; grid-template-columns: 74px 1fr; gap: 12px; align-items: center; }
.mini-list img { width: 74px; height: 56px; object-fit: cover; border-radius: 10px; }
.mini-list span { font-size: 14px; font-weight: 750; line-height: 1.35; }
.ad-widget { background: var(--c-dark); color: #fff; }
.ad-widget span { color: var(--c-main); font-size: 12px; text-transform: uppercase; font-weight: 800; }
.ad-widget strong { display: block; font-size: 30px; margin-top: 8px; }

.page-title { padding: 42px 0 22px; }
.page-title h1 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; font-weight: 680; }
.page-title p { color: var(--c-muted); }
.eyebrow { color: var(--c-main); text-transform: uppercase; font-weight: 900; letter-spacing: .08em; font-size: 12px; }
.wide-search { display: flex; gap: 10px; max-width: 720px; margin-top: 20px; }
.empty { padding: 28px; background: #fff; border-radius: 16px; color: #6b7280; }

.article-page { background: #fff; color: #232323; }
.article-shell { padding: 18px 0 40px; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #a3a3a3;
  font-size: 12px;
  margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--c-main); }
.single-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: #111;
  margin-bottom: 38px;
}
.single-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 15%, rgba(0,0,0,.78) 100%);
}
.single-hero-copy {
  position: absolute;
  left: clamp(24px, 3vw, 46px);
  right: clamp(24px, 3vw, 46px);
  bottom: 34px;
  color: #fff;
  max-width: 980px;
}
.single-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(32px, 3.25vw, 48px);
  line-height: 1.2;
  letter-spacing: -.035em;
  font-weight: 680;
}
.single-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  color: #d6d6d6;
  font-size: 13px;
  font-weight: 650;
}
.author-dot {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.single-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}
.share-rail {
  position: sticky;
  top: 112px;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-top: 6px;
}
.share-rail strong {
  color: #222;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.share-rail a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 650;
}
.article-content {
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.78;
}
.article-content h2,
.article-content h3 {
  color: #202020;
  letter-spacing: -.02em;
  line-height: 1.25;
  font-weight: 680;
  margin-top: 30px;
}
.article-content p { margin: 0 0 22px; }
.article-content img { margin: 22px auto; height: auto; }
.article-content a { color: var(--c-main); font-weight: 700; }
.single-side {
  counter-reset: side-rank;
  display: grid;
  gap: 34px;
}
.side-rank {
  counter-increment: side-rank;
  display: grid;
  gap: 14px;
}
.side-rank img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}
.side-rank-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.rank-number::before { content: counter(side-rank); }
.rank-number {
  color: #d7d7d7;
  font-size: 28px;
  line-height: 1;
  font-weight: 650;
}
.side-rank h3 {
  margin: 0 0 10px;
  color: #222;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-weight: 650;
}
.side-rank h3 a:hover { color: var(--c-main); }
.side-rank time {
  color: #9a9a9a;
  font-size: 13px;
}
.tag-cloud { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag-cloud a { padding: 6px 10px; background: #eef2f7; border-radius: 999px; font-size: 13px; }
.single-related { padding-bottom: 54px; }
.single-related .section-head { color: #202020; }
.article-layout.page-layout { padding: 42px 0; }
.page-layout .article-header { max-width: 920px; margin: 0 auto 30px; text-align: center; }
.page-layout .article-header h1 { margin: 14px 0; font-size: clamp(36px, 5vw, 64px); line-height: 1.06; letter-spacing: -.035em; font-weight: 680; }
.page-layout .article-cover { width: 100%; max-height: 620px; object-fit: cover; border-radius: 20px; }
.page-content { max-width: 860px; margin: 0 auto; }

.site-footer {
  background: #000;
  color: #a8a8a8;
  margin-top: 0;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.25fr) minmax(320px, .95fr);
  gap: 58px;
  align-items: start;
}
.footer-brand { justify-content: flex-start; min-width: 0; }
.footer-brand .brand-pixels { transform: scale(1.05); transform-origin: left center; }
.footer-brand strong { font-size: 33px; }
.footer-about p {
  max-width: 410px;
  margin: 24px 0 0;
  color: #aaa;
  font-size: 17px;
  line-height: 1.65;
}
.footer-about .footer-social-text { margin-top: 30px; }
.footer-links-line a {
  display: inline;
  margin: 0 4px;
  color: #d8d8d8;
  font-weight: 650;
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}
.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: #1f1f1f;
  color: #fff;
  font-weight: 650;
}
.footer-latest {
  display: grid;
  gap: 20px;
}
.footer-latest article {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid #232323;
}
.footer-latest article:last-child { border-bottom: 0; }
.footer-thumb {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: #161616;
}
.footer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-latest h3 {
  margin: 0 0 10px;
  color: #eee;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.02em;
  font-weight: 650;
}
.footer-latest time {
  color: #9a9a9a;
  font-size: 14px;
}
.footer-subscribe h3 {
  margin: 0 0 34px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 700;
}
.footer-subscribe form {
  border: 1px solid #2d2d2d;
  background: #121212;
  padding: 36px 26px 28px;
  text-align: center;
}
.footer-subscribe strong {
  display: block;
  color: #f4f4f5;
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 22px;
}
.footer-subscribe p {
  color: #aaa;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 26px;
}
.footer-subscribe input[type="email"] {
  width: 100%;
  border: 0;
  background: #2b2b2b;
  color: #fff;
  padding: 17px 18px;
  font: inherit;
  text-align: center;
  margin-bottom: 14px;
}
.footer-subscribe button {
  width: 100%;
  border: 0;
  background: var(--c-main);
  color: #fff;
  padding: 16px 18px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
}
.footer-subscribe label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: #aaa;
  font-size: 14px;
}
.footer-grid a { color: inherit; }
.footer-grid a:hover { color: var(--c-main); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid #151515;
  text-align: center;
  color: #7f8794;
  font-size: 12px;
  line-height: 1.4;
}
.footer-bottom a,
.site-footer .gopress-powered-by a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer .gopress-powered-by {
  background: transparent !important;
  color: inherit !important;
}

/* Optional visual variant: SeSoul Neon Prototype */
.style-sesoul {
  --c-main: #c6ff00;
  --c-cyan: #00e5ff;
  --c-ink: #0b1020;
  --c-dark: #1a1a2e;
  --c-soft: #f7f4e8;
  --c-text: #121626;
  --c-muted: #5a6173;
  --c-line: #111827;
  --c-bg: #f5f2e8;
  --shadow: 8px 8px 0 #0b1020;
}
.style-sesoul body {
  background:
    radial-gradient(circle at 88% 10%, rgba(198, 255, 0, .24), transparent 26%),
    radial-gradient(circle at 12% 8%, rgba(0, 229, 255, .24), transparent 24%),
    var(--c-bg);
  color: var(--c-text);
  font-family: "Avenir Next Rounded", "Nunito", "Arial Rounded MT Bold", "Trebuchet MS", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.01em;
}
.style-sesoul ::selection {
  background: var(--c-main);
  color: var(--c-ink);
}
.style-sesoul .site-header {
  background: var(--c-dark);
  border-bottom: 4px solid var(--c-ink);
}
.style-sesoul .masthead {
  min-height: 60px;
}
.style-sesoul .brand {
  min-width: 174px;
  gap: 12px;
}
.style-sesoul .brand-pixels {
  width: 30px;
  height: 30px;
  filter: drop-shadow(3px 3px 0 #000);
}
.style-sesoul .brand-pixels::before,
.style-sesoul .brand-pixels i {
  border-radius: 2px;
  background: linear-gradient(135deg, var(--c-main), var(--c-cyan));
}
.style-sesoul .brand strong {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -.055em;
  text-shadow: 2px 2px 0 #000;
}
.style-sesoul .brand strong span { color: var(--c-main); }
.style-sesoul .nav-link {
  min-height: 60px;
  color: #f6f7fb;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .035em;
}
.style-sesoul .nav-link.is-active,
.style-sesoul .nav-link:hover,
.style-sesoul .nav-item:hover > .nav-link,
.style-sesoul .nav-item:focus-within > .nav-link {
  color: var(--c-main);
}
.style-sesoul .main-nav .multilang-switcher,
.style-sesoul .main-nav .language-switcher,
.style-sesoul .main-nav .lang-switcher,
.style-sesoul .main-nav [class*="lang"],
.style-sesoul .main-nav .multilang-switcher a,
.style-sesoul .main-nav .language-switcher a,
.style-sesoul .main-nav .lang-switcher a,
.style-sesoul .main-nav [class*="lang"] a {
  color: #dbeafe;
}
.style-sesoul .mega-menu {
  background: #151526;
  border: 4px solid #050814;
  border-top: 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 12px 14px 0 rgba(0, 0, 0, .6);
}
.style-sesoul .mega-cats {
  background: rgba(198, 255, 0, .04);
  border-right: 3px solid #050814;
}
.style-sesoul .mega-cats a {
  color: #f9fafb;
  font-size: 16px;
  font-weight: 700;
  border-bottom-color: rgba(255,255,255,.14);
}
.style-sesoul .mega-thumb,
.style-sesoul .hero-image,
.style-sesoul .side-image,
.style-sesoul .featured-thumb,
.style-sesoul .top-story-thumb,
.style-sesoul .video-lead a,
.style-sesoul .video-mini-thumb,
.style-sesoul .economy-thumb,
.style-sesoul .footer-thumb,
.style-sesoul .side-rank img {
  border: 4px solid var(--c-ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 #000;
}
.style-sesoul .mega-card h3,
.style-sesoul .footer-latest h3,
.style-sesoul .video-list h3 {
  font-weight: 620;
}
.style-sesoul .mode-toggle,
.style-sesoul .search-trigger::before,
.style-sesoul .search-trigger::after {
  color: #f8fafc;
}
.style-sesoul .search-trigger::before { border-color: #f8fafc; }
.style-sesoul .search-trigger::after { background: #f8fafc; }

.style-sesoul .home-hero,
.style-sesoul .featured-videos {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(0, 229, 255, .28), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(198, 255, 0, .25), transparent 30%),
    var(--c-dark);
  color: #f8fafc;
  border-bottom: 4px solid var(--c-ink);
}
.style-sesoul .home-hero::before,
.style-sesoul .featured-videos::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 82%);
}
.style-sesoul .hero-grid,
.style-sesoul .featured-videos .wrap {
  position: relative;
  z-index: 1;
}
.style-sesoul .hero-grid {
  align-items: stretch;
}
.style-sesoul .hero-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.style-sesoul .hero-image {
  flex: 0 0 auto;
}
.style-sesoul .hero-copy {
  position: relative;
  flex: 1 1 auto;
  margin-top: 22px;
  padding: 24px 24px 10px;
  background: rgba(26, 26, 46, .92);
  border: 4px solid var(--c-ink);
  border-radius: 24px;
  box-shadow: 7px 7px 0 #000;
}
.style-sesoul .cat {
  background: var(--c-main);
  color: var(--c-ink);
  border: 3px solid var(--c-ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 #000;
  padding: 6px 14px 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}
.style-sesoul .hero-card h1,
.style-sesoul .hero-side h2,
.style-sesoul .video-lead h3 {
  color: #fff;
  font-weight: 620;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.style-sesoul .hero-card h1 {
  font-size: clamp(32px, 3.25vw, 44px);
}
.style-sesoul .hero-side h2 {
  font-size: clamp(21px, 1.55vw, 27px);
}
.style-sesoul .hero-card h1 a:hover,
.style-sesoul .hero-side h2 a:hover,
.style-sesoul .video-list h3 a:hover,
.style-sesoul .mega-card h3 a:hover {
  color: var(--c-cyan);
}
.style-sesoul .story-meta,
.style-sesoul .hero-card p,
.style-sesoul .video-lead p {
  color: #cbd5e1;
  font-weight: 560;
}
.style-sesoul .hero-side article {
  padding: 18px;
  margin-bottom: 18px;
  background: rgba(10, 15, 28, .78);
  border: 3px solid rgba(255,255,255,.12);
  border-radius: 22px;
}
.style-sesoul .hero-side article:last-child { margin-bottom: 0; }

.style-sesoul .home-main,
.style-sesoul .economy-insights,
.style-sesoul .article-page,
.style-sesoul .content-grid,
.style-sesoul .article-layout.page-layout {
  background:
    radial-gradient(circle at 94% 4%, rgba(0, 229, 255, .22), transparent 22%),
    radial-gradient(circle at 5% 18%, rgba(198, 255, 0, .18), transparent 24%),
    var(--c-bg);
  color: var(--c-text);
}
.style-sesoul .section-title {
  border-bottom: 4px solid var(--c-ink);
}
.style-sesoul .section-title::after {
  width: 70px;
  height: 8px;
  bottom: -6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c-main), var(--c-cyan));
  border: 2px solid var(--c-ink);
}
.style-sesoul .section-title h2,
.style-sesoul .section-head h2,
.style-sesoul .widget h2 {
  color: var(--c-ink);
  font-weight: 760;
  letter-spacing: -.035em;
}
.style-sesoul .featured-row,
.style-sesoul .top-story.lead,
.style-sesoul .top-story.compact,
.style-sesoul .economy-card,
.style-sesoul .post-card,
.style-sesoul .widget {
  background: rgba(255, 255, 255, .86);
  border: 4px solid var(--c-ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.style-sesoul .featured-row,
.style-sesoul .top-story.compact {
  padding: 18px;
  border-bottom: 4px solid var(--c-ink);
}
.style-sesoul .top-story.lead {
  padding: 18px;
}
.style-sesoul .featured-list,
.style-sesoul .top-story-list {
  gap: 24px;
}
.style-sesoul .featured-body h3,
.style-sesoul .top-story h3,
.style-sesoul .economy-card h3,
.style-sesoul .post-card h3,
.style-sesoul .side-rank h3,
.style-sesoul .article-content h2,
.style-sesoul .article-content h3 {
  color: var(--c-ink);
  font-weight: 620;
  letter-spacing: -.035em;
}
.style-sesoul .featured-body h3 {
  font-size: clamp(21px, 1.55vw, 26px);
}
.style-sesoul .featured-body h3 a:hover,
.style-sesoul .top-story h3 a:hover,
.style-sesoul .economy-card h3 a:hover,
.style-sesoul .post-card h3 a:hover,
.style-sesoul .side-rank h3 a:hover {
  color: #007a88;
}
.style-sesoul .featured-body p,
.style-sesoul .post-card p,
.style-sesoul .page-title p {
  color: var(--c-muted);
}
.style-sesoul .top-story.compact .top-story-thumb {
  border-radius: 16px;
  box-shadow: 3px 3px 0 #000;
}
.style-sesoul .wide-search input,
.style-sesoul .footer-subscribe input[type="email"] {
  border: 3px solid var(--c-ink);
  border-radius: 18px;
  background: #fffdf3;
  color: var(--c-ink);
  box-shadow: 4px 4px 0 #000;
}
.style-sesoul .wide-search button,
.style-sesoul .button-link,
.style-sesoul .footer-subscribe button {
  background: var(--c-main);
  color: var(--c-ink);
  border: 3px solid var(--c-ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 #000;
  font-weight: 820;
}

.style-sesoul .featured-videos {
  padding: 64px 0;
}
.style-sesoul .video-list article {
  padding: 16px;
  border: 3px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(8, 12, 24, .72);
}
.style-sesoul .video-lead a {
  min-height: 390px;
}
.style-sesoul .play-button {
  background: var(--c-main);
  border: 4px solid var(--c-ink);
  box-shadow: 4px 4px 0 #000;
}
.style-sesoul .play-button::after {
  border-left-color: var(--c-ink);
}

.style-sesoul .page-title h1,
.style-sesoul .single-hero h1,
.style-sesoul .page-layout .article-header h1 {
  color: var(--c-ink);
  font-weight: 620;
  letter-spacing: -.045em;
}
.style-sesoul .single-hero {
  border: 5px solid var(--c-ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 44px;
}
.style-sesoul .single-hero-copy {
  background: rgba(26, 26, 46, .88);
  border: 4px solid var(--c-ink);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 6px 6px 0 #000;
}
.style-sesoul .single-hero h1 { color: #fff; }
.style-sesoul .single-meta { color: #e2e8f0; }
.style-sesoul .author-dot {
  background: var(--c-main);
  color: var(--c-ink);
  border: 3px solid var(--c-ink);
}
.style-sesoul .article-content {
  color: #373d4c;
  font-size: 17px;
  line-height: 1.82;
}
.style-sesoul .share-rail a {
  background: #fffdf3;
  border: 3px solid var(--c-ink);
  box-shadow: 4px 4px 0 #000;
  color: var(--c-ink);
}
.style-sesoul .share-rail strong {
  color: var(--c-ink);
}
.style-sesoul .single-side {
  gap: 28px;
}
.style-sesoul .side-rank {
  padding: 14px;
  background: rgba(255,255,255,.8);
  border: 4px solid var(--c-ink);
  border-radius: 24px;
  box-shadow: 5px 5px 0 #000;
}
.style-sesoul .rank-number {
  color: var(--c-main);
  text-shadow: 2px 2px 0 var(--c-ink);
}
.style-sesoul .tag-cloud a {
  background: var(--c-cyan);
  color: var(--c-ink);
  border: 2px solid var(--c-ink);
  font-weight: 700;
}

.style-sesoul .site-footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 229, 255, .18), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(198, 255, 0, .16), transparent 26%),
    var(--c-dark);
  border-top: 5px solid var(--c-ink);
  color: #cbd5e1;
}
.style-sesoul .footer-about p,
.style-sesoul .footer-subscribe p,
.style-sesoul .footer-subscribe label {
  color: #cbd5e1;
}
.style-sesoul .footer-latest article {
  border-bottom-color: rgba(255,255,255,.14);
}
.style-sesoul .footer-latest h3 a:hover,
.style-sesoul .footer-grid a:hover {
  color: var(--c-main);
}
.style-sesoul .footer-socials a {
  background: var(--c-main);
  color: var(--c-ink);
  border: 3px solid var(--c-ink);
  box-shadow: 4px 4px 0 #000;
  font-weight: 820;
}
.style-sesoul .footer-subscribe form {
  background: rgba(11, 16, 32, .78);
  border: 4px solid #050814;
  border-radius: 28px;
  box-shadow: 8px 8px 0 #000;
}
.style-sesoul .footer-subscribe h3,
.style-sesoul .footer-subscribe strong {
  color: #fff;
  font-weight: 700;
  letter-spacing: -.025em;
}
.style-sesoul .footer-bottom {
  border-top-color: rgba(255,255,255,.16);
  color: #9ca3af;
}

@media (max-width: 980px) {
  .hero-grid, .home-news-grid, .video-grid, .content-grid, .single-layout { grid-template-columns: 1fr; }
  .economy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid, .post-grid.compact { grid-template-columns: 1fr; }
  .masthead { flex-wrap: wrap; gap: 16px; padding: 12px 0; }
  .main-nav { order: 3; flex-basis: 100%; justify-content: flex-start; }
  .nav-link { min-height: 34px; }
  .mega-menu { display: none; }
  .header-tools { margin-left: auto; }
  .share-rail {
    position: static;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0;
  }
  .share-rail strong { margin: 0 8px 0 0; }
  .single-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, var(--wrap)); }
  .brand { min-width: 0; }
  .brand strong { font-size: 24px; }
  .home-hero { padding: 30px 0; }
  .hero-image img { height: 310px; min-height: 310px; }
  .hero-card h1 { font-size: 29px; }
  .side-image img { height: 190px; }
  .featured-row,
  .top-story.compact,
  .post-card { grid-template-columns: 1fr; }
  .featured-thumb img,
  .top-story.compact .top-story-thumb img {
    width: 100%;
    height: 190px;
  }
  .single-hero { min-height: 420px; }
  .single-hero h1 { font-size: 30px; }
  .single-layout { gap: 24px; }
  .single-side { grid-template-columns: 1fr; }
  .video-list article { grid-template-columns: 1fr; }
  .video-lead a { min-height: 300px; }
  .economy-grid { grid-template-columns: 1fr; }
  .article-content { font-size: 16px; }
  .site-footer { padding: 48px 0 24px; }
  .footer-latest article { grid-template-columns: 96px minmax(0, 1fr); }
  .footer-subscribe form { padding: 28px 18px 24px; }
}
