:root {
  --bg: #050505;
  --card: #101010;
  --text: #ffffff;
  --muted: #a7a7ad;
  --border: rgba(255, 255, 255, 0.12);
  --accent: #ff1a1a;
  --surface: #0a0a0a;
  --soft: rgba(255, 255, 255, 0.055);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  --editorial-font: "The Seasons", "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

html.light-mode {
  --bg: #f3f0ea;
  --card: #ffffff;
  --text: #101010;
  --muted: #5a5a5f;
  --border: rgba(0, 0, 0, 0.1);
  --surface: #faf8f3;
  --soft: rgba(0, 0, 0, 0.035);
  --shadow: 0 24px 64px rgba(22, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 22% -12%, rgba(255, 26, 26, 0.16), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

body.light-mode {
  background:
    radial-gradient(circle at 20% -12%, rgba(255, 26, 26, 0.08), transparent 24rem),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(var(--soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--soft) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(1480px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

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

.brand-logo {
  width: 180px;
  height: 48px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 26, 26, 0.18));
}

.logo-light,
html.light-mode .logo-dark {
  display: none !important;
}

html.light-mode .logo-light,
html:not(.light-mode) .logo-dark {
  display: block !important;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-button,
.theme-toggle,
.menu-button {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 84%, transparent);
  color: var(--text);
}

.search-button {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  width: 13px;
  height: 13px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 9px;
  height: 1.7px;
  background: currentColor;
  transform: rotate(45deg);
}

.theme-toggle {
  position: relative;
  width: 70px;
  height: 38px;
  border-radius: 999px;
}

.toggle-dot {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text);
  transition: transform 0.25s ease, background 0.25s ease;
}

html.light-mode .toggle-dot {
  transform: translateX(31px);
  background: var(--accent);
}

.moon-mark,
.sun-mark {
  position: absolute;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.moon-mark {
  left: 15px;
  box-shadow: inset -3px 0 0 var(--bg);
}

.sun-mark {
  right: 16px;
  border: 1.5px solid var(--accent);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.market-ticker {
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--card) 84%, transparent), color-mix(in srgb, var(--bg) 92%, transparent));
  overflow: hidden;
}

.market-ticker-inner {
  width: min(1480px, calc(100% - 40px));
  min-height: 46px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.market-ticker strong {
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-ticker-window {
  position: relative;
  min-width: 0;
  min-height: 28px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.market-ticker-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: ticker 42s linear infinite;
}

.market-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px 0 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text) 8%, transparent);
}

.market-logo {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.96), rgba(120, 0, 0, 0.88));
  font-family: Orbitron, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(255, 26, 26, 0.18);
}

.market-name {
  color: var(--text);
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-price {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.market-change {
  font-family: Orbitron, sans-serif;
  font-size: 0.66rem;
  font-weight: 900;
}

.trend-gain .market-change {
  color: #20d87a;
}

.trend-loss .market-change {
  color: #ff3b3b;
}

html.light-mode .market-ticker {
  background: linear-gradient(90deg, #ffffff, #f7f4ed);
}

html.light-mode .market-ticker-item {
  background: #fff;
  box-shadow: 0 8px 18px rgba(22, 18, 15, 0.06);
}

html.light-mode .market-logo {
  box-shadow: 0 0 10px rgba(255, 26, 26, 0.1);
}

.ticker {
  border-bottom: 1px solid var(--border);
}

.ticker-inner {
  width: min(1480px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.ticker strong {
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-window {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-section,
.content-section,
.social-contact-section,
.newsletter-section,
.article-layout {
  width: min(1480px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  padding: clamp(42px, 7vw, 96px) 0;
}

.hero-shell {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-meta span,
.article-heading > span,
.article-card span,
.section-title span,
.newsletter-section span {
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy h1,
.article-heading h1,
.section-title h1,
.section-title h2,
.newsletter-section h2 {
  margin: 0;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 {
  color: var(--text);
  margin-top: 20px;
  font-size: clamp(3rem, 7.2vw, 7.4rem);
  line-height: 0.92;
}

.title-red {
  color: var(--accent);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
}

.primary-link,
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-link:hover,
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(255, 26, 26, 0.24);
}

.hero-actions span {
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  max-height: none;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-media::after,
.article-image-frame::after,
.article-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

html.light-mode .hero-media::after,
html.light-mode .article-image-frame::after,
html.light-mode .article-card figure::after {
  background: linear-gradient(180deg, transparent 52%, rgba(255, 255, 255, 0.14));
}

.hero-media img,
.article-image-frame img,
.article-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  ;
  transition: transform 0.7s ease;
}

.hero-media:hover img,
.article-card:hover img {
  transform: scale(1.045);
}

.hero-media figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

html.light-mode .hero-media figcaption {
  color: rgba(16, 16, 16, 0.62);
}

.hero-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 10px;
}

.hero-progress button {
  width: 52px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 22%, transparent);
}

.hero-progress button.is-active {
  background: var(--accent);
}

.content-section {
  padding: clamp(42px, 6vw, 86px) 0;
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.section-title h1,
.section-title h2 {
  font-size: clamp(2rem, 4.2vw, 4.7rem);
  line-height: 0.98;
}

.section-title.compact {
  margin-bottom: 24px;
}

.section-title.compact h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

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

.article-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

html.light-mode .article-card:hover {
  box-shadow: 0 22px 54px rgba(22, 18, 15, 0.14);
}

.article-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 620px;
}

.article-card figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.article-card.large figure {
  min-height: 0;
}

.article-card.wide figure {
  min-height: 0;
}

.article-card.mini figure {
  min-height: 0;
}

.article-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.article-card h3 {
  color: var(--text);
  margin: 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.article-card.large h3 {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.article-card p,
.newsletter-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.article-card small {
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.category-tile {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 26, 26, 0.18), transparent 30%),
    var(--card);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.category-tile span {
  color: var(--text);
  font-family: Orbitron, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tile strong {
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-size: 2.2rem;
}

.category-block {
  padding: clamp(32px, 5vw, 70px) 0;
  border-top: 1px solid var(--border);
}

.category-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 20px;
}

.article-card.wide {
  min-height: 520px;
}

.article-card.wide figure {
  min-height: 0;
}

.side-list {
  display: grid;
  gap: 20px;
}

.article-card.mini {
  min-height: 0;
}

.article-card.mini figure {
  min-height: 0;
}

.article-card.mini h3 {
  font-size: 1.05rem;
}

.article-card.mini p {
  display: none;
}

.social-contact-section {
  padding: clamp(52px, 8vw, 108px) 0;
}

.social-contact-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(255, 26, 26, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #050505;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 46px rgba(255, 26, 26, 0.08);
  isolation: isolate;
}

.social-contact-shell::before {
  content: "";
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(255, 26, 26, 0.13);
  border-radius: 24px;
}

.social-contact-shell::after {
  content: "";
  position: absolute;
  right: clamp(30px, 7vw, 110px);
  bottom: 18px;
  width: min(420px, 44%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.68), transparent);
  box-shadow: 0 0 28px rgba(255, 26, 26, 0.5);
  opacity: 0.7;
}

.social-copy,
.social-grid {
  position: relative;
  z-index: 1;
}

.social-copy > span {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-copy > span::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(255, 26, 26, 0.76);
}

.social-copy h1,
.social-copy h2 {
  margin: 18px 0 0;
  max-width: 650px;
  color: #fff;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.connect-word {
  color: var(--accent);
}

.contact-page-section {
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
}

.presda-footer-contact {
  margin-top: clamp(44px, 7vw, 96px);
}

.contact-page-section.presda-footer-contact {
  margin-top: 0;
}

.presda-footer-contact .social-contact-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.social-copy p {
  margin: 20px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.social-badge {
  position: relative;
  display: inline-grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(100%, 360px);
  margin-top: 30px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 26, 26, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.12), transparent 50%),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(255, 26, 26, 0.12);
}

.social-badge::after {
  content: "";
  position: absolute;
  inset: auto 20px -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.95), transparent);
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.72);
}

.social-badge img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  filter:
    drop-shadow(0 0 8px rgba(255, 26, 26, 0.78))
    drop-shadow(0 0 20px rgba(255, 26, 26, 0.24));
}

.badge-logo-light {
  display: none;
}

.badge-gps {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 26, 26, 0.34);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 26, 26, 0.08);
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.2), inset 0 0 18px rgba(255, 26, 26, 0.08);
}

.badge-gps svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 26, 26, 0.7));
}

.social-badge strong,
.social-badge small {
  display: block;
  font-family: Orbitron, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-badge strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.social-badge small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.social-card {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 158px;
  place-items: center;
  gap: 14px;
  padding: 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.78);
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.42);
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.85), transparent);
  box-shadow: 0 0 18px rgba(255, 26, 26, 0.68);
  opacity: 0.46;
  transition: opacity 220ms ease, transform 220ms ease;
}

.social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.14), transparent 45%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 26, 26, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 54px rgba(0, 0, 0, 0.58),
    0 0 34px rgba(255, 26, 26, 0.26);
  transform: translateY(-6px) scale(1.025);
  outline: none;
}

.social-card:hover::before,
.social-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1.08);
}

.social-card:hover::after,
.social-card:focus-visible::after {
  opacity: 1;
}

.social-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 26, 26, 0.34);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--accent);
  box-shadow:
    0 0 20px rgba(255, 26, 26, 0.18),
    inset 0 0 20px rgba(255, 26, 26, 0.08);
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.social-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 4px rgba(255, 26, 26, 0.85))
    drop-shadow(0 0 14px rgba(255, 26, 26, 0.48));
}

.social-card:hover .social-icon,
.social-card:focus-visible .social-icon {
  border-color: rgba(255, 26, 26, 0.9);
  box-shadow:
    0 0 22px rgba(255, 26, 26, 0.42),
    0 0 54px rgba(255, 26, 26, 0.18),
    inset 0 0 24px rgba(255, 26, 26, 0.12);
  transform: scale(1.06);
  animation: socialPulse 1.45s ease-in-out infinite;
}

.social-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes socialPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 26, 26, 0));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(255, 26, 26, 0.58));
  }
}

html.light-mode .social-contact-shell {
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.075), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 247, 0.9)),
    #ffffff;
  border-color: rgba(255, 26, 26, 0.22);
  box-shadow:
    0 28px 76px rgba(20, 20, 20, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 30px rgba(255, 26, 26, 0.08);
}

html.light-mode .social-contact-shell::before {
  border-color: rgba(255, 26, 26, 0.16);
}

html.light-mode .social-copy h1,
html.light-mode .social-copy h2 {
  color: #101010;
}

html.light-mode .social-copy p {
  color: #555555;
}

html.light-mode .social-badge {
  border-color: rgba(255, 26, 26, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 26, 26, 0.075), transparent 52%),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 34px rgba(20, 20, 20, 0.08),
    0 0 20px rgba(255, 26, 26, 0.08);
}

html.light-mode .badge-logo-dark {
  display: none;
}

html.light-mode .badge-logo-light {
  display: block;
}

html.light-mode .social-badge img {
  filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.22));
}

html.light-mode .social-badge strong {
  color: #101010;
}

html.light-mode .social-badge small {
  color: #555555;
}

html.light-mode .badge-gps {
  background: rgba(255, 26, 26, 0.065);
  border-color: rgba(255, 26, 26, 0.24);
  box-shadow: 0 0 16px rgba(255, 26, 26, 0.12), inset 0 0 16px rgba(255, 26, 26, 0.06);
}

html.light-mode .social-card {
  border-color: rgba(255, 26, 26, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.92)),
    #ffffff;
  color: #101010;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 38px rgba(20, 20, 20, 0.08),
    0 0 18px rgba(255, 26, 26, 0.045);
}

html.light-mode .social-card:hover,
html.light-mode .social-card:focus-visible {
  border-color: rgba(255, 26, 26, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 22px 46px rgba(20, 20, 20, 0.11),
    0 0 28px rgba(255, 26, 26, 0.14);
}

html.light-mode .social-card::after {
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), transparent 48%);
}

html.light-mode .social-icon {
  background: rgba(255, 26, 26, 0.045);
  border-color: rgba(255, 26, 26, 0.22);
  box-shadow:
    0 0 16px rgba(255, 26, 26, 0.1),
    inset 0 0 18px rgba(255, 26, 26, 0.05);
}

html.light-mode .social-icon svg {
  filter:
    drop-shadow(0 0 3px rgba(255, 26, 26, 0.34))
    drop-shadow(0 0 9px rgba(255, 26, 26, 0.18));
}

html.light-mode .social-label {
  color: #101010;
}

.newsletter-section {
  margin-top: clamp(36px, 6vw, 70px);
  margin-bottom: clamp(52px, 8vw, 110px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 26, 26, 0.16), transparent 26%),
    var(--card);
  box-shadow: var(--shadow);
}

.newsletter-section h2 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  line-height: 0.96;
}

.newsletter-section p {
  max-width: 680px;
  margin-top: 18px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.newsletter-form input {
  min-height: 52px;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  outline: 0;
}

.article-layout {
  padding: clamp(40px, 7vw, 96px) 0 30px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-family: Orbitron, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
}

.article-heading h1 {
  color: var(--text);
  margin-top: 18px;
  font-size: clamp(2.7rem, 5.8vw, 6.4rem);
  line-height: 0.94;
}

.article-heading p {
  max-width: 760px;
  margin: 26px 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.35rem);
  line-height: 1.75;
}

.article-image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 13;
  max-height: 920px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.article-body-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 840px);
  gap: clamp(28px, 5vw, 70px);
  margin-top: clamp(42px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--border);
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-sidebar strong {
  color: var(--text);
  font-size: 0.95rem;
}

.article-content {
  color: var(--text);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.95;
}

.article-content p {
  margin: 0 0 28px;
}

.article-content blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  border-radius: 0 20px 20px 0;
  background: var(--card);
  color: var(--text);
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-shell,
  .article-hero,
  .social-contact-shell,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

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

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

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

  .category-story-grid,
  .article-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .market-ticker-inner,
  .ticker-inner,
  .hero-section,
  .content-section,
  .social-contact-section,
  .newsletter-section,
  .article-layout {
    width: min(100% - 28px, 1480px);
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo {
    width: 146px;
    height: 42px;
  }

  .nav-actions {
    gap: 8px;
  }

  .search-button,
  .menu-button {
    width: 38px;
    height: 38px;
  }

  .theme-toggle {
    width: 62px;
    height: 36px;
  }

  html.light-mode .toggle-dot {
    transform: translateX(25px);
  }

  .market-ticker-inner,
  .ticker-inner {
    min-height: 70px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
  }

  .market-ticker-inner {
    min-height: 60px;
  }

  .market-ticker-track {
    animation-duration: 30s;
  }

  .ticker-track {
    animation-duration: 24s;
  }

  .hero-section {
    padding: 30px 0 52px;
  }

  .hero-shell {
    min-height: 0;
    gap: 28px;
  }

  .hero-media {
    border-radius: 24px;
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-progress {
    position: static;
    margin-top: 6px;
  }

  .featured-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .article-card.large,
  .article-card.wide {
    min-height: 0;
  }

  .article-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .article-card figure,
  .article-card.large figure,
  .article-card.wide figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .article-card.mini figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .category-story-grid {
    gap: 14px;
  }

  .newsletter-section {
    padding: 28px;
    border-radius: 24px;
  }

  .social-contact-section {
    width: calc(100% - 24px);
  }

  .social-contact-shell {
    padding: 28px 16px;
    border-radius: 26px;
  }

  .social-contact-shell::before {
    inset: 12px;
    border-radius: 20px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    min-height: 132px;
  }

  .social-badge {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    padding: 10px 12px 10px 10px;
  }

  .social-badge img {
    width: 52px;
    height: 52px;
  }

  .social-copy h1,
  .social-copy h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .article-layout {
    padding-top: 34px;
  }

  .article-image-frame {
    order: -1;
    aspect-ratio: 9 / 13;
    max-height: none;
    border-radius: 24px;
  }

  .article-heading h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.35rem);
    line-height: 1;
  }

  .article-meta {
    gap: 10px;
    font-size: 0.68rem;
  }

  .article-content {
    font-size: 1rem;
    line-height: 1.82;
  }
}

@media (max-width: 430px) {
  html.light-mode,
  html.light-mode body {
    background: #f3f0ea;
    color: #101010;
  }

  .nav-shell,
  .ticker-inner,
  .hero-section,
  .content-section,
  .newsletter-section,
  .article-layout {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 128px;
  }

  .search-button {
    display: none;
  }

  .hero-copy,
  .article-heading {
    padding: 0 4px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .hero-media,
  .article-image-frame {
    aspect-ratio: 16 / 9;
  }

  .article-card figure,
  .article-card.large figure,
  .article-card.wide figure,
  .article-card.mini figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .primary-link {
    width: 100%;
  }

  .article-card div {
    padding: 20px;
  }

  .article-card h3 {
    font-size: 1.08rem;
  }

  .article-card.large h3 {
    font-size: 1.45rem;
  }

  .category-tile {
    min-height: 120px;
  }
}
-shrink:0!important}.hero-media,.article-card.large figure,.article-card.wide figure{min-height:420px!important;aspect-ratio:16/9!important}.article-card figure{min-height:260px!important;aspect-ratio:16/9!important}.article-card.mini figure{min-height:260px!important;aspect-ratio:4/3!important}.hero-media img,.article-image-frame img,.article-card img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important;object-position:center 18%!important}.article-card.mini img{object-position:center top!important}@media(max-width:720px){.hero-media,.article-card.large figure,.article-card.wide figure{min-height:280px!important}.article-card figure,.article-card.mini figure{min-height:260px!important}}@media(prefers-reduced-motion:reduce){.hero-copy,.hero-media,.hero-media img,.article-card img{transition:none!important}}


    :is(.hero-media,.article-card figure){width:100%;min-height:260px;overflow:hidden;border-radius:24px;aspect-ratio:16/9;flex-shrink:0}:is(.hero-media,.article-card.large figure,.article-card.wide figure){min-height:420px}:is(.hero-media,.article-image-frame,.article-card) img{width:100%;height:100%;object-fit:cover;display:block}@media(max-width:720px){.hero-media{min-height:280px}:is(.article-card figure,.article-card.mini figure){min-height:260px}:is(.article-card.large figure,.article-card.wide figure){min-height:280px}}@media(max-width:430px){.hero-media{min-height:280px}.article-card figure{min-height:260px!important}}

tio:auto!important;border-radius:28px!important;align-self:center}.hero-media img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center 18%!important;border-radius:28px!important}@media(max-width:960px){.hero-section{min-height:auto}.hero-shell{min-height:auto;grid-template-columns:1fr!important}.hero-copy{order:1}.hero-media{order:2;width:100%!important;height:max(320px,48vh)!important;min-height:320px!important;max-height:none!important;aspect-ratio:auto!important}.hero-copy h1{font-size:clamp(40px,9vw,72px)}}@media(max-width:430px){.hero-media{height:320px!important;min-height:320px!important}.hero-copy h1{font-size:clamp(34px,10vw,48px);line-height:1}}

/* PRESDA stable media sizing */
.hero-media,.article-card figure{width:100%!important;min-height:260px!important;overflow:hidden!important;border-radius:24px!important;aspect-ratio:16/9!important;flex-shrink:0!important}.hero-media,.article-card.large figure,.article-card.wide figure{min-height:420px!important}.hero-media img,.article-image-frame img,.article-card img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}@media(max-width:720px){.hero-media{min-height:280px!important}.article-card figure{min-height:260px!important}.article-card.large figure,.article-card.wide figure{min-height:280px!important}}@media(max-width:430px){.hero-media{min-height:280px!important}.article-card figure{min-height:260px!important}}


/* PRESDA face-safe media cropping */
.hero-media,.article-card.large figure,.article-card.wide figure{min-height:420px!important;aspect-ratio:16/9!important;overflow:hidden!important}.article-card figure{width:100%!important;min-height:260px!important;overflow:hidden!important;border-radius:24px!important;aspect-ratio:16/9!important;flex-shrink:0!important}.article-card.mini figure{aspect-ratio:4/3!important;min-height:260px!important}.hero-media img,.article-image-frame img,.article-card img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center 18%!important;display:block!important}.article-card.mini img{object-position:center top!important}@media(max-width:720px){.hero-media,.article-card.large figure,.article-card.wide figure{min-height:280px!important}.article-card figure,.article-card.mini figure{min-height:260px!important}}@media(max-width:430px){.hero-media{min-height:280px!important}.article-card figure,.article-card.large figure,.article-card.wide figure,.article-card.mini figure{min-height:260px!important}}

/* PRESDA hero rotation and theme-invariant media layout */
.hero-copy,.hero-media{transition:opacity .38s ease,transform .38s ease}.hero-shell.is-transitioning .hero-copy,.hero-shell.is-transitioning .hero-media{opacity:0;transform:translateY(14px)}.hero-progress button.is-active{width:82px;box-shadow:0 0 22px rgba(255,26,26,.5)}.hero-media,.article-card figure{width:100%!important;overflow:hidden!important;border-radius:24px!important;flex
-shrink:0!important}.hero-media,.article-card.large figure,.article-card.wide figure{min-height:420px!important;aspect-ratio:16/9!important}.article-card figure{min-height:260px!important;aspect-ratio:16/9!important}.article-card.mini figure{min-height:260px!important;aspect-ratio:4/3!important}.hero-media img,.article-image-frame img,.article-card img{width:100%!important;height:100%!important;display:block!important;object-fit:cover!important;object-position:center 18%!important}.article-card.mini img{object-position:center top!important}@media(max-width:720px){.hero-media,.article-card.large figure,.article-card.wide figure{min-height:280px!important}.article-card figure,.article-card.mini figure{min-height:260px!important}}@media(prefers-reduced-motion:reduce){.hero-copy,.hero-media,.hero-media img,.article-card img{transition:none!important}}

/* PRESDA homepage hero layout balance */
.hero-section{min-height:70vh;display:flex;align-items:center}.hero-shell{width:100%;min-height:70vh;grid-template-columns:minmax(0,45%) minmax(0,55%)!important;align-items:center;gap:clamp(28px,4.5vw,72px)}.hero-copy{max-width:900px}.hero-copy h1{max-width:900px;font-size:clamp(48px,6vw,96px);overflow-wrap:anywhere}.hero-copy p{max-width:680px}.hero-media{width:100%!important;height:clamp(420px,62vh,720px)!important;min-height:420px!important;max-height:720px!important;aspect-ra
                                                                                                                                                                                                                                                                                                                                                                       .hero-media{aspect-ratio:auto!important}
                                                                                                                                                                                                                                                                                                                                                                       


/* PRESDA final hero layout override */
.hero-section{min-height:70vh;display:flex;align-items:center}.hero-shell{width:100%;min-height:70vh;grid-template-columns:minmax(0,45%) minmax(0,55%)!important;align-items:center;gap:clamp(28px,4.5vw,72px)}.hero-copy{max-width:900px}.hero-copy h1{max-width:900px;font-size:clamp(48px,6vw,96px);overflow-wrap:anywhere}.hero-copy p{max-width:680px}.hero-media{width:100%!important;height:clamp(420px,62vh,720px)!important;min-height:420px!important;max-height:720px!important;aspect-ratio:auto!important;border-radius:28px!important;align-self:center}.hero-media img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center 18%!important;border-radius:28px!important}@media(max-width:960px){.hero-section{min-height:auto}.hero-shell{min-height:auto;grid-template-columns:1fr!important}.hero-copy{order:1}.hero-media{order:2;width:100%!important;height:max(320px,48vh)!important;min-height:320px!important;max-height:none!important;aspect-ratio:auto!important}.hero-copy h1{font-size:clamp(40px,9vw,72px)}}@media(max-width:430px){.hero-media{height:320px!important;min-height:320px!important}.hero-copy h1{font-size:clamp(34px,10vw,48px);line-height:1}}

}
/* PRESDA parse-safe final hero override */
.hero-section{min-height:70vh;display:flex;align-items:center}.hero-shell{width:100%;min-height:70vh;grid-template-columns:minmax(0,45%) minmax(0,55%)!important;align-items:center;gap:clamp(28px,4.5vw,72px)}.hero-copy{max-width:900px}.hero-copy h1{max-width:900px;font-size:clamp(48px,6vw,96px);overflow-wrap:anywhere}.hero-copy p{max-width:680px}.hero-media{width:100%!important;height:clamp(420px,62vh,720px)!important;min-height:420px!important;max-height:720px!important;aspect-ratio:auto!important;border-radius:28px!important;align-self:center}.hero-media img{width:100%!important;height:100%!important;object-fit:cover!important;object-position:center 18%!important;border-radius:28px!important}@media(max-width:960px){.hero-section{min-height:auto}.hero-shell{min-height:auto;grid-template-columns:1fr!important}.hero-copy{order:1}.hero-media{order:2;width:100%!important;height:max(320px,48vh)!important;min-height:320px!important;max-height:none!important;aspect-ratio:auto!important}.hero-copy h1{font-size:clamp(40px,9vw,72px)}}@media(max-width:430px){.hero-media{height:320px!important;min-height:320px!important}.hero-copy h1{font-size:clamp(34px,10vw,48px);line-height:1}}

/* PRESDA contact light-mode final polish */
.social-badge .badge-logo-light{display:none!important}html.light-mode .social-badge .badge-logo-dark{display:none!important}html.light-mode .social-badge .badge-logo-light{display:block!important}

/* PRESDA premium navigation and newsroom upgrade */
.site-header{box-shadow:0 12px 36px rgba(0,0,0,.2)}
.nav-shell{min-height:78px;gap:clamp(14px,2vw,28px)}
.brand{transition:transform .25s ease,filter .25s ease}
.brand:hover{transform:translateY(-1px);filter:drop-shadow(0 0 16px rgba(255,26,26,.22))}
.brand-logo{width:clamp(132px,13vw,180px)}
.main-nav{gap:clamp(10px,1.5vw,24px);align-items:center}
.main-nav a{padding:10px 2px;border-radius:999px;font-size:clamp(.62rem,.72vw,.74rem);white-space:nowrap}
.main-nav a.is-active,.main-nav a:hover{color:var(--accent)}
.main-nav a.is-active::after,.main-nav a:hover::after{transform:scaleX(1)}
.search-button,.theme-toggle,.menu-button{transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease,background .25s ease}
.search-button:hover,.theme-toggle:hover,.menu-button:hover{transform:translateY(-1px);border-color:rgba(255,26,26,.55);box-shadow:0 0 24px rgba(255,26,26,.16)}

.section-row{display:flex;align-items:end;justify-content:space-between;gap:20px}
.section-link{display:inline-flex;align-items:center;min-height:42px;padding:0 16px;border:1px solid var(--border);border-radius:999px;color:var(--text);font-family:Orbitron,sans-serif;font-size:.72rem;font-weight:900;text-transform:uppercase;transition:transform .25s ease,border-color .25s ease,color .25s ease}
.section-link:hover{transform:translateY(-2px);border-color:var(--accent);color:var(--accent)}
.market-ticker,
.ticker{overflow:hidden}
.market-ticker-window,
.ticker-window{position:relative;min-width:0;width:100%;min-height:24px;overflow:hidden}
.market-ticker-track,
.ticker-track{position:absolute;left:0;top:0;max-width:none}
.story-row{display:flex;width:100%;max-width:100%;gap:18px;overflow-x:auto;overflow-y:hidden;overscroll-behavior-inline:contain;scroll-snap-type:inline mandatory;padding-bottom:8px;contain:layout paint}
.story-row .article-card{flex:0 0 min(340px,82vw)}
.story-row::-webkit-scrollbar{height:6px}
.story-row::-webkit-scrollbar-thumb{border-radius:999px;background:rgba(255,26,26,.45)}
.story-row .article-card{scroll-snap-align:start}
.latest-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.latest-grid .article-card.wide{grid-column:span 2}
.insight-rails{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:24px;align-items:start}
.insight-column{padding:clamp(20px,3vw,34px);border:1px solid var(--border);border-radius:28px;background:color-mix(in srgb,var(--card) 88%,transparent);box-shadow:var(--shadow)}
.ranked-list{display:grid;gap:12px}
.ranked-item{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:14px;align-items:center;padding:16px;border:1px solid var(--border);border-radius:18px;background:color-mix(in srgb,var(--surface) 78%,transparent);transition:transform .25s ease,border-color .25s ease,background .25s ease}
.ranked-item:hover{transform:translateX(4px);border-color:rgba(255,26,26,.55)}
.ranked-item strong{color:var(--accent);font-family:Orbitron,sans-serif;font-size:1rem}
.ranked-item span{color:var(--text);font-family:Orbitron,sans-serif;font-weight:900;text-transform:uppercase;line-height:1.2}
.ranked-item small{color:var(--muted);font-family:Orbitron,sans-serif;font-size:.66rem;text-transform:uppercase;white-space:nowrap}

.article-card{position:relative;isolation:isolate;background:linear-gradient(180deg,color-mix(in srgb,var(--card) 96%,transparent),color-mix(in srgb,var(--surface) 92%,transparent));box-shadow:0 18px 46px rgba(0,0,0,.24),0 0 34px rgba(255,26,26,.035)}
.article-card::before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:linear-gradient(135deg,rgba(255,26,26,.16),transparent 34%,transparent 70%,rgba(255,26,26,.08));opacity:0;transition:opacity .25s ease}
.article-card:hover::before{opacity:1}
html.light-mode .article-card{background:#fff;box-shadow:0 16px 38px rgba(22,18,15,.1)}
html.light-mode .article-card::before{background:linear-gradient(135deg,rgba(255,26,26,.08),transparent 38%)}
.article-card figure{border-radius:24px 24px 18px 18px!important}
.article-card img,.hero-media img,.article-image-frame img{object-position:center 18%!important}
.article-card.mini img,.article-card.compact img{object-position:center 16%!important}
.article-card div{gap:14px}
.article-card p{font-size:.95rem}
.article-card small{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.read-time-badge{display:inline-flex;align-items:center;min-height:26px;padding:0 9px;border:1px solid rgba(255,26,26,.42);border-radius:999px;color:var(--accent);background:rgba(255,26,26,.08)}
.category-tag{display:inline-flex!important;width:max-content;min-height:28px;align-items:center;padding:0 10px;border:1px solid rgba(255,26,26,.45);border-radius:999px;background:rgba(255,26,26,.08);box-shadow:0 0 18px rgba(255,26,26,.08)}
.article-card.compact{min-height:360px}
.article-card.compact figure{min-height:220px!important;aspect-ratio:4/3!important}
.article-card.compact h3{font-size:1rem}
.article-card.compact p{display:none}

.category-tile{position:relative;overflow:hidden;gap:14px;justify-content:flex-start;min-height:168px;background:linear-gradient(180deg,color-mix(in srgb,var(--card) 94%,transparent),color-mix(in srgb,var(--surface) 92%,transparent))}
.category-tile::after{content:"";position:absolute;inset:auto 18px 16px 18px;height:1px;background:linear-gradient(90deg,transparent,var(--accent),transparent);opacity:.35}
.category-icon{display:inline-flex;width:54px;height:54px;align-items:center;justify-content:center;border:1px solid rgba(255,26,26,.36);border-radius:16px;color:var(--accent);background:rgba(255,26,26,.07);box-shadow:0 0 24px rgba(255,26,26,.08)}
.category-icon svg{width:32px;height:32px;fill:none;stroke:currentColor;stroke-width:1.55;stroke-linecap:round;stroke-linejoin:round;filter:drop-shadow(0 0 8px rgba(255,26,26,.45))}
.category-name{margin-top:auto}
.page-icon{margin-bottom:8px}
html.light-mode .category-tile{background:#fff;box-shadow:0 14px 34px rgba(22,18,15,.08)}
html.light-mode .category-icon{background:rgba(255,26,26,.045);box-shadow:none}

.reveal-section{opacity:0;transform:translateY(22px);transition:opacity .65s ease,transform .65s ease}
.reveal-section.is-visible{opacity:1;transform:none}
.hero-media{transform:translateZ(0)}
.hero-media img{will-change:transform}
@media (prefers-reduced-motion:reduce){.reveal-section,.article-card,.brand,.main-nav a,.search-button,.theme-toggle,.menu-button{transition:none!important}.market-ticker-track,.ticker-track{animation:none!important}}

@media (max-width:1180px){
  .nav-shell{grid-template-columns:auto auto 1fr}
  .main-nav{position:fixed;left:20px;right:20px;top:86px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:16px;border:1px solid var(--border);border-radius:24px;background:color-mix(in srgb,var(--bg) 96%,transparent);box-shadow:var(--shadow);backdrop-filter:blur(22px);transform:translateY(-12px);opacity:0;pointer-events:none;transition:opacity .22s ease,transform .22s ease}
  .main-nav.is-open{opacity:1;transform:none;pointer-events:auto}
  .main-nav a{padding:14px 12px;border:1px solid var(--border);background:color-mix(in srgb,var(--card) 86%,transparent)}
  .main-nav a::after{bottom:6px;left:12px;right:12px}
  .menu-button{display:block}
  .nav-actions{justify-self:end}
}

@media (max-width:900px){
  .latest-grid,.insight-rails{grid-template-columns:1fr}
  .latest-grid .article-card.wide{grid-column:auto}
  .section-row{align-items:start;flex-direction:column}
  .story-row .article-card{flex-basis:min(330px,82vw)}
}

@media (max-width:560px){
  .nav-shell{width:calc(100% - 24px);min-height:72px}
  .brand-logo{width:126px}
  .main-nav{left:12px;right:12px;top:78px;grid-template-columns:1fr}
  .theme-toggle{width:62px}
  html.light-mode .toggle-dot{transform:translateX(25px)}
  .search-button{display:inline-flex}
  .story-row .article-card{flex-basis:86vw}
  .article-card.compact figure{min-height:230px!important}
  .category-grid{grid-template-columns:1fr 1fr!important}
  .category-tile{min-height:144px;padding:18px}
  .category-icon{width:48px;height:48px}
  .category-icon svg{width:28px;height:28px}
  .ranked-item{grid-template-columns:auto minmax(0,1fr);align-items:start}
  .ranked-item small{grid-column:2}
}

/* PRESDA article magazine-cover refinement */
body[data-article-page]{
  background:
    radial-gradient(circle at 82% 8%,rgba(255,26,26,.11),transparent 28rem),
    radial-gradient(circle at 18% 0,rgba(255,255,255,.045),transparent 22rem),
    var(--bg);
}
html.light-mode body[data-article-page]{
  --bg:#f6f3ee;
  --surface:#fbfaf7;
  background:
    radial-gradient(circle at 84% 8%,rgba(255,26,26,.055),transparent 27rem),
    linear-gradient(180deg,#fbfaf7 0%,#f2eee7 100%);
}
body[data-article-page] .article-layout{
  width:min(1540px,calc(100% - 48px));
  padding:clamp(44px,6vw,90px) 0 34px;
}
body[data-article-page] .back-link{margin-bottom:clamp(24px,3vw,42px)}
body[data-article-page] .article-hero{
  grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  gap:clamp(34px,5vw,86px);
  align-items:start;
}
body[data-article-page] .article-heading{
  align-self:start;
  padding-top:clamp(6px,1vw,16px);
}
body[data-article-page] .article-heading>span{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  padding:0 13px;
  border:1px solid rgba(255,26,26,.46);
  border-radius:999px;
  background:rgba(255,26,26,.08);
}
body[data-article-page] .article-heading h1{
  max-width:900px;
  margin-top:clamp(18px,2.5vw,34px);
  font-family:Orbitron,sans-serif;
  font-size:clamp(3rem,5.65vw,6.6rem);
  line-height:.93;
  letter-spacing:0;
}
body[data-article-page] .article-heading p{
  max-width:780px;
  margin:clamp(24px,3vw,38px) 0;
  color:color-mix(in srgb,var(--text) 74%,var(--muted));
  font-family:var(--editorial-font);
  font-size:clamp(1.35rem,2vw,2rem);
  font-weight:600;
  line-height:1.34;
}
html.light-mode body[data-article-page] .article-heading p{
  color:#34302b;
}
body[data-article-page] .article-meta{
  gap:10px;
  max-width:760px;
}
body[data-article-page] .article-meta>*{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:color-mix(in srgb,var(--card) 70%,transparent);
}
html.light-mode body[data-article-page] .article-meta>*{
  background:rgba(255,255,255,.58);
}
body[data-article-page] .article-image-frame{
  align-self:start;
  width:min(100%,760px);
  min-height:clamp(620px,76vh,980px)!important;
  max-height:none;
  margin:0;
  border:0!important;
  border-radius:34px;
  background:transparent!important;
  box-shadow:0 34px 95px rgba(0,0,0,.42),0 0 42px rgba(255,26,26,.08);
  overflow:hidden;
}
html.light-mode body[data-article-page] .article-image-frame{
  background:transparent!important;
  box-shadow:0 28px 70px rgba(48,38,28,.14);
}
body[data-article-page] .article-image-frame::after{
  display:none!important;
}
body[data-article-page] .article-image-frame img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center top!important;
  display:block!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  transform:none!important;
}
body[data-article-page] .article-body-grid{
  grid-template-columns:minmax(160px,220px) minmax(0,900px);
  align-items:start;
  margin-top:clamp(54px,6.5vw,96px);
  padding-top:clamp(34px,4vw,62px);
  border-top:1px solid color-mix(in srgb,var(--border) 82%,transparent);
}
body[data-article-page] .article-sidebar{
  position:sticky;
  top:112px;
}
body[data-article-page] .article-sidebar strong{
  color:var(--accent);
}
body[data-article-page] .article-content{
  color:color-mix(in srgb,var(--text) 88%,var(--muted));
  font-family:var(--editorial-font);
  font-size:clamp(1.2rem,1.55vw,1.46rem);
  font-weight:500;
  line-height:1.72;
  letter-spacing:.004em;
}
html.light-mode body[data-article-page] .article-content{
  color:#1f1d1a;
}
body[data-article-page] .article-content p{
  max-width:880px;
  margin:0 0 clamp(24px,3vw,36px);
}

body[data-article-page] .article-content h2{
  max-width:880px;
  margin:clamp(36px,4.5vw,58px) 0 clamp(14px,2vw,22px);
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(1.35rem,2.2vw,2.15rem);
  line-height:1.08;
  text-transform:uppercase;
}

html.light-mode body[data-article-page] .article-content h2{
  color:#111;
}

body[data-article-page] .article-content p:first-child::first-letter{
  float:left;
  margin:.04em .16em 0 0;
  color:var(--accent);
  font-family:Orbitron,sans-serif;
  font-size:4.4em;
  line-height:.82;
}
body[data-article-page] .article-content blockquote{
  margin:clamp(34px,4vw,54px) 0;
  padding:clamp(26px,3.5vw,42px);
  border:1px solid rgba(255,26,26,.3);
  border-left:4px solid var(--accent);
  border-radius:24px;
  background:linear-gradient(135deg,rgba(255,26,26,.09),color-mix(in srgb,var(--card) 88%,transparent));
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(1.12rem,1.65vw,1.72rem);
  line-height:1.42;
  box-shadow:0 20px 52px rgba(0,0,0,.18);
}
html.light-mode body[data-article-page] .article-content blockquote{
  background:linear-gradient(135deg,rgba(255,26,26,.075),rgba(255,255,255,.72));
  color:#121212;
  box-shadow:0 18px 42px rgba(48,38,28,.1);
}
html.light-mode body[data-article-page] .related-section .article-card{
  background:rgba(255,255,255,.86);
}

@media(max-width:1180px){
  body[data-article-page] .article-hero{
    grid-template-columns:minmax(0,1fr);
  }
  body[data-article-page] .article-image-frame{
    order:0;
    width:100%;
    min-height:clamp(560px,72vh,880px)!important;
  }
  body[data-article-page] .article-sidebar{
    position:static;
  }
}

@media(max-width:760px){
  body[data-article-page] .article-layout{
    width:calc(100% - 28px);
    padding-top:34px;
  }
  body[data-article-page] .article-hero{
    gap:28px;
  }
  body[data-article-page] .article-heading{
    padding:0;
  }
  body[data-article-page] .article-heading h1{
    font-size:clamp(2.35rem,10.8vw,4.2rem);
    line-height:.98;
  }
  body[data-article-page] .article-heading p{
    font-size:clamp(1.18rem,5vw,1.48rem);
    line-height:1.42;
  }
  body[data-article-page] .article-image-frame{
    min-height:min(76vh,680px)!important;
    border-radius:26px;
    box-shadow:0 22px 54px rgba(0,0,0,.32);
  }
  body[data-article-page] .article-body-grid{
    grid-template-columns:1fr;
    margin-top:42px;
  }
  body[data-article-page] .article-content{
    font-size:1.12rem;
    line-height:1.78;
  }
  body[data-article-page] .article-content p:first-child::first-letter{
    font-size:3.5em;
  }
}

@media(max-width:430px){
  body[data-article-page] .article-layout{
    width:calc(100% - 24px);
  }
  body[data-article-page] .article-image-frame{
    min-height:560px!important;
    aspect-ratio:auto!important;
  }
  body[data-article-page] .article-meta>*{
    min-height:30px;
    font-size:.64rem;
  }
}

/* PRESDA visual fix: theme-identical cards, bigger posters, faster hero motion */
.hero-copy,.hero-media{
  transition:opacity .5s ease,transform .5s ease!important;
}
.hero-shell.is-transitioning .hero-copy,
.hero-shell.is-transitioning .hero-media{
  opacity:0;
  transform:translateY(18px);
}
.hero-media{
  background:#050505!important;
}
html.light-mode .hero-media{
  background:transparent!important;
}
.article-card{
  min-height:460px!important;
}
.article-card.large{
  min-height:680px!important;
}
.article-card.wide{
  min-height:560px!important;
}
.article-card.compact{
  min-height:390px!important;
}
.article-card figure{
  width:100%!important;
  height:auto!important;
  min-height:280px!important;
  aspect-ratio:16/9!important;
  overflow:hidden!important;
  border:0!important;
  border-radius:24px 24px 18px 18px!important;
  background:#050505!important;
  box-shadow:none!important;
}
.article-card.large figure,
.article-card.wide figure{
  min-height:420px!important;
}
.article-card.compact figure{
  min-height:280px!important;
  aspect-ratio:16/9!important;
}
html.light-mode .article-card figure,
html.light-mode .article-card.large figure,
html.light-mode .article-card.wide figure,
html.light-mode .article-card.compact figure,
html.light-mode .article-card.mini figure{
  background:transparent!important;
}
.article-card figure::after{
  background:linear-gradient(180deg,transparent 56%,rgba(0,0,0,.46))!important;
}
html.light-mode .article-card figure::after{
  background:linear-gradient(180deg,transparent 68%,rgba(0,0,0,.08))!important;
}
.article-card img,
.hero-media img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center 18%!important;
  display:block!important;
}
.article-card p,
.hero-copy p,
.newsletter-section p{
  font-family:var(--editorial-font);
  font-size:clamp(1.04rem,1.28vw,1.22rem);
  font-weight:500;
  line-height:1.52;
}
.article-card p{
  color:color-mix(in srgb,var(--text) 76%,var(--muted));
}
html.light-mode .article-card p{
  color:#34302b;
}
body[data-article-page] .article-hero{
  align-items:start!important;
}
body[data-article-page] .article-heading{
  padding-top:0!important;
}
body[data-article-page] .article-heading h1{
  margin-top:clamp(18px,2.5vw,34px)!important;
}
body[data-article-page] .article-image-frame{
  margin-top:clamp(42px,4.6vw,68px)!important;
  min-height:clamp(680px,82vh,1040px)!important;
  background:transparent!important;
  border:0!important;
  box-shadow:0 34px 95px rgba(0,0,0,.42),0 0 42px rgba(255,26,26,.08)!important;
}
html.light-mode body[data-article-page] .article-image-frame{
  background:transparent!important;
  box-shadow:0 24px 62px rgba(48,38,28,.12)!important;
}
body[data-article-page] .article-image-frame img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center top!important;
  background:transparent!important;
}
body[data-article-page] .article-image-frame img[data-image-fit="contain"]{
  object-fit:contain!important;
}
body[data-article-page] .article-heading p,
body[data-article-page] .article-content{
  font-family:var(--editorial-font);
}
@media(max-width:760px){
  .article-card,
  .article-card.large,
  .article-card.wide,
  .article-card.compact,
  .article-card.mini{
    min-height:0!important;
  }
  .article-card figure,
  .article-card.large figure,
  .article-card.wide figure,
  .article-card.compact figure,
  .article-card.mini figure{
    min-height:240px!important;
    aspect-ratio:16/9!important;
  }
  body[data-article-page] .article-image-frame{
    margin-top:0!important;
    min-height:min(74vh,680px)!important;
  }
}
@media(max-width:430px){
  .article-card figure,
  .article-card.large figure,
  .article-card.wide figure,
  .article-card.compact figure,
  .article-card.mini figure{
    min-height:240px!important;
  }
  body[data-article-page] .article-image-frame{
    min-height:560px!important;
  }
}

/* PRESDA cinematic layout correction: lift hero/articles and remove light media frames */
.hero-section{
  min-height:auto!important;
  padding:clamp(18px,3vw,42px) 0 clamp(46px,5vw,82px)!important;
  align-items:flex-start!important;
}
.hero-shell{
  width:100%!important;
  min-height:clamp(560px,76vh,760px)!important;
  grid-template-columns:minmax(0,45%) minmax(0,55%)!important;
  align-items:start!important;
  gap:48px!important;
}
.hero-copy{
  padding-top:clamp(18px,4vh,46px)!important;
  max-width:720px!important;
}
.hero-copy h1{
  max-width:720px!important;
  font-size:clamp(54px,6vw,104px)!important;
  line-height:.9!important;
  margin-top:16px!important;
}
.hero-copy p{
  max-width:640px!important;
  margin-top:20px!important;
}
.hero-actions{
  margin-top:26px!important;
}
.hero-media{
  align-self:start!important;
  width:100%!important;
  height:clamp(520px,72vh,780px)!important;
  min-height:520px!important;
  max-height:780px!important;
  border:0!important;
  border-radius:24px!important;
  background:#050505!important;
  box-shadow:0 34px 92px rgba(0,0,0,.42),0 0 42px rgba(255,26,26,.09)!important;
}
html.light-mode .hero-media{
  background:transparent!important;
  box-shadow:0 24px 62px rgba(48,38,28,.12)!important;
}
.hero-media::after{
  background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.34))!important;
}
html.light-mode .hero-media::after{
  background:linear-gradient(180deg,transparent 70%,rgba(0,0,0,.08))!important;
}
.hero-media img{
  border-radius:24px!important;
}

body[data-article-page] .article-layout{
  width:min(1440px,calc(100% - 48px))!important;
  padding:clamp(12px,2vw,28px) 0 28px!important;
}
body[data-article-page] .back-link{
  margin-bottom:clamp(10px,1.6vw,18px)!important;
}
body[data-article-page] .article-hero{
  display:grid!important;
  grid-template-columns:minmax(0,45%) minmax(0,55%)!important;
  gap:48px!important;
  align-items:start!important;
  margin-top:0!important;
}
body[data-article-page] .article-heading{
  padding-top:0!important;
  max-width:720px!important;
}
body[data-article-page] .article-heading h1{
  max-width:720px!important;
  margin-top:clamp(12px,1.8vw,20px)!important;
  font-size:clamp(54px,6vw,104px)!important;
  line-height:.9!important;
  overflow-wrap:anywhere;
}
body[data-article-page] .article-heading p{
  max-width:650px!important;
  margin:clamp(16px,2vw,24px) 0!important;
  line-height:1.34!important;
}
body[data-article-page] .article-meta{
  margin-top:0!important;
}
body[data-article-page] .article-image-frame{
  width:100%!important;
  height:clamp(560px,78vh,860px)!important;
  min-height:0!important;
  max-height:860px!important;
  margin-top:clamp(44px,4.1vw,58px)!important;
  border:0!important;
  border-radius:24px!important;
  background:#050505!important;
  box-shadow:0 32px 86px rgba(0,0,0,.38),0 0 36px rgba(255,26,26,.08)!important;
}
html.light-mode body[data-article-page] .article-image-frame{
  background:transparent!important;
  box-shadow:0 22px 58px rgba(48,38,28,.1)!important;
}
body[data-article-page] .article-image-frame::after{
  display:none!important;
}
body[data-article-page] .article-image-frame img{
  width:100%!important;
  height:100%!important;
  object-position:center top!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
}
body[data-article-page] .article-image-frame img[data-image-fit="contain"]{
  object-fit:contain!important;
}
body[data-article-page] .article-body-grid{
  margin-top:clamp(40px,5vw,70px)!important;
}
html.light-mode .article-card figure,
html.light-mode .hero-media,
html.light-mode body[data-article-page] .article-image-frame{
  background:transparent!important;
}

@media(max-width:1020px){
  .hero-shell,
  body[data-article-page] .article-hero{
    grid-template-columns:1fr!important;
  }
  .hero-copy{
    order:1!important;
    padding-top:0!important;
  }
  .hero-media{
    order:2!important;
    height:max(360px,54vh)!important;
    min-height:360px!important;
    max-height:none!important;
  }
  body[data-article-page] .article-image-frame{
    margin-top:0!important;
    height:min(74vh,760px)!important;
  }
}
@media(max-width:720px){
  .hero-section{
    padding-top:22px!important;
  }
  .hero-shell{
    gap:28px!important;
    min-height:0!important;
  }
  .hero-copy h1,
  body[data-article-page] .article-heading h1{
    font-size:clamp(38px,10.4vw,58px)!important;
    line-height:.96!important;
  }
  .hero-media{
    height:340px!important;
    min-height:340px!important;
  }
  body[data-article-page] .article-layout{
    width:calc(100% - 28px)!important;
    padding-top:18px!important;
  }
  body[data-article-page] .article-hero{
    gap:24px!important;
  }
  body[data-article-page] .article-image-frame{
    height:min(72vh,650px)!important;
    min-height:520px!important;
  }
}
@media(max-width:430px){
  .hero-media{
    height:320px!important;
    min-height:320px!important;
  }
  body[data-article-page] .article-layout{
    width:calc(100% - 24px)!important;
  }
  body[data-article-page] .article-image-frame{
    height:560px!important;
    min-height:560px!important;
  }
}

/* PRESDA definitive unified media/poster system */
:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure){
  width:100%!important;
  overflow:hidden!important;
  border:0!important;
  border-radius:28px!important;
  padding:0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#050505!important;
  box-shadow:none!important;
}

html.light-mode :is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure){
  background:transparent!important;
  box-shadow:none!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure)::after{
  pointer-events:none!important;
}

html.light-mode :is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure)::after{
  display:none!important;
  background:transparent!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure)>img,
:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure) img{
  width:100%!important;
  height:100%!important;
  min-width:100%!important;
  min-height:100%!important;
  display:block!important;
  border:0!important;
  border-radius:28px!important;
  margin:0!important;
  padding:0!important;
  background:transparent!important;
  object-fit:cover!important;
  object-position:center center!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure) img[data-image-fit="cover"]{
  object-fit:cover!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure) img[data-image-fit="contain"]{
  object-fit:contain!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure) img[data-image-position="50% 18%"]{
  object-position:50% 18%!important;
}

:is(.media-poster-frame,.hero-media,body[data-article-page] .article-image-frame,.article-card figure) img[data-image-position="center center"]{
  object-position:center center!important;
}

.hero-media.media-poster-frame{
  height:clamp(520px,72vh,780px)!important;
  min-height:520px!important;
  max-height:780px!important;
  align-self:start!important;
  box-shadow:0 34px 92px rgba(0,0,0,.42),0 0 42px rgba(255,26,26,.09)!important;
}

html.light-mode .hero-media.media-poster-frame{
  box-shadow:0 20px 54px rgba(20,16,14,.1)!important;
}

body[data-article-page] .article-image-frame.media-poster-frame{
  height:clamp(560px,78vh,860px)!important;
  min-height:0!important;
  max-height:860px!important;
  margin-top:clamp(44px,4.1vw,58px)!important;
  box-shadow:0 32px 86px rgba(0,0,0,.38),0 0 36px rgba(255,26,26,.08)!important;
}

html.light-mode body[data-article-page] .article-image-frame.media-poster-frame{
  box-shadow:0 18px 48px rgba(20,16,14,.08)!important;
}

.article-card .media-card-frame{
  height:auto!important;
  min-height:280px!important;
  aspect-ratio:16/9!important;
  border-radius:24px 24px 18px 18px!important;
  flex-shrink:0!important;
}

.article-card.large .media-card-frame,
.article-card.wide .media-card-frame{
  min-height:420px!important;
}

.article-card.compact .media-card-frame{
  min-height:280px!important;
  aspect-ratio:16/9!important;
}

.article-card.mini .media-card-frame{
  min-height:260px!important;
  aspect-ratio:4/3!important;
}

@media(max-width:1020px){
  .hero-media.media-poster-frame{
    height:max(360px,54vh)!important;
    min-height:360px!important;
    max-height:none!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    margin-top:0!important;
    height:min(74vh,760px)!important;
  }
}

@media(max-width:760px){
  .article-card .media-card-frame,
  .article-card.large .media-card-frame,
  .article-card.wide .media-card-frame,
  .article-card.compact .media-card-frame,
  .article-card.mini .media-card-frame{
    min-height:240px!important;
    aspect-ratio:16/9!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    height:min(72vh,650px)!important;
    min-height:520px!important;
  }
}

@media(max-width:430px){
  .hero-media.media-poster-frame{
    height:320px!important;
    min-height:320px!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    height:560px!important;
    min-height:560px!important;
  }
}

/* PRESDA content update: mobile editorial safety */
html,
body{
  max-width:100%;
  overflow-x:hidden;
}

body[data-article-page] .article-heading,
body[data-article-page] .article-heading h1,
body[data-article-page] .article-heading p{
  min-width:0!important;
}

@media(max-width:720px){
  body[data-article-page] .article-layout{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:100%!important;
    padding-left:14px!important;
    padding-right:14px!important;
  }

  body[data-article-page] .article-hero{
    box-sizing:border-box!important;
    width:100%!important;
    max-width:100%!important;
  }

  body[data-article-page] .article-heading{
    max-width:calc(100vw - 72px)!important;
    width:calc(100vw - 72px)!important;
    overflow:hidden!important;
  }

  body[data-article-page] .article-heading h1{
    max-width:calc(100vw - 72px)!important;
    width:calc(100vw - 72px)!important;
    font-size:clamp(28px,7.8vw,38px)!important;
    line-height:1!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  body[data-article-page] .article-heading p{
    max-width:calc(100vw - 78px)!important;
    width:calc(100vw - 78px)!important;
    font-size:clamp(17px,4.6vw,20px)!important;
    overflow-wrap:break-word!important;
  }
}

@media(max-width:430px){
  body[data-article-page] .article-heading h1{
    font-size:clamp(27px,7.2vw,32px)!important;
  }
}

/* PRESDA contact mobile and light-mode correction */
html.light-mode .social-contact-section{
  background:#f7f4ed!important;
}

html.light-mode .social-contact-shell{
  background:#f7f4ed!important;
  border-color:rgba(220,38,38,.22)!important;
  box-shadow:0 18px 46px rgba(20,16,14,.08)!important;
}

html.light-mode .social-contact-shell::after{
  opacity:.34!important;
}

html.light-mode .social-card{
  background:#fff!important;
  border-color:rgba(220,38,38,.22)!important;
  color:#111!important;
  box-shadow:0 12px 28px rgba(20,16,14,.08),0 0 14px rgba(220,38,38,.06)!important;
}

html.light-mode .social-card::before{
  box-shadow:0 0 10px rgba(220,38,38,.28)!important;
  opacity:.38!important;
}

html.light-mode .social-icon{
  background:rgba(220,38,38,.055)!important;
  border-color:rgba(220,38,38,.22)!important;
  box-shadow:inset 0 0 12px rgba(220,38,38,.05),0 0 10px rgba(220,38,38,.08)!important;
}

html.light-mode .social-icon svg{
  color:var(--accent)!important;
  filter:drop-shadow(0 0 3px rgba(220,38,38,.26))!important;
}

html.light-mode .social-label,
html.light-mode .social-copy h1,
html.light-mode .social-copy h2,
html.light-mode .social-badge strong{
  color:#111!important;
}

html.light-mode .social-copy p,
html.light-mode .social-badge small{
  color:#555!important;
}

html.light-mode .social-badge{
  background:#fff!important;
  border-color:rgba(220,38,38,.22)!important;
  box-shadow:0 12px 28px rgba(20,16,14,.08),0 0 14px rgba(220,38,38,.06)!important;
}

@media(max-width:768px){
  .social-contact-section,
  .presda-footer-contact,
  .contact-page-section.presda-footer-contact{
    width:100%!important;
    max-width:100%!important;
    min-height:0!important;
    margin-top:0!important;
    padding:32px 18px!important;
    overflow:hidden!important;
    box-sizing:border-box!important;
  }

  .social-contact-shell,
  .presda-footer-contact .social-contact-shell{
    width:100%!important;
    max-width:100%!important;
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:20px!important;
    align-items:start!important;
    padding:20px!important;
    overflow:hidden!important;
    border-radius:24px!important;
    box-sizing:border-box!important;
  }

  .social-contact-shell::before{
    inset:10px!important;
    border-radius:18px!important;
  }

  .social-contact-shell::after{
    display:none!important;
  }

  .social-copy{
    display:grid!important;
    gap:14px!important;
    max-width:100%!important;
  }

  .social-copy > span{
    font-size:.68rem!important;
    letter-spacing:.12em!important;
  }

  .social-copy h1,
  .social-copy h2{
    max-width:100%!important;
    margin:0!important;
    font-size:clamp(42px,13vw,64px)!important;
    line-height:.95!important;
    overflow-wrap:anywhere!important;
  }

  .social-copy p{
    max-width:100%!important;
    margin:0!important;
    font-size:1rem!important;
    line-height:1.45!important;
  }

  .social-badge{
    width:100%!important;
    max-width:100%!important;
    margin-top:0!important;
    grid-template-columns:48px minmax(0,1fr) 34px!important;
    gap:12px!important;
    padding:10px 12px!important;
    border-radius:18px!important;
    box-sizing:border-box!important;
  }

  .social-badge img{
    width:48px!important;
    height:48px!important;
    border-radius:14px!important;
  }

  .social-badge strong{
    font-size:.72rem!important;
    letter-spacing:.06em!important;
  }

  .social-badge small{
    font-size:.64rem!important;
    letter-spacing:.05em!important;
  }

  .badge-gps{
    width:34px!important;
    height:34px!important;
    border-radius:11px!important;
  }

  .badge-gps svg{
    width:18px!important;
    height:18px!important;
  }

  .social-grid{
    width:100%!important;
    max-width:100%!important;
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    align-items:stretch!important;
    overflow:hidden!important;
  }

  .social-card{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:110px!important;
    max-height:110px!important;
    display:grid!important;
    place-items:center!important;
    align-content:center!important;
    gap:8px!important;
    padding:16px!important;
    border-radius:18px!important;
    box-sizing:border-box!important;
  }

  .social-card:hover,
  .social-card:focus-visible{
    transform:translateY(-2px) scale(1.01)!important;
  }

  .social-icon{
    width:42px!important;
    height:42px!important;
    border-radius:14px!important;
  }

  .social-icon svg{
    width:34px!important;
    height:34px!important;
    stroke-width:2.2!important;
  }

  .social-label{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    color:rgba(255,255,255,.9);
    font-size:12px!important;
    line-height:1.12!important;
    letter-spacing:.02em!important;
    text-align:center!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:normal!important;
  }

  .social-email .social-label{
    text-transform:none!important;
    letter-spacing:0!important;
    font-size:12px!important;
  }
}

@media(max-width:380px){
  .social-contact-section,
  .presda-footer-contact,
  .contact-page-section.presda-footer-contact{
    padding:32px 14px!important;
  }

  .social-contact-shell,
  .presda-footer-contact .social-contact-shell{
    padding:18px 14px!important;
  }

  .social-grid{
    gap:8px!important;
  }

  .social-card{
    padding:14px 10px!important;
  }

  .social-email .social-label{
    font-size:11.5px!important;
  }
}

/* PRESDA content update: editorial article alignment */
body[data-article-page] .article-layout{
  padding-top:clamp(8px,1.5vw,22px)!important;
}

body[data-article-page] .back-link{
  margin-bottom:clamp(8px,1.2vw,16px)!important;
}

body[data-article-page] .article-hero{
  grid-template-columns:minmax(0,43%) minmax(0,57%)!important;
  gap:clamp(32px,4vw,58px)!important;
  align-items:start!important;
}

body[data-article-page] .article-image-frame.media-poster-frame{
  width:100%!important;
  height:clamp(620px,82vh,920px)!important;
  max-height:920px!important;
  margin-top:clamp(34px,3.4vw,48px)!important;
  border:0!important;
  padding:0!important;
}

body[data-article-page] .article-image-frame.media-poster-frame img{
  object-position:center center!important;
}

.hero-media.media-poster-frame img,
.article-card .media-card-frame img{
  object-position:center center!important;
}

.hero-shell{
  align-items:start!important;
}

.hero-media.media-poster-frame{
  height:clamp(560px,74vh,820px)!important;
  max-height:820px!important;
}

@media(max-width:1020px){
  body[data-article-page] .article-hero{
    grid-template-columns:1fr!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    margin-top:0!important;
    height:min(76vh,760px)!important;
  }
}

@media(max-width:720px){
  body[data-article-page] .article-layout{
    padding-top:16px!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    min-height:520px!important;
  }

  .hero-media.media-poster-frame{
    height:340px!important;
    min-height:340px!important;
  }
}

/* PRESDA mobile header control order */
@media(max-width:720px){
  .nav-shell{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:8px!important;
    width:calc(100% - 20px)!important;
    min-height:72px!important;
  }

  .brand{
    flex:1 1 auto!important;
    min-width:0!important;
    max-width:calc(100% - 158px)!important;
  }

  .main-nav{
    left:12px!important;
    right:12px!important;
    top:78px!important;
  }

  .nav-actions{
    flex:0 0 auto!important;
    margin-left:auto!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:6px!important;
    flex-wrap:nowrap!important;
  }

  .search-button{
    order:1!important;
  }

  .menu-button{
    order:2!important;
  }

  .theme-toggle{
    order:3!important;
    width:58px!important;
    height:36px!important;
  }

  .search-button,
  .menu-button{
    width:38px!important;
    height:38px!important;
  }

  .search-button,
  .menu-button,
  .theme-toggle{
    flex:0 0 auto!important;
    align-self:center!important;
  }

  html.light-mode .toggle-dot{
    transform:translateX(21px)!important;
  }
}

@media(max-width:480px){
  .nav-shell{
    width:calc(100% - 20px)!important;
    gap:6px!important;
  }

  .brand-logo{
    width:clamp(100px,30vw,126px)!important;
    height:40px!important;
  }

  .theme-toggle{
    width:54px!important;
    height:34px!important;
  }

  .search-button,
  .menu-button{
    width:36px!important;
    height:36px!important;
  }

  html.light-mode .toggle-dot{
    transform:translateX(18px)!important;
  }
}

@media(max-width:380px){
  .brand-logo{
    width:96px!important;
  }

  .nav-actions{
    gap:5px!important;
  }

  .theme-toggle{
    width:50px!important;
  }

  .search-button,
  .menu-button{
    width:34px!important;
    height:34px!important;
  }
}

/* PRESDA functional search and premium toggle */
body.search-is-open{
  overflow:hidden;
}

.theme-toggle{
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card) 92%, transparent), color-mix(in srgb, var(--bg) 88%, transparent))!important;
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, var(--text) 10%, transparent),
    0 12px 28px rgba(0,0,0,.18);
}

.theme-toggle::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,26,26,.13), transparent 54%, rgba(255,26,26,.2));
  opacity:.72;
  pointer-events:none;
}

.toggle-dot{
  z-index:2;
  box-shadow:0 0 18px rgba(255,255,255,.12),0 0 18px rgba(255,26,26,.18);
}

.moon-mark,
.sun-mark{
  z-index:3;
}

html.light-mode .theme-toggle{
  background:#fff!important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 10px 24px rgba(20,16,14,.1);
}

.search-panel{
  position:fixed;
  inset:0;
  z-index:100;
  display:grid;
  place-items:start center;
  padding:clamp(92px,12vh,140px) 20px 28px;
  pointer-events:none;
  opacity:0;
  transition:opacity .24s ease;
}

.search-panel.is-open{
  pointer-events:auto;
  opacity:1;
}

.search-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(18px);
}

html.light-mode .search-backdrop{
  background:rgba(247,244,237,.78);
}

.search-dialog{
  position:relative;
  width:min(760px,100%);
  overflow:hidden;
  border:1px solid rgba(255,26,26,.28);
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(255,26,26,.1), transparent 38%),
    color-mix(in srgb, var(--card) 96%, transparent);
  box-shadow:0 34px 90px rgba(0,0,0,.46),0 0 46px rgba(255,26,26,.12);
  transform:translateY(18px) scale(.98);
  transition:transform .24s ease;
}

.search-panel.is-open .search-dialog{
  transform:none;
}

html.light-mode .search-dialog{
  background:#fff;
  box-shadow:0 28px 72px rgba(20,16,14,.14),0 0 24px rgba(255,26,26,.08);
}

.search-dialog-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:24px 24px 16px;
}

.search-dialog-head span,
.search-result-card span,
.search-category-card span{
  color:var(--accent);
  font-family:Orbitron,sans-serif;
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
}

.search-dialog-head h2{
  margin:7px 0 0;
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(1.8rem,4vw,3.1rem);
  line-height:.95;
  text-transform:uppercase;
}

.search-close{
  position:relative;
  flex:0 0 auto;
  width:42px;
  height:42px;
  border:1px solid var(--border);
  border-radius:50%;
  background:color-mix(in srgb,var(--card) 88%,transparent);
}

.search-close::before,
.search-close::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  top:20px;
  height:2px;
  border-radius:999px;
  background:var(--text);
}

.search-close::before{transform:rotate(45deg)}
.search-close::after{transform:rotate(-45deg)}

.search-field{
  display:block;
  padding:0 24px 18px;
}

.search-field input{
  width:100%;
  min-height:58px;
  padding:0 18px;
  border:1px solid color-mix(in srgb,var(--accent) 34%,var(--border));
  border-radius:18px;
  background:color-mix(in srgb,var(--bg) 82%,transparent);
  color:var(--text);
  outline:none;
  font-family:var(--editorial-font);
  font-size:1.2rem;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}

html.light-mode .search-field input{
  background:#f7f4ed;
}

.search-field input:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(255,26,26,.12);
}

.search-results{
  display:grid;
  gap:10px;
  max-height:min(54vh,520px);
  overflow:auto;
  padding:0 24px 24px;
}

.search-group{
  display:grid;
  gap:10px;
}

.search-group h3{
  margin:8px 0 0;
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.search-group-grid{
  display:grid;
  gap:10px;
}

.search-result-card,
.search-category-card{
  display:grid;
  gap:8px;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:color-mix(in srgb,var(--surface) 82%,transparent);
  transition:transform .2s ease,border-color .2s ease,background .2s ease,box-shadow .2s ease;
}

html.light-mode .search-result-card,
html.light-mode .search-category-card{
  background:#fff;
}

.search-result-card:hover,
.search-result-card:focus-visible,
.search-result-card.is-active,
.search-category-card:hover,
.search-category-card:focus-visible,
.search-category-card.is-active{
  transform:translateY(-2px);
  border-color:var(--accent);
  box-shadow:0 16px 34px rgba(255,26,26,.1);
  outline:none;
}

.search-result-card strong,
.search-category-card strong{
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(.95rem,2vw,1.22rem);
  line-height:1.12;
  text-transform:uppercase;
}

.search-result-card mark,
.search-category-card mark{
  color:var(--accent);
  background:transparent;
}

.search-result-card small,
.search-category-card small{
  color:var(--muted);
  font-family:var(--editorial-font);
  font-size:1rem;
  line-height:1.45;
}

.search-empty{
  padding:28px 18px;
  border:1px solid var(--border);
  border-radius:18px;
  color:var(--muted);
  font-family:Orbitron,sans-serif;
  font-size:.82rem;
  font-weight:900;
  text-align:center;
  text-transform:uppercase;
}

.search-empty-soft{
  padding:18px;
  font-size:.72rem;
}

.reading-progress{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:120;
  height:3px;
  background:transparent;
  pointer-events:none;
}

.reading-progress span{
  display:block;
  width:100%;
  height:100%;
  background:linear-gradient(90deg,var(--accent),#ff6b6b);
  box-shadow:0 0 18px rgba(255,26,26,.55);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .08s linear;
}

.article-pagination{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  max-width:1440px;
  margin:clamp(34px,5vw,70px) auto 0;
}

.article-pagination a{
  display:grid;
  gap:10px;
  min-height:140px;
  padding:22px;
  border:1px solid var(--border);
  border-radius:22px;
  background:color-mix(in srgb,var(--card) 90%,transparent);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

html.light-mode .article-pagination a{
  background:#fff;
  box-shadow:0 18px 48px rgba(20,16,14,.08);
}

.article-pagination a:hover,
.article-pagination a:focus-visible{
  transform:translateY(-3px);
  border-color:var(--accent);
  box-shadow:0 18px 42px rgba(255,26,26,.12);
  outline:none;
}

.article-pagination span{
  color:var(--accent);
  font-family:Orbitron,sans-serif;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
}

.article-pagination strong{
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(1rem,2vw,1.35rem);
  line-height:1.12;
  text-transform:uppercase;
}

.newsletter-status{
  grid-column:1 / -1;
  min-height:1.2em;
  margin:8px 0 0!important;
  color:var(--muted);
  font-family:Orbitron,sans-serif!important;
  font-size:.72rem!important;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.newsletter-status[data-state="success"]{
  color:#3ee27a;
}

.newsletter-status[data-state="error"]{
  color:var(--accent);
}

.newsletter-form button:disabled{
  cursor:progress;
  opacity:.72;
}

.newsletter-form input[aria-invalid="true"]{
  border-color:var(--accent)!important;
  box-shadow:0 0 0 4px rgba(255,26,26,.12)!important;
}

.info-page-hero{
  padding-top:clamp(46px,7vw,90px);
}

.info-page-hero p{
  max-width:860px;
  color:var(--muted);
  font-family:var(--editorial-font);
  font-size:clamp(1.25rem,2.2vw,1.7rem);
  line-height:1.55;
}

.info-page-content{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}

.info-block{
  padding:clamp(22px,3vw,34px);
  border:1px solid var(--border);
  border-radius:24px;
  background:color-mix(in srgb,var(--card) 90%,transparent);
}

html.light-mode .info-block{
  background:#fff;
  box-shadow:0 18px 46px rgba(20,16,14,.08);
}

.info-block h2{
  margin:0 0 14px;
  color:var(--text);
  font-family:Orbitron,sans-serif;
  font-size:clamp(1rem,2vw,1.45rem);
  text-transform:uppercase;
}

.info-block p{
  margin:0;
  color:var(--muted);
  font-family:var(--editorial-font);
  font-size:1.12rem;
  line-height:1.65;
}

@media(max-width:720px){
  .search-panel{
    padding:84px 14px 20px;
  }

  .search-dialog{
    border-radius:24px;
  }

  .search-dialog-head,
  .search-field,
  .search-results{
    padding-left:16px;
    padding-right:16px;
  }

  .search-field input{
    min-height:54px;
    font-size:1.05rem;
  }

  .search-results{
    max-height:58vh;
  }

  .article-pagination{
    grid-template-columns:1fr;
    gap:12px;
  }

  .article-pagination a{
    min-height:112px;
    padding:18px;
  }

  .info-page-content{
    grid-template-columns:1fr;
  }
}

/* PRESDA mobile article above-the-fold tightening */
@media(max-width:720px){
  body[data-article-page] .article-layout{
    padding-top:6px!important;
  }

  body[data-article-page] .back-link{
    margin-top:0!important;
    margin-bottom:10px!important;
  }

  body[data-article-page] .article-hero{
    gap:14px!important;
  }

  body[data-article-page] .article-heading h1{
    margin-top:8px!important;
  }

  body[data-article-page] .article-heading p{
    margin:12px 0 14px!important;
    line-height:1.34!important;
  }

  body[data-article-page] .article-meta{
    gap:8px!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    height:clamp(300px,56vh,430px)!important;
    min-height:300px!important;
    max-height:430px!important;
  }
}

@media(max-width:430px){
  body[data-article-page] .article-layout{
    padding-top:4px!important;
  }

  body[data-article-page] .article-image-frame.media-poster-frame{
    height:330px!important;
    min-height:330px!important;
    max-height:330px!important;
  }
}
