/*
Theme Name: TechInfos
Theme URI: https://techinfos.ro/
Author: TechInfos.ro
Description: Tema editorial premium pentru TechInfos.ro, publicatie despre AI, tehnologie, cyber, gadgeturi si business digital.
Version: 0.1.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: techinfos
Tags: blog, news, custom-logo, featured-images, custom-menu, editor-style
*/

:root {
  --ti-bg: #f4f7fb;
  --ti-paper: #ffffff;
  --ti-ink: #0b1020;
  --ti-soft: #47515f;
  --ti-muted: #7a8491;
  --ti-line: #d9e1ea;
  --ti-blue: #0057ff;
  --ti-cyan: #00b7ff;
  --ti-lime: #b7ff39;
  --ti-orange: #ff5a1f;
  --ti-dark: #07101d;
  --ti-radius: 10px;
  --ti-shadow: 0 22px 60px rgba(5, 16, 31, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 87, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 87, 255, 0.04) 1px, transparent 1px),
    var(--ti-bg);
  background-size: 76px 76px;
  color: var(--ti-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.ti-ready {
  animation: ti-page-in 520ms ease both;
}

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

img {
  display: block;
  height: auto;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.ti-shell {
  width: min(1440px, calc(100% - 40px));
  margin-inline: auto;
}

.ti-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  border-bottom: 1px solid var(--ti-line);
  color: var(--ti-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ti-topline__links {
  display: flex;
  gap: 16px;
}

.ti-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, background 240ms ease;
}

.ti-header.ti-is-scrolled {
  background: rgba(244, 247, 251, 0.97);
  box-shadow: 0 16px 46px rgba(5, 16, 31, 0.08);
}

.ti-brandbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--ti-line);
}

.ti-brand {
  display: inline-grid;
  gap: 6px;
  width: fit-content;
}

.ti-brand:hover .ti-brand__name {
  color: var(--ti-blue);
}

.ti-brand__name {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.86;
  transition: color 220ms ease;
}

.ti-brand__tagline {
  color: var(--ti-soft);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.ti-search {
  display: grid;
  grid-template-columns: minmax(180px, 320px) 46px;
  border: 1px solid var(--ti-line);
  border-radius: var(--ti-radius);
  background: var(--ti-paper);
  box-shadow: 0 8px 28px rgba(5, 16, 31, 0.06);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ti-search:focus-within {
  border-color: rgba(0, 87, 255, 0.55);
  box-shadow: 0 14px 36px rgba(0, 87, 255, 0.12);
  transform: translateY(-1px);
}

.ti-search input {
  min-height: 46px;
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0 14px;
}

.ti-search button {
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--ti-line);
  background: transparent;
  cursor: pointer;
}

.ti-search svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ti-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 56px;
  overflow-x: auto;
  border-bottom: 1px solid var(--ti-line);
}

.ti-nav a,
.ti-brief-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--ti-radius);
  color: #2d3541;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ti-nav a:first-child,
.ti-nav a:hover {
  background: var(--ti-blue);
  color: #fff;
  transform: translateY(-1px);
}

.ti-brief-button {
  margin-left: auto;
  border: 1px solid var(--ti-ink);
  background: var(--ti-lime);
  color: var(--ti-ink);
  box-shadow: 0 10px 0 rgba(7, 16, 29, 0.08);
}

.ti-brief-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 0 rgba(7, 16, 29, 0.08);
}

.ti-livebar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 38px;
  border-bottom: 1px solid var(--ti-line);
  overflow: hidden;
}

.ti-livebar__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--ti-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.ti-livebar__label::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ti-orange);
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.65);
  content: "";
  animation: ti-pulse 1.8s ease-out infinite;
}

.ti-livebar__track {
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ti-livebar__items {
  display: flex;
  gap: 30px;
  width: max-content;
  color: var(--ti-soft);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  animation: ti-ticker 28s linear infinite;
}

.ti-livebar:hover .ti-livebar__items {
  animation-play-state: paused;
}

.ti-main {
  padding: 22px 0 70px;
}

.ti-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 18px;
}

.ti-hero__feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(360px, 1.22fr);
  gap: 18px;
}

.ti-card {
  border: 1px solid var(--ti-line);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--ti-shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.ti-card:hover {
  border-color: rgba(0, 87, 255, 0.26);
  box-shadow: 0 26px 70px rgba(5, 16, 31, 0.14);
  transform: translateY(-3px);
}

.ti-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  padding: clamp(24px, 3vw, 40px);
}

.ti-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  background: var(--ti-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.ti-label::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  transform: translateX(-120%);
}

.ti-card:hover .ti-label::after {
  animation: ti-shine 820ms ease;
}

.ti-hero h1 {
  margin: 18px 0 14px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(46px, 5.7vw, 88px);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-wrap: balance;
}

.ti-hero__copy p {
  max-width: 580px;
  margin: 0;
  color: var(--ti-soft);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 650;
}

.ti-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
  color: var(--ti-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ti-meta span {
  border-right: 1px solid var(--ti-line);
  padding-right: 10px;
}

.ti-meta span:last-child {
  border-right: 0;
}

.ti-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ti-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--ti-radius);
  font-size: 14px;
  font-weight: 900;
  padding: 0 18px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.ti-button--primary {
  background: var(--ti-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 87, 255, 0.24);
}

.ti-button--primary:hover {
  background: #004be0;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 87, 255, 0.3);
}

.ti-button--ghost {
  border: 1px solid var(--ti-line);
  background: #fff;
}

.ti-button--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 87, 255, 0.4);
}

.ti-hero__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ti-dark);
  isolation: isolate;
}

.ti-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.018);
  transition: transform 600ms ease;
  will-change: transform;
}

.ti-hero__image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(0, 183, 255, 0.22) 48%, transparent 52%),
    radial-gradient(circle at var(--ti-pointer-x, 55%) var(--ti-pointer-y, 45%), rgba(183, 255, 57, 0.18), transparent 22%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.65;
  transition: opacity 220ms ease;
}

.ti-hero__image:hover img {
  transform: scale(1.055);
}

.ti-image-caption {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-radius: var(--ti-radius);
  background: rgba(7, 16, 29, 0.72);
  color: #fff;
  padding: 14px;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.ti-popular {
  padding: 22px;
}

.ti-section-eyebrow {
  margin: 0 0 4px;
  color: var(--ti-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ti-section-title {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.ti-popular ol {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ti-popular li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--ti-line);
}

.ti-popular strong {
  color: var(--ti-orange);
  font-family: "Newsreader", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.ti-popular a {
  display: block;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
  transition: color 180ms ease, transform 180ms ease;
}

.ti-popular a:hover {
  color: var(--ti-blue);
  transform: translateX(3px);
}

.ti-popular small {
  display: block;
  margin-top: 6px;
  color: var(--ti-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ti-briefing {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
}

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

.ti-briefing article {
  min-height: 136px;
  border: 1px solid var(--ti-line);
  border-radius: var(--ti-radius);
  background: #fbfdff;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.ti-briefing article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ti-blue), var(--ti-cyan), var(--ti-lime));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.ti-briefing article:hover::before {
  transform: scaleX(1);
}

.ti-briefing time {
  display: inline-block;
  margin-right: 8px;
  color: var(--ti-orange);
  font-size: 13px;
  font-weight: 950;
}

.ti-chip {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(0, 87, 255, 0.1);
  color: #063bb9;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 8px;
  text-transform: uppercase;
  animation: ti-chip-float 3.6s ease-in-out infinite;
}

.ti-briefing h3 {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.18;
}

.ti-latest {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.95fr;
  gap: 18px;
  margin-top: 18px;
}

.ti-story,
.ti-newsletter {
  min-height: 260px;
  padding: 22px;
}

.ti-story--large {
  background:
    linear-gradient(135deg, rgba(0, 87, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.94);
}

.ti-story h2,
.ti-newsletter h2 {
  margin: 44px 0 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}

.ti-story h3 {
  margin: 58px 0 0;
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.ti-story p {
  margin: 14px 0 0;
  color: var(--ti-muted);
  font-weight: 650;
}

.ti-newsletter {
  display: flex;
  flex-direction: column;
  background: var(--ti-dark);
  color: #fff;
}

.ti-newsletter .ti-label {
  background: var(--ti-lime);
  color: var(--ti-dark);
}

.ti-newsletter form {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.ti-newsletter input {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: 0;
  padding: 0 12px;
}

.ti-newsletter button {
  min-height: 44px;
  border: 0;
  border-radius: var(--ti-radius);
  background: var(--ti-lime);
  color: var(--ti-dark);
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ti-newsletter button:hover {
  box-shadow: 0 0 0 4px rgba(183, 255, 57, 0.18);
  transform: translateY(-2px);
}

.ti-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.ti-reveal.ti-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--ti-delay, 0ms);
}

@keyframes ti-page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ti-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.65);
  }
  75% {
    box-shadow: 0 0 0 9px rgba(255, 90, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 90, 31, 0);
  }
}

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

@keyframes ti-shine {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes ti-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

.ti-article {
  max-width: 920px;
  margin: 42px auto 80px;
  padding: 34px;
}

.ti-article h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.ti-article-content {
  color: #202936;
  font-size: 19px;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

@media (max-width: 1240px) {
  .ti-hero {
    grid-template-columns: 1fr;
  }

  .ti-popular {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
  }

  .ti-popular ol {
    margin-top: 0;
  }
}

@media (max-width: 960px) {
  .ti-brandbar,
  .ti-hero__feature,
  .ti-briefing,
  .ti-latest {
    grid-template-columns: 1fr;
  }

  .ti-search {
    grid-template-columns: 1fr 46px;
  }

  .ti-briefing__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ti-shell {
    width: min(100% - 24px, 1440px);
  }

  .ti-header {
    position: static;
  }

  .ti-topline__links,
  .ti-topline span:last-child {
    display: none;
  }

  .ti-brand__name {
    font-size: clamp(44px, 15vw, 66px);
  }

  .ti-nav {
    padding: 10px 0;
  }

  .ti-livebar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0;
  }

  .ti-livebar__track {
    width: 100%;
  }

  .ti-brief-button {
    margin-left: 0;
  }

  .ti-hero__copy,
  .ti-hero__image,
  .ti-hero__image img {
    min-height: 360px;
  }

  .ti-hero h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .ti-popular {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .ti-reveal {
    opacity: 1;
    transform: none;
  }
}

/* TechInfos portal layout inspired by the approved homepage mockup. */
:root {
  --ti-bg: #f7f9fc;
  --ti-paper: #ffffff;
  --ti-ink: #080b12;
  --ti-soft: #465160;
  --ti-muted: #7a8594;
  --ti-line: #dfe5ef;
  --ti-blue: #064cff;
  --ti-blue-2: #0b63ff;
  --ti-red: #ff2f18;
  --ti-lime: #8ddb31;
  --ti-radius: 8px;
  --ti-shadow: 0 18px 44px rgba(16, 28, 48, 0.07);
}

body {
  background: var(--ti-bg);
  color: var(--ti-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ti-shell {
  width: min(1860px, calc(100% - 64px));
}

.ti-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ti-line);
}

.ti-header.ti-is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.ti-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 26px;
  min-height: 58px;
  border-bottom: 1px solid var(--ti-line);
  color: #1c2430;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.ti-trending {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
}

.ti-trending strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 5px;
  background: var(--ti-blue);
  color: #fff;
  font-weight: 850;
  padding: 0 16px;
}

.ti-trending a {
  color: #2a3240;
  font-weight: 650;
}

.ti-trending a:hover {
  color: var(--ti-blue);
}

.ti-region {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 190px;
  padding: 3px;
  border: 1px solid var(--ti-line);
  border-radius: 8px;
  background: #f0f3f8;
}

.ti-region button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #373f4d;
  cursor: pointer;
  font-weight: 750;
}

.ti-region .active {
  background: #fff;
  color: var(--ti-blue);
  box-shadow: 0 4px 12px rgba(6, 76, 255, 0.12);
}

.ti-social {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-left: 26px;
  border-left: 1px solid var(--ti-line);
  font-size: 20px;
  font-weight: 900;
}

.ti-brandbar {
  grid-template-columns: auto 1px minmax(220px, 1fr) auto;
  align-items: center;
  min-height: 126px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ti-line);
}

.ti-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 0.86;
}

.ti-brand__tech,
.ti-brand__infos,
.ti-brand__ro {
  font-size: clamp(54px, 6.6vw, 112px);
  font-weight: 950;
  letter-spacing: -0.075em;
}

.ti-brand__tech,
.ti-brand__ro {
  color: #05070b;
}

.ti-brand__infos {
  color: var(--ti-blue);
}

.ti-brand__ro {
  font-size: clamp(32px, 3.2vw, 58px);
  letter-spacing: -0.08em;
  margin-left: 8px;
}

.ti-brand-divider {
  width: 1px;
  height: 58px;
  background: var(--ti-line);
}

.ti-tagline {
  margin: 0;
  color: #3b4655;
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
}

.ti-brand-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ti-newsletter-link,
.ti-brief-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.ti-newsletter-link {
  padding: 0 16px;
  color: #1c2430;
}

.ti-newsletter-link svg,
.ti-brief-button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.ti-brief-button {
  margin-left: 0;
  background: var(--ti-blue);
  color: #fff;
  padding: 0 26px;
  box-shadow: 0 12px 24px rgba(6, 76, 255, 0.22);
}

.ti-navrow {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: 22px;
  min-height: 66px;
  border-bottom: 1px solid var(--ti-line);
}

.ti-home-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
}

.ti-home-link svg {
  width: 24px;
  fill: #05070b;
  stroke: #05070b;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ti-nav {
  min-height: 66px;
  border-bottom: 0;
  gap: 34px;
  overflow-x: auto;
}

.ti-nav li {
  list-style: none;
}

.ti-nav a {
  position: relative;
  min-height: 66px;
  padding: 0;
  border-radius: 0;
  color: #121821;
  font-size: 18px;
  font-weight: 850;
}

.ti-nav a:first-child,
.ti-nav a:hover {
  background: transparent;
  color: var(--ti-blue);
  transform: none;
}

.ti-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--ti-blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ti-nav a:first-child::after,
.ti-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.ti-search {
  grid-template-columns: 1fr 46px;
  min-width: 0;
  border-radius: 10px;
  box-shadow: none;
}

.ti-search input {
  min-height: 44px;
  font-size: 15px;
}

.ti-main {
  padding: 24px 0 58px;
}

.ti-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 26px;
}

.ti-main-column {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.ti-card {
  border-color: var(--ti-line);
  background: var(--ti-paper);
  box-shadow: none;
}

.ti-card:hover {
  border-color: #cfd8e6;
  box-shadow: var(--ti-shadow);
  transform: translateY(-2px);
}

.ti-hero-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(520px, 1.22fr);
  min-height: 520px;
  overflow: hidden;
}

.ti-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 46px);
  background:
    radial-gradient(circle at 85% 50%, rgba(6, 76, 255, 0.08), transparent 30%),
    var(--ti-paper);
}

.ti-hero-copy::after {
  position: absolute;
  top: 0;
  right: -70px;
  bottom: 0;
  width: 140px;
  background: var(--ti-paper);
  clip-path: polygon(0 0, 48% 0, 100% 100%, 0 100%);
  content: "";
}

.ti-label {
  min-height: 34px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 0 14px;
}

.ti-label--hot {
  background: var(--ti-red);
}

.ti-hero-copy h1 {
  margin: 24px 0 18px;
  max-width: 640px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(46px, 4.6vw, 82px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.ti-hero-copy p {
  max-width: 520px;
  margin: 0;
  color: #3d4755;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 520;
  line-height: 1.28;
}

.ti-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}

.ti-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ti-blue);
  color: #fff;
  font-weight: 950;
}

.ti-author-row strong,
.ti-author-row span {
  display: block;
}

.ti-author-row strong {
  font-size: 14px;
  font-weight: 850;
}

.ti-author-row span {
  color: var(--ti-muted);
  font-size: 13px;
  font-weight: 700;
}

.ti-button--primary {
  gap: 16px;
  width: fit-content;
  min-width: 220px;
  min-height: 58px;
  border-radius: 7px;
  background: var(--ti-blue);
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(6, 76, 255, 0.22);
}

.ti-button--primary svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ti-hero-visual {
  min-height: 520px;
  margin: 0;
  background: #061426;
  overflow: hidden;
}

.ti-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.ti-hero-card:hover .ti-hero-visual img {
  transform: scale(1.065);
}

.ti-popular-panel {
  border-left: 1px solid var(--ti-line);
  padding-left: 26px;
}

.ti-popular-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ti-line);
}

.ti-popular-head h2,
.ti-briefing-title h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ti-popular-head a,
.ti-briefing-title a {
  color: var(--ti-blue);
  font-size: 13px;
  font-weight: 850;
}

.ti-popular-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ti-popular-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 96px;
  gap: 14px;
  align-items: center;
  min-height: 126px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ti-line);
}

.ti-popular-list strong {
  color: var(--ti-blue);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 1;
}

.ti-popular-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--ti-lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ti-popular-copy a {
  display: block;
  font-size: 16px;
  font-weight: 870;
  line-height: 1.2;
}

.ti-popular-copy small {
  display: block;
  margin-top: 8px;
  color: var(--ti-muted);
  font-size: 12px;
  font-weight: 720;
}

.ti-popular-list img {
  width: 96px;
  height: 86px;
  border-radius: 7px;
  object-fit: cover;
}

.ti-briefing {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin: 0;
  padding: 18px;
}

.ti-briefing-title {
  border-right: 1px solid var(--ti-line);
  padding-right: 18px;
}

.ti-briefing-title h2 {
  font-size: 30px;
}

.ti-briefing-title a {
  display: inline-flex;
  gap: 8px;
  margin-top: 12px;
}

.ti-brief-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  min-height: 98px;
  padding-left: 8px;
  border-left: 1px solid var(--ti-line);
}

.ti-iconbox {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid currentColor;
  border-radius: 10px;
  font-size: 26px;
}

.ti-green {
  color: var(--ti-lime);
}

.ti-blue {
  color: var(--ti-blue);
}

.ti-navy {
  color: #263a78;
}

.ti-brief-item time {
  color: var(--ti-muted);
  font-size: 13px;
  font-weight: 850;
}

.ti-chip {
  margin-left: 8px;
  background: transparent;
  color: var(--ti-blue);
  font-size: 11px;
  padding: 0;
}

.ti-brief-item h3 {
  margin: 7px 0 6px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.22;
}

.ti-brief-item small {
  color: var(--ti-muted);
  font-size: 12px;
  font-weight: 650;
}

.ti-latest,
.ti-livebar,
.ti-section-eyebrow,
.ti-section-title {
  display: none;
}

.ti-section {
  margin-top: 34px;
}

.ti-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ti-line);
}

.ti-section-head span,
.ti-page__eyebrow,
.ti-archive-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ti-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 2.3vw, 42px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.ti-section-head a {
  color: var(--ti-blue);
  font-weight: 850;
  white-space: nowrap;
}

.ti-section-head--compact {
  align-items: center;
}

.ti-section-head--compact h2 {
  font-size: 24px;
}

.ti-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ti-news-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ti-line);
  border-radius: var(--ti-radius);
  background: var(--ti-paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ti-news-card:hover {
  border-color: rgba(6, 76, 255, 0.24);
  box-shadow: var(--ti-shadow);
  transform: translateY(-2px);
}

.ti-news-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #061426;
}

.ti-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ti-news-card:hover .ti-news-card__image img {
  transform: scale(1.06);
}

.ti-news-card__body {
  padding: 18px;
}

.ti-news-card__body span {
  display: block;
  margin-bottom: 9px;
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ti-news-card__body h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 920;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.ti-news-card__body p {
  margin: 12px 0 0;
  color: var(--ti-soft);
  font-size: 14px;
  font-weight: 560;
}

.ti-news-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.ti-news-card--wide .ti-news-card__image {
  aspect-ratio: auto;
  min-height: 100%;
}

.ti-news-card--wide .ti-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 290px;
  padding: 26px;
}

.ti-news-card--wide .ti-news-card__body h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.ti-category-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ti-category-column {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.ti-news-card--compact {
  grid-template-columns: 118px minmax(0, 1fr);
}

.ti-news-card--compact .ti-news-card__image {
  height: 100%;
  min-height: 122px;
  aspect-ratio: auto;
}

.ti-news-card--compact .ti-news-card__body {
  padding: 14px;
}

.ti-news-card--compact .ti-news-card__body h3 {
  font-size: 16px;
}

.ti-news-card--compact .ti-news-card__body p {
  display: none;
}

.ti-special-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.95fr;
  gap: 20px;
}

.ti-video-card,
.ti-opinion-card,
.ti-newsletter-panel {
  min-height: 320px;
  padding: 28px;
}

.ti-video-card {
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.12), transparent 48%),
    var(--ti-paper);
}

.ti-video-card h2,
.ti-opinion-card h2,
.ti-newsletter-panel h2 {
  margin: 72px 0 14px;
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.ti-video-card p,
.ti-opinion-card p,
.ti-newsletter-panel p {
  color: var(--ti-soft);
  font-weight: 600;
}

.ti-newsletter-panel {
  display: flex;
  flex-direction: column;
  background: #07101d;
  color: #fff;
}

.ti-newsletter-panel form {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.ti-newsletter-panel input,
.ti-page .search-field,
.ti-error .search-field {
  min-height: 46px;
  border: 1px solid var(--ti-line);
  border-radius: 8px;
  padding: 0 12px;
}

.ti-newsletter-panel input {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ti-newsletter-panel button,
.ti-page .search-submit,
.ti-error .search-submit {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--ti-blue);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 0 16px;
}

.ti-page,
.ti-article {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 54px);
}

.ti-page h1,
.ti-archive-head h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.ti-page__content,
.ti-article-content {
  margin-top: 28px;
  color: #202936;
  font-size: 18px;
}

.ti-page__content h2,
.ti-article-content h2 {
  margin-top: 34px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.ti-page__content a,
.ti-article-content a {
  color: var(--ti-blue);
  font-weight: 800;
}

.ti-archive-head {
  margin-bottom: 24px;
  padding: 34px;
  border: 1px solid var(--ti-line);
  border-radius: var(--ti-radius);
  background: var(--ti-paper);
}

.ti-archive-head p {
  max-width: 760px;
  color: var(--ti-soft);
  font-size: 18px;
}

.ti-pagination {
  margin-top: 30px;
  font-weight: 850;
}

.ti-error {
  text-align: center;
}

.ti-error form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.ti-footer {
  margin-top: 40px;
  border-top: 1px solid var(--ti-line);
  background: #07101d;
  color: #d8e3f0;
}

.ti-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
  padding: 44px 0;
}

.ti-footer__brand {
  display: flex;
  align-items: baseline;
  color: #fff;
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.07em;
}

.ti-footer__brand strong {
  color: var(--ti-blue-2);
}

.ti-footer__brand em {
  font-size: 22px;
  font-style: normal;
}

.ti-footer p {
  max-width: 420px;
  color: #a9b6c6;
}

.ti-footer__company {
  margin-top: 8px;
  color: #d8e3f0 !important;
  font-weight: 800;
}

.ti-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
}

.ti-footer nav,
.ti-footer__brief {
  display: grid;
  align-content: start;
  gap: 9px;
}

.ti-footer a {
  color: #d8e3f0;
  font-weight: 750;
}

.ti-footer a:hover {
  color: #fff;
}

.ti-footer__brief a {
  width: fit-content;
  border-radius: 8px;
  background: var(--ti-blue);
  color: #fff;
  padding: 10px 14px;
}

.ti-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #a9b6c6;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1320px) {
  .ti-home-grid,
  .ti-hero-card,
  .ti-briefing,
  .ti-special-grid {
    grid-template-columns: 1fr;
  }

  .ti-popular-panel {
    border-left: 0;
    padding-left: 0;
  }

  .ti-hero-copy::after {
    display: none;
  }
}

@media (max-width: 960px) {
  .ti-shell {
    width: min(100% - 28px, 1860px);
  }

  .ti-topline,
  .ti-brandbar,
  .ti-navrow {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .ti-trending,
  .ti-social,
  .ti-brand-divider {
    display: none;
  }

  .ti-tagline {
    font-size: 18px;
  }

  .ti-brand-actions {
    flex-wrap: wrap;
  }

  .ti-nav {
    gap: 20px;
    min-height: 48px;
  }

  .ti-search {
    width: 100%;
  }

  .ti-hero-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .ti-popular-list li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .ti-popular-list img {
    display: none;
  }

  .ti-brief-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .ti-iconbox {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .ti-news-grid,
  .ti-category-board,
  .ti-footer__grid {
    grid-template-columns: 1fr;
  }

  .ti-news-card--wide,
  .ti-news-card--compact {
    grid-template-columns: 1fr;
  }

  .ti-news-card--compact .ti-news-card__image {
    aspect-ratio: 16 / 9;
  }
}

/* Stability pass: avoid clipped type and unnecessary header scrollbars. */
html,
body {
  overflow-x: hidden;
}

body.ti-ready {
  animation: none;
}

.ti-header *,
.ti-main * {
  min-width: 0;
}

.ti-topline,
.ti-navrow {
  overflow: hidden;
}

.ti-trending,
.ti-nav {
  min-width: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ti-trending::-webkit-scrollbar,
.ti-nav::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ti-topline {
  gap: clamp(10px, 1.3vw, 22px);
}

.ti-trending {
  gap: clamp(12px, 1.3vw, 22px);
}

.ti-region {
  min-width: 160px;
}

.ti-social {
  gap: clamp(12px, 1.2vw, 20px);
  padding-left: clamp(12px, 1.2vw, 22px);
}

.ti-brandbar {
  grid-template-columns: minmax(0, auto) 1px minmax(180px, 1fr) auto;
  column-gap: clamp(14px, 2vw, 28px);
  min-height: 118px;
  overflow: visible;
}

.ti-brand {
  align-items: flex-end;
  line-height: 1;
  padding-bottom: 4px;
}

.ti-brand__tech,
.ti-brand__infos,
.ti-brand__ro {
  line-height: 1;
  padding-top: 0.06em;
  padding-bottom: 0.06em;
}

.ti-tagline {
  line-height: 1.25;
}

.ti-brand-actions {
  flex-shrink: 0;
  min-width: max-content;
}

.ti-newsletter-link,
.ti-brief-button {
  line-height: 1.15;
  white-space: nowrap;
}

.ti-navrow {
  grid-template-columns: 52px minmax(0, 1fr) minmax(210px, 340px);
  gap: clamp(10px, 1.4vw, 18px);
}

.ti-nav {
  gap: clamp(14px, 2vw, 30px);
  overscroll-behavior-x: contain;
}

.ti-nav a {
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.2;
}

.ti-home-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(18px, 1.8vw, 26px);
}

.ti-hero-card {
  grid-template-columns: minmax(300px, 0.75fr) minmax(420px, 1.25fr);
}

.ti-hero-copy::after {
  right: -52px;
  width: 104px;
  pointer-events: none;
}

.ti-hero-copy h1,
.ti-section-head h2,
.ti-news-card__body h3,
.ti-video-card h2,
.ti-opinion-card h2,
.ti-newsletter-panel h2,
.ti-page h1,
.ti-archive-head h1 {
  line-height: 1.08;
  padding-bottom: 0.04em;
}

.ti-popular-head h2,
.ti-briefing-title h2 {
  line-height: 1.1;
  padding-bottom: 0.04em;
}

.ti-popular-copy a,
.ti-brief-item h3,
.ti-page__content,
.ti-article-content {
  line-height: 1.34;
}

.ti-button,
.ti-label,
.ti-chip {
  line-height: 1.15;
}

.ti-author-row .ti-avatar {
  display: grid;
  flex: 0 0 44px;
  line-height: 1;
}

@media (max-width: 1580px) {
  .ti-home-grid {
    grid-template-columns: 1fr;
  }

  .ti-popular-panel {
    border-left: 0;
    padding-left: 0;
  }

  .ti-popular-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 1180px) {
  .ti-brandbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .ti-brand-divider,
  .ti-tagline {
    display: none;
  }

  .ti-navrow {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ti-search {
    grid-column: 1 / -1;
  }

  .ti-hero-card {
    grid-template-columns: 1fr;
  }

  .ti-hero-copy::after {
    display: none;
  }

  .ti-hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .ti-shell {
    width: min(100% - 24px, 1860px);
  }

  .ti-topline {
    grid-template-columns: 1fr auto;
  }

  .ti-region {
    min-width: 140px;
  }

  .ti-brand__tech,
  .ti-brand__infos {
    font-size: clamp(44px, 16vw, 68px);
  }

  .ti-brand__ro {
    font-size: clamp(28px, 8vw, 42px);
  }

  .ti-popular-list {
    grid-template-columns: 1fr;
  }
}

/* UI Max refresh: dynamic newsroom layer. */
:root {
  --ti-bg: #f5f7fb;
  --ti-paper: #ffffff;
  --ti-panel: #0a1020;
  --ti-ink: #070910;
  --ti-soft: #485364;
  --ti-muted: #7c8797;
  --ti-line: #dfe6f0;
  --ti-blue: #064cff;
  --ti-cyan: #00b8ff;
  --ti-pink: #ec4899;
  --ti-lime: #9ee64f;
  --ti-orange: #ff5a1f;
  --ti-radius: 8px;
  --ti-shadow: 0 22px 70px rgba(11, 19, 38, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 76, 255, 0.10), transparent 26rem),
    linear-gradient(180deg, #fbfcff 0%, var(--ti-bg) 34%, #eef3f9 100%);
  color: var(--ti-ink);
}

.ti-shell {
  width: min(1640px, calc(100% - 56px));
}

.ti-header {
  background: rgba(251, 252, 255, 0.88);
  backdrop-filter: blur(18px);
}

.ti-topline {
  min-height: 48px;
  overflow: hidden;
}

.ti-trending strong {
  background: var(--ti-panel);
  border-radius: 999px;
}

.ti-region {
  border-radius: 999px;
}

.ti-brandbar {
  min-height: 108px;
}

.ti-brand__tech,
.ti-brand__infos,
.ti-brand__ro {
  letter-spacing: -0.065em;
}

.ti-brand__infos {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--ti-blue);
}

.ti-tagline {
  max-width: 500px;
  font-weight: 700;
}

.ti-navrow {
  min-height: 60px;
}

.ti-nav {
  min-height: 60px;
}

.ti-nav a {
  min-height: 60px;
  font-size: clamp(14px, 0.95vw, 17px);
}

.ti-search {
  background: rgba(255, 255, 255, 0.74);
}

.ti-main {
  padding-top: clamp(18px, 2.4vw, 34px);
}

.ti-home-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: clamp(20px, 2vw, 34px);
  align-items: start;
}

.ti-card,
.ti-news-card,
.ti-archive-head,
.ti-page,
.ti-article {
  border: 1px solid rgba(170, 185, 205, 0.48);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(16px);
}

.ti-card:hover,
.ti-news-card:hover {
  box-shadow: var(--ti-shadow);
}

.ti-hero-card {
  position: relative;
  grid-template-columns: minmax(330px, 0.68fr) minmax(460px, 1.32fr);
  min-height: clamp(520px, 42vw, 670px);
  border-color: rgba(8, 14, 28, 0.14);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0 42%, rgba(255, 255, 255, 0.72) 42% 100%),
    var(--ti-paper);
  overflow: hidden;
}

.ti-hero-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 76, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 76, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(90deg, #000 0%, transparent 54%);
}

.ti-hero-copy {
  min-height: inherit;
  padding: clamp(28px, 3.2vw, 58px);
  background: transparent;
}

.ti-hero-copy::after {
  display: none;
}

.ti-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(6, 76, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 76, 255, 0.08);
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.ti-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ti-orange);
  box-shadow: 0 0 0 7px rgba(255, 90, 31, 0.14);
  content: "";
}

.ti-hero-copy h1 {
  max-width: 720px;
  margin: 24px 0 18px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(46px, 5.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-wrap: balance;
}

.ti-hero-copy p {
  max-width: 620px;
  color: #334052;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 650;
}

.ti-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.ti-hero-stats span {
  display: grid;
  gap: 2px;
  min-height: 74px;
  border: 1px solid rgba(170, 185, 205, 0.52);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 13px;
  color: var(--ti-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ti-hero-stats strong {
  color: var(--ti-ink);
  font-size: 24px;
  line-height: 1;
}

.ti-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: inherit;
  border-left: 1px solid rgba(170, 185, 205, 0.42);
  background:
    radial-gradient(circle at var(--ti-pointer-x, 55%) var(--ti-pointer-y, 42%), rgba(0, 184, 255, 0.30), transparent 20rem),
    #081120;
  isolation: isolate;
}

.ti-hero-visual::before,
.ti-news-card__image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 50%, transparent 53%),
    radial-gradient(circle at var(--ti-pointer-x, 50%) var(--ti-pointer-y, 50%), rgba(255, 255, 255, 0.16), transparent 12rem);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.ti-hero-card:hover .ti-hero-visual::before,
.ti-news-card:hover .ti-news-card__image::before {
  opacity: 1;
}

.ti-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 42vw, 670px);
}

.ti-hero-visual img.ti-hero-visual__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: blur(18px) saturate(1.15);
  transform: scale(1.08);
}

.ti-hero-visual img.ti-hero-visual__main {
  position: relative;
  z-index: 1;
  width: min(96%, 920px);
  height: auto;
  max-height: min(86%, 620px);
  min-height: 0 !important;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.ti-hero-card:hover .ti-hero-visual img.ti-hero-visual__backdrop {
  transform: scale(1.11);
}

.ti-hero-card:hover .ti-hero-visual img.ti-hero-visual__main {
  transform: scale(1.018);
}

.ti-hero-visual--generated-cover img,
.ti-news-card--generated-cover .ti-news-card__image img,
.ti-article-cover--generated img {
  object-fit: contain;
  padding: clamp(8px, 1.1vw, 16px);
  background: #091323;
}

.ti-hero-visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--ti-radius);
  background: rgba(7, 13, 25, 0.72);
  color: #fff;
  padding: 14px;
  backdrop-filter: blur(14px);
}

.ti-hero-visual figcaption span {
  color: var(--ti-lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ti-hero-visual figcaption strong {
  font-size: 18px;
}

.ti-author-row {
  margin: 24px 0;
}

.ti-button--primary {
  border-radius: 999px;
  background: var(--ti-panel);
  box-shadow: 0 16px 34px rgba(6, 76, 255, 0.22);
}

.ti-button--primary:hover {
  background: var(--ti-blue);
}

.ti-popular-panel {
  position: sticky;
  top: 204px;
  border: 1px solid rgba(170, 185, 205, 0.48);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.ti-popular-list li {
  position: relative;
  grid-template-columns: 48px minmax(0, 1fr) 76px;
  min-height: 112px;
  transition: transform 180ms ease;
}

.ti-popular-list li:hover {
  transform: translateX(4px);
}

.ti-popular-list strong {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ti-blue);
}

.ti-popular-copy a {
  font-size: 15px;
  line-height: 1.28;
}

.ti-popular-list img {
  width: 76px;
  height: 76px;
  border-radius: var(--ti-radius);
}

.ti-briefing {
  grid-template-columns: minmax(210px, 0.72fr) repeat(3, minmax(0, 1fr));
  border-color: rgba(170, 185, 205, 0.48);
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.06), transparent 35%),
    rgba(255, 255, 255, 0.84);
}

.ti-iconbox {
  border-radius: var(--ti-radius);
  background: #fff;
}

.ti-section {
  margin-top: clamp(34px, 4vw, 64px);
}

.ti-section-head {
  border-bottom: 0;
}

.ti-section-head h2,
.ti-popular-head h2,
.ti-briefing-title h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.ti-news-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ti-news-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
}

.ti-news-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--ti-card-x, 50%) var(--ti-card-y, 0), rgba(6, 76, 255, 0.12), transparent 15rem);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.ti-news-card:hover::after {
  opacity: 1;
}

.ti-news-card__image {
  position: relative;
  background: #091323;
}

.ti-news-card__body {
  position: relative;
  z-index: 1;
}

.ti-news-card__body h3 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 760;
  line-height: 1.02;
  text-wrap: balance;
}

.ti-news-card--wide {
  grid-column: span 8;
}

.ti-news-card--wide .ti-news-card__body h3 {
  font-size: clamp(34px, 3.3vw, 58px);
  line-height: 0.96;
}

.ti-news-card--compact {
  grid-column: auto;
}

.ti-news-card--compact .ti-news-card__body h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.ti-category-board {
  gap: 18px;
}

.ti-category-column {
  border: 1px solid rgba(170, 185, 205, 0.48);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

.ti-special-grid {
  grid-template-columns: 1.2fr 0.9fr 1fr;
}

.ti-video-card,
.ti-opinion-card,
.ti-newsletter-panel {
  position: relative;
  overflow: hidden;
}

.ti-video-card {
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.86);
}

.ti-opinion-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.18), transparent 22rem),
    rgba(255, 255, 255, 0.86);
}

.ti-newsletter-panel {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 184, 255, 0.22), transparent 16rem),
    var(--ti-panel);
}

.ti-panel-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 184, 255, 0.16), transparent 22rem),
    linear-gradient(135deg, #ffffff, #f4f7fb);
}

.ti-panel-hero::after {
  position: absolute;
  right: 26px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(6, 76, 255, 0.20);
  border-radius: 999px;
  content: "";
}

.ti-page,
.ti-article {
  max-width: 1060px;
}

.ti-article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88)),
    var(--ti-paper);
}

.ti-article h1 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(46px, 6.2vw, 92px);
  font-weight: 800;
  line-height: 0.96;
  text-wrap: balance;
}

.ti-article-cover {
  margin: 0 0 30px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--ti-radius);
  background: #091323;
}

.ti-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ti-article-content {
  max-width: 780px;
  margin-inline: auto;
  color: #1d2735;
  font-size: 19px;
  line-height: 1.72;
}

.ti-article-content h2 {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.04;
}

.ti-reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
}

.ti-reveal.ti-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--ti-delay, 0ms);
}

@media (max-width: 1320px) {
  .ti-popular-panel {
    position: static;
  }

  .ti-hero-card,
  .ti-special-grid {
    grid-template-columns: 1fr;
  }

  .ti-hero-visual {
    border-top: 1px solid rgba(170, 185, 205, 0.42);
    border-left: 0;
  }
}

@media (max-width: 1100px) {
  .ti-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ti-news-card,
  .ti-news-card--wide {
    grid-column: auto;
  }

  .ti-news-card--wide {
    grid-template-columns: 1fr;
  }

  .ti-briefing,
  .ti-category-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ti-shell {
    width: min(100% - 24px, 1640px);
  }

  .ti-header {
    position: static;
  }

  .ti-social,
  .ti-brand-actions .ti-newsletter-link {
    display: none;
  }

  .ti-brandbar {
    min-height: 86px;
  }

  .ti-hero-card,
  .ti-hero-copy,
  .ti-hero-visual,
  .ti-hero-visual img {
    min-height: auto;
  }

  .ti-hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .ti-hero-stats,
  .ti-news-grid,
  .ti-popular-list {
    grid-template-columns: 1fr;
  }

  .ti-hero-visual {
    aspect-ratio: 16 / 10;
  }

  .ti-hero-visual img {
    min-height: 0;
  }

  .ti-popular-list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .ti-popular-list img {
    display: none;
  }

  .ti-news-card--compact {
    grid-template-columns: 1fr;
  }

  .ti-news-card--compact .ti-news-card__image {
    aspect-ratio: 16 / 9;
  }

  .ti-article,
  .ti-page,
  .ti-archive-head {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ti-reveal,
  .ti-reveal.ti-visible {
    opacity: 1;
    transform: none;
  }
}

/* Visual QA corrections. */
.ti-hero-card {
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
}

.ti-hero-copy h1 {
  max-width: 660px;
  font-size: clamp(44px, 4.4vw, 78px);
  overflow-wrap: normal;
}

.ti-popular-panel .ti-popular-list {
  grid-template-columns: 1fr;
}

.ti-popular-panel .ti-popular-list li {
  grid-template-columns: 50px minmax(0, 1fr) 82px;
}

.ti-popular-copy a {
  overflow-wrap: anywhere;
}

@media (max-width: 1320px) {
  .ti-home-grid,
  .ti-hero-card {
    grid-template-columns: 1fr;
  }

  .ti-hero-copy h1 {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .ti-nav {
    flex-wrap: wrap;
    gap: 10px 16px;
    overflow: hidden;
  }

  .ti-nav a {
    min-height: 34px;
  }

  .ti-hero-copy h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .ti-brandbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .ti-brand-actions {
    display: none;
  }

  .ti-brief-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 14px;
  }

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

  .ti-hero-stats span {
    min-height: 66px;
    padding: 10px;
    font-size: 10px;
  }

  .ti-hero-stats strong {
    font-size: 21px;
  }
}

/* Hero image correction: full media with readable editorial overlay. */
.ti-hero-card {
  display: block;
  min-height: clamp(560px, 40vw, 650px);
}

.ti-hero-card::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 76, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 76, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, #000 0 43%, transparent 62%);
}

.ti-hero-copy {
  position: relative;
  z-index: 2;
  width: min(52%, 560px);
  min-height: clamp(560px, 40vw, 650px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 68%, rgba(255, 255, 255, 0) 100%);
}

.ti-hero-copy h1 {
  max-width: 520px;
  font-size: clamp(44px, 4.25vw, 76px);
}

.ti-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border: 0;
}

.ti-hero-visual img.ti-hero-visual__backdrop {
  display: none;
}

.ti-hero-visual img.ti-hero-visual__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 0;
  box-shadow: none;
}

.ti-hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(7, 13, 25, 0.12));
  content: "";
}

.ti-hero-visual figcaption {
  z-index: 2;
}

.ti-hero-card:hover .ti-hero-visual img.ti-hero-visual__main {
  transform: scale(1.028);
}

@media (max-width: 1320px) {
  .ti-hero-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ti-hero-copy {
    width: min(62%, 620px);
  }
}

@media (max-width: 760px) {
  .ti-hero-card {
    min-height: 0;
    padding-top: 220px;
  }

  .ti-hero-copy {
    width: 100%;
    min-height: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.90), #fff 34%);
  }

  .ti-hero-visual {
    height: 250px;
    bottom: auto;
  }

  .ti-hero-visual img.ti-hero-visual__main {
    object-position: center;
  }

  .ti-hero-visual figcaption {
    display: none;
  }
}

/* UX polish: tighter masthead, clearer scan paths, less sidebar noise. */
.ti-topline {
  min-height: 42px;
}

.ti-brandbar {
  min-height: 92px;
  padding: 10px 0 12px;
}

.ti-brand__tech,
.ti-brand__infos,
.ti-brand__ro {
  font-size: clamp(52px, 5.8vw, 96px);
}

.ti-brand__ro {
  font-size: clamp(30px, 2.8vw, 52px);
}

.ti-navrow,
.ti-nav,
.ti-nav a {
  min-height: 56px;
}

.ti-main {
  padding-top: 18px;
}

.ti-home-grid {
  gap: 28px;
}

.ti-hero-card {
  min-height: clamp(520px, 37vw, 610px);
}

.ti-hero-copy {
  min-height: clamp(520px, 37vw, 610px);
  padding: clamp(28px, 3vw, 48px);
}

.ti-hero-copy h1 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  max-width: 520px;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.ti-hero-copy p {
  max-width: 490px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.36;
}

.ti-hero-stats {
  max-width: 480px;
}

.ti-hero-stats span {
  min-height: 66px;
}

.ti-popular-panel {
  padding: 16px 18px;
}

.ti-popular-head {
  align-items: center;
}

.ti-popular-head h2 {
  font-size: 32px;
}

.ti-popular-panel .ti-popular-list li {
  grid-template-columns: 46px minmax(0, 1fr) 74px;
  min-height: 104px;
  gap: 12px;
  padding: 15px 0;
}

.ti-popular-list strong {
  font-size: 36px;
}

.ti-popular-copy span {
  color: var(--ti-blue);
  font-size: 11px;
}

.ti-popular-copy a {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ti-popular-copy small {
  margin-top: 7px;
}

.ti-popular-list img {
  width: 74px;
  height: 74px;
}

.ti-briefing {
  padding: 16px;
}

.ti-brief-item h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ti-news-card__body h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.ti-news-card--wide .ti-news-card__body h3 {
  font-size: clamp(30px, 2.8vw, 48px);
  line-height: 1;
}

.ti-news-card__body p {
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ti-section-head h2 {
  font-size: clamp(30px, 2.6vw, 44px);
}

@media (max-width: 1320px) {
  .ti-hero-copy {
    width: min(60%, 620px);
  }
}

@media (max-width: 760px) {
  .ti-topline {
    min-height: 40px;
  }

  .ti-brandbar {
    min-height: 0;
    padding: 14px 0 12px;
  }

  .ti-brand__tech,
  .ti-brand__infos {
    font-size: clamp(44px, 15vw, 64px);
  }

  .ti-brand__ro {
    font-size: clamp(26px, 7vw, 38px);
  }

  .ti-navrow,
  .ti-nav {
    min-height: 0;
  }

  .ti-hero-card {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .ti-hero-copy {
    order: 2;
    padding: 28px;
  }

  .ti-hero-visual {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .ti-hero-visual img.ti-hero-visual__main {
    position: absolute;
  }

  .ti-hero-copy h1 {
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1;
  }

  .ti-hero-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ti-hero-stats {
    display: none;
  }

  .ti-author-row {
    margin: 18px 0;
  }

  .ti-button--primary {
    min-width: 0;
    min-height: 48px;
    padding: 0 18px;
  }

  .ti-popular-panel .ti-popular-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }
}

/* Romania and category layout refresh: no orphan card gaps. */
.ti-romania-radar {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 76, 255, 0.18);
  border-radius: var(--ti-radius);
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.10), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(0, 184, 255, 0.16), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  padding: clamp(20px, 2.4vw, 34px);
}

.ti-romania-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.ti-romania-head span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--ti-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.ti-romania-head h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.ti-romania-head p {
  margin: 0;
  color: var(--ti-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
}

.ti-romania-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.ti-romania-layout:has(.ti-romania-feature:only-child) {
  grid-template-columns: 1fr;
}

.ti-romania-layout--single {
  grid-template-columns: 1fr;
}

.ti-romania-layout:has(.ti-romania-feature:only-child) .ti-romania-feature,
.ti-romania-layout--single .ti-romania-feature {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.ti-romania-feature,
.ti-romania-list {
  border: 1px solid rgba(170, 185, 205, 0.55);
  border-radius: var(--ti-radius);
  background: rgba(255, 255, 255, 0.80);
  overflow: hidden;
}

.ti-romania-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.ti-romania-feature__image {
  display: block;
  min-height: 340px;
  background: #091323;
  overflow: hidden;
}

.ti-romania-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.ti-romania-feature:hover .ti-romania-feature__image img {
  transform: scale(1.045);
}

.ti-romania-feature--generated-cover .ti-romania-feature__image img {
  object-fit: contain;
  padding: 14px;
}

.ti-romania-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.6vw, 40px);
}

.ti-romania-feature__copy span,
.ti-romania-list span {
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ti-romania-feature__copy h3 {
  margin: 14px 0;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.ti-romania-feature__copy p {
  color: var(--ti-soft);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
}

.ti-romania-link {
  width: fit-content;
  margin-top: 10px;
  border-bottom: 2px solid var(--ti-blue);
  color: var(--ti-blue);
  font-weight: 950;
}

.ti-romania-list {
  display: grid;
}

.ti-romania-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  border-bottom: 1px solid rgba(170, 185, 205, 0.48);
}

.ti-romania-list article:last-child {
  border-bottom: 0;
}

.ti-romania-list strong {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--ti-blue);
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.ti-romania-list h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ti-category-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ti-category-column {
  display: grid;
  grid-template-columns: minmax(210px, 280px) repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 16px;
}

.ti-category-column .ti-section-head {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(170, 185, 205, 0.50);
  border-radius: var(--ti-radius);
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.10), transparent 54%),
    #fff;
}

.ti-category-column .ti-section-head h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 950;
  line-height: 1;
}

.ti-category-column .ti-section-head a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--ti-panel);
  color: #fff;
}

.ti-category-column .ti-news-card--compact {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  min-height: 100%;
}

.ti-category-column .ti-news-card--compact .ti-news-card__image {
  height: 100%;
  min-height: 126px;
  aspect-ratio: auto;
}

.ti-category-column .ti-news-card--compact .ti-news-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.ti-category-column .ti-news-card--compact .ti-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
}

.ti-category-column .ti-news-card--compact .ti-news-card__body p {
  display: none;
}

.ti-category-column .ti-news-card--generated-cover .ti-news-card__image img {
  object-fit: contain;
  padding: 6px;
  background: #081323;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact {
  display: grid !important;
  grid-template-columns: 116px minmax(0, 1fr) !important;
  min-height: 126px !important;
  height: auto !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact .ti-news-card__image {
  width: 116px !important;
  min-height: 126px !important;
  height: 100% !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact .ti-news-card__body {
  display: flex !important;
  min-width: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.archive .ti-news-grid,
body.search .ti-news-grid,
body.blog .ti-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1120px;
}

body.archive .ti-news-card,
body.search .ti-news-card,
body.blog .ti-news-card {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  min-height: 220px;
}

body.archive .ti-news-card__image,
body.search .ti-news-card__image,
body.blog .ti-news-card__image {
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
}

body.archive .ti-news-card__body,
body.search .ti-news-card__body,
body.blog .ti-news-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 34px);
}

body.archive .ti-news-card__body h3,
body.search .ti-news-card__body h3,
body.blog .ti-news-card__body h3 {
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.02;
}

body.archive .ti-news-card__body p,
body.search .ti-news-card__body p,
body.blog .ti-news-card__body p {
  max-width: 720px;
}

@media (max-width: 1100px) {
  .ti-romania-head,
  .ti-romania-layout,
  .ti-romania-feature,
  .ti-category-column {
    grid-template-columns: 1fr;
  }

  .ti-category-column {
    padding: 14px;
  }

  .ti-category-column .ti-news-card--compact {
    grid-template-columns: 140px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .ti-romania-radar {
    padding: 18px;
  }

  .ti-romania-head {
    gap: 12px;
  }

  .ti-romania-head h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .ti-romania-feature__image {
    min-height: 190px;
  }

  .ti-romania-feature__copy {
    padding: 20px;
  }

  .ti-romania-feature__copy h3 {
    font-size: clamp(26px, 8vw, 36px);
  }

  body.archive .ti-news-card,
  body.search .ti-news-card,
  body.blog .ti-news-card {
    grid-template-columns: 1fr;
  }

  body.archive .ti-news-card__image,
  body.search .ti-news-card__image,
  body.blog .ti-news-card__image {
    min-height: 190px;
    aspect-ratio: 16 / 9;
  }

  .ti-category-column .ti-news-card--compact {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .ti-category-column .ti-news-card--compact .ti-news-card__image {
    min-height: 112px;
  }
}

/* Latest feed hard reset: stable editorial rows, no collapsed grid columns. */
.ti-latest-strip {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin-inline: auto;
}

.ti-latest-strip .ti-section-head {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-inline: 0;
}

.ti-latest-strip .ti-section-head a {
  margin-left: auto;
}

.ti-news-grid.ti-news-grid--latest {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
  max-width: 1180px !important;
}

.ti-news-grid--latest > .ti-news-card,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
  display: grid !important;
  grid-column: auto !important;
  grid-template-columns: 320px minmax(0, 1fr) !important;
  width: 100% !important;
  min-height: 220px !important;
  height: auto !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__image,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image {
  width: 320px !important;
  height: 100% !important;
  min-height: 220px !important;
  aspect-ratio: auto !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
}

.ti-news-grid--latest > .ti-news-card.ti-news-card--generated-cover .ti-news-card__image img {
  object-fit: contain !important;
  padding: 10px !important;
  background: #091323;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body {
  display: flex !important;
  min-height: 220px !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(22px, 2.8vw, 42px) !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body h3,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(27px, 2.7vw, 46px) !important;
  font-weight: 950 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.48;
}

@media (max-width: 760px) {
  .ti-news-grid--latest > .ti-news-card,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
    grid-template-columns: 1fr !important;
  }

  .ti-news-grid--latest > .ti-news-card .ti-news-card__image,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image {
    width: 100% !important;
    min-height: 190px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .ti-news-grid--latest > .ti-news-card .ti-news-card__body,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body {
    min-height: 0 !important;
    padding: 20px !important;
  }

  .ti-news-grid--latest > .ti-news-card .ti-news-card__body h3,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body h3 {
    font-size: clamp(24px, 7.5vw, 34px) !important;
  }
}

/* Editorial feeds must remain immediately readable; reveal effects are reserved for hero/panel surfaces. */
.ti-news-card.ti-reveal,
.ti-category-column.ti-reveal,
.ti-section-head.ti-reveal,
.ti-news-grid--latest .ti-news-card,
.ti-category-board .ti-news-card,
body.archive .ti-news-card,
body.search .ti-news-card,
body.blog .ti-news-card {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.ti-news-grid--latest .ti-news-card {
  overflow: hidden !important;
}

.ti-news-grid--latest .ti-news-card__body,
.ti-category-board .ti-news-card__body {
  min-width: 0 !important;
}

/* Topic lanes: compact category blocks without broken-looking generated-cover strips. */
.ti-category-board {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
}

.ti-category-board .ti-category-column {
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: 1px solid rgba(170, 185, 205, 0.62) !important;
  border-radius: var(--ti-radius) !important;
  background: #fff !important;
  counter-reset: ti-topic-card !important;
}

.ti-category-board .ti-category-column .ti-section-head {
  min-height: 188px !important;
  margin: 0 !important;
  padding: 22px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(170, 185, 205, 0.62) !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 86% 18%, rgba(6, 76, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%) !important;
}

.ti-category-board .ti-category-column .ti-section-head h2 {
  max-width: 10ch !important;
  font-size: clamp(30px, 3vw, 42px) !important;
  line-height: 0.96 !important;
}

.ti-category-board .ti-category-column .ti-section-head a {
  background: #06101f !important;
  box-shadow: 0 16px 30px rgba(6, 16, 31, 0.14) !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  min-height: 126px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(170, 185, 205, 0.52) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  counter-increment: ti-topic-card !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact:last-child {
  border-bottom: 0 !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact::before {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 3px !important;
  color: transparent !important;
  -webkit-text-stroke: 1.15px var(--ti-blue) !important;
  content: "0" counter(ti-topic-card) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 28px !important;
  font-weight: 950 !important;
  letter-spacing: -0.08em !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact .ti-news-card__image {
  display: none !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact .ti-news-card__body {
  justify-content: center !important;
  padding: 18px 18px 18px 0 !important;
}

.ti-category-board .ti-category-column > .ti-news-card.ti-news-card--compact .ti-news-card__body h3 {
  font-size: clamp(18px, 1.35vw, 23px) !important;
  line-height: 1.06 !important;
  -webkit-line-clamp: 3 !important;
}

@media (max-width: 980px) {
  .ti-category-board {
    grid-template-columns: 1fr !important;
  }

  .ti-category-board .ti-category-column .ti-section-head {
    min-height: 148px !important;
  }

  .ti-category-board .ti-category-column .ti-section-head h2 {
    max-width: none !important;
  }
}

/* Briefing is a live navigation surface, not a static decoration. */
.ti-briefing .ti-brief-item {
  position: relative !important;
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer !important;
  outline: 0 !important;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease !important;
}

.ti-briefing .ti-brief-item::before {
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 3px !important;
  background: linear-gradient(180deg, var(--ti-blue), var(--ti-cyan)) !important;
  content: "" !important;
  opacity: 0 !important;
  transition: opacity 180ms ease !important;
}

.ti-briefing .ti-brief-item:hover,
.ti-briefing .ti-brief-item:focus-visible {
  background: rgba(6, 76, 255, 0.045) !important;
  box-shadow: 0 16px 34px rgba(15, 33, 62, 0.08) !important;
  transform: translateY(-2px) !important;
}

.ti-briefing .ti-brief-item:hover::before,
.ti-briefing .ti-brief-item:focus-visible::before {
  opacity: 1 !important;
}

.ti-briefing .ti-brief-item:focus-visible {
  box-shadow: 0 0 0 3px rgba(6, 76, 255, 0.18), 0 16px 34px rgba(15, 33, 62, 0.08) !important;
}

.ti-briefing .ti-brief-item .ti-chip {
  animation: none !important;
}

/* Premium newsroom pass: reduce decorative noise and sharpen hierarchy. */
body {
  background: #f7f9fc !important;
}

.ti-header {
  border-bottom: 1px solid rgba(170, 185, 205, 0.58) !important;
  background: rgba(248, 250, 253, 0.94) !important;
  backdrop-filter: blur(18px) !important;
}

.ti-topline {
  min-height: 38px !important;
  padding-block: 7px !important;
  border-bottom: 1px solid rgba(170, 185, 205, 0.42) !important;
}

.ti-topline > span {
  color: #536172 !important;
  font-size: 13px !important;
  font-weight: 760 !important;
}

.ti-topline .ti-trending,
.ti-topline .ti-social {
  display: none !important;
}

.ti-region {
  margin-left: auto !important;
}

.ti-region button {
  min-height: 30px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
}

.ti-brandbar {
  min-height: 106px !important;
  padding-block: 22px !important;
}

.ti-brand {
  letter-spacing: -0.075em !important;
}

.ti-brand-divider {
  height: 44px !important;
  opacity: 0.5 !important;
}

.ti-tagline {
  max-width: 360px !important;
  color: #3d4654 !important;
  font-size: clamp(18px, 1.7vw, 25px) !important;
  font-weight: 720 !important;
}

.ti-newsletter-link {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ti-brief-button {
  border-radius: 8px !important;
  background: #07111f !important;
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.16) !important;
}

.ti-navrow {
  min-height: 58px !important;
  border-top: 1px solid rgba(170, 185, 205, 0.42) !important;
}

.ti-nav a {
  font-size: 14px !important;
  font-weight: 820 !important;
}

.ti-search {
  height: 40px !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.ti-home-grid {
  grid-template-columns: minmax(0, 1fr) 350px !important;
  gap: 24px !important;
}

.ti-hero-card {
  min-height: 520px !important;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr) !important;
  overflow: hidden !important;
  border: 1px solid rgba(170, 185, 205, 0.68) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.ti-hero-card::before,
.ti-hero-card::after,
.ti-hero-visual::before,
.ti-hero-visual__backdrop,
.ti-hero-visual figcaption,
.ti-hero-stats {
  display: none !important;
}

.ti-hero-copy {
  padding: clamp(34px, 4vw, 58px) !important;
}

.ti-kicker {
  gap: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--ti-blue) !important;
  padding: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
}

.ti-kicker::before {
  display: none !important;
}

.ti-hero-copy h1 {
  max-width: 11ch !important;
  margin-top: 20px !important;
  color: #070b12 !important;
  font-size: clamp(46px, 5.2vw, 76px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
}

.ti-hero-copy p {
  max-width: 640px !important;
  color: #485465 !important;
  font-size: clamp(17px, 1.4vw, 20px) !important;
  line-height: 1.5 !important;
}

.ti-author-row {
  margin-top: 26px !important;
}

.ti-avatar {
  border-radius: 8px !important;
  background: #07111f !important;
}

.ti-button--primary {
  border-radius: 8px !important;
  background: #07111f !important;
  box-shadow: none !important;
}

.ti-hero-visual {
  min-height: 100% !important;
  border-left: 1px solid rgba(170, 185, 205, 0.58) !important;
  background: #08111f !important;
}

.ti-hero-visual img.ti-hero-visual__main {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
  transform: none !important;
  filter: saturate(0.98) contrast(1.02) !important;
}

.ti-popular-panel,
.ti-briefing,
.ti-romania-radar,
.ti-category-board .ti-category-column,
.ti-news-card,
.ti-video-card,
.ti-opinion-card,
.ti-newsletter-panel {
  border-radius: 8px !important;
  box-shadow: none !important;
}

.ti-popular-panel {
  border-color: rgba(170, 185, 205, 0.68) !important;
  background: #fff !important;
}

.ti-popular-head h2,
.ti-briefing-title h2,
.ti-section-head h2,
.ti-romania-head h2 {
  color: #070b12 !important;
}

.ti-popular-list strong,
.ti-romania-list strong,
.ti-category-board .ti-news-card--compact::before {
  -webkit-text-stroke: 1px var(--ti-blue) !important;
  opacity: 0.86 !important;
}

.ti-briefing {
  border-color: rgba(170, 185, 205, 0.62) !important;
  background: #fff !important;
}

.ti-iconbox {
  width: 52px !important;
  height: 52px !important;
  border-radius: 8px !important;
  font-size: 18px !important;
  font-weight: 860 !important;
}

.ti-chip {
  color: var(--ti-blue) !important;
  font-size: 11px !important;
}

.ti-romania-radar {
  border: 1px solid rgba(170, 185, 205, 0.68) !important;
  background: #07111f !important;
}

.ti-romania-radar::before {
  opacity: 0.18 !important;
}

.ti-romania-head p {
  color: rgba(238, 244, 255, 0.76) !important;
}

.ti-category-board .ti-category-column .ti-section-head {
  background: #fff !important;
}

@media (max-width: 1120px) {
  .ti-home-grid {
    grid-template-columns: 1fr !important;
  }

  .ti-hero-card {
    grid-template-columns: 1fr !important;
  }

  .ti-hero-visual {
    min-height: 320px !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(170, 185, 205, 0.58) !important;
    order: -1 !important;
  }
}

@media (max-width: 760px) {
  .ti-brandbar {
    min-height: 0 !important;
    padding-block: 18px !important;
  }

  .ti-brand-divider,
  .ti-tagline,
  .ti-newsletter-link {
    display: none !important;
  }

  .ti-hero-card {
    min-height: 0 !important;
  }

  .ti-hero-copy {
    padding: 28px !important;
  }

  .ti-hero-copy h1 {
    max-width: none !important;
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  .ti-hero-visual {
    min-height: 220px !important;
  }
}

/* Final hero de-kitsch reset: split story card, no background poster overlay. */
.ti-hero-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr) !important;
  min-height: 560px !important;
  height: auto !important;
  padding: 0 !important;
}

.ti-hero-copy {
  position: static !important;
  z-index: auto !important;
  width: auto !important;
  min-height: 560px !important;
  background: #fff !important;
  padding: clamp(34px, 3.2vw, 48px) !important;
}

.ti-hero-copy h1 {
  max-width: 13ch !important;
  font-size: clamp(38px, 3.65vw, 54px) !important;
  line-height: 0.98 !important;
}

.ti-hero-copy p {
  max-width: 560px !important;
  font-size: clamp(16px, 1.18vw, 18px) !important;
  line-height: 1.48 !important;
}

.ti-hero-copy .ti-author-row {
  display: none !important;
}

.ti-hero-copy .ti-button {
  margin-top: 22px !important;
}

.ti-hero-visual {
  position: relative !important;
  inset: auto !important;
  z-index: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 560px !important;
  height: auto !important;
  overflow: hidden !important;
}

.ti-hero-visual::after {
  display: none !important;
}

.ti-hero-visual img.ti-hero-visual__main {
  position: static !important;
  inset: auto !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ti-hero-visual:not(.ti-hero-visual--generated-cover) img.ti-hero-visual__main {
  object-fit: cover !important;
}

.ti-hero-visual--generated-cover img.ti-hero-visual__main {
  object-fit: contain !important;
  width: calc(100% - 48px) !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  padding: 0 !important;
  background: #08111f !important;
}

@media (max-width: 1120px) {
  .ti-hero-card {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .ti-hero-copy {
    min-height: 0 !important;
  }

  .ti-hero-visual {
    min-height: 300px !important;
  }
}

@media (max-width: 760px) {
  .ti-hero-card {
    padding-top: 0 !important;
  }

  .ti-hero-visual {
    min-height: 220px !important;
    order: -1 !important;
  }
}

/* Balanced depth pass: dynamic signal deck and tactile editorial surfaces. */
.ti-signal-deck {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  margin: 0 0 18px;
  border: 1px solid rgba(170, 185, 205, 0.66);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 76, 255, 0.07), transparent 38%),
    #fff;
  box-shadow: 0 18px 48px rgba(15, 33, 62, 0.08);
}

.ti-signal-deck__label {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(170, 185, 205, 0.58);
  padding: 18px;
}

.ti-signal-deck__label span,
.ti-signal-deck__items span {
  color: var(--ti-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ti-signal-deck__label strong {
  margin-top: 5px;
  color: #07111f;
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  line-height: 0.96;
}

.ti-signal-deck__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ti-signal-deck__items a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid rgba(170, 185, 205, 0.48);
  color: #07111f;
  padding: 16px 18px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.ti-signal-deck__items a:last-child {
  border-right: 0;
}

.ti-signal-deck__items a::after {
  position: absolute;
  inset: auto 18px 12px 18px;
  height: 2px;
  background: var(--ti-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ti-signal-deck__items a:hover,
.ti-signal-deck__items a:focus-visible {
  background: rgba(6, 76, 255, 0.045);
  transform: translateY(-1px);
}

.ti-signal-deck__items a:hover::after,
.ti-signal-deck__items a:focus-visible::after {
  transform: scaleX(1);
}

.ti-signal-deck__items strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ti-hero-card,
.ti-popular-panel,
.ti-briefing {
  box-shadow: 0 22px 55px rgba(15, 33, 62, 0.10) !important;
}

.ti-hero-card {
  border-color: rgba(113, 133, 163, 0.62) !important;
  background:
    linear-gradient(180deg, #fff, #fbfdff) !important;
}

.ti-hero-card::before {
  display: block !important;
  z-index: 0 !important;
  background:
    radial-gradient(circle at 8% 12%, rgba(6, 76, 255, 0.10), transparent 22%),
    linear-gradient(90deg, rgba(6, 76, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 76, 255, 0.04) 1px, transparent 1px) !important;
  background-size: auto, 42px 42px, 42px 42px !important;
  mask-image: linear-gradient(90deg, #000 0 42%, transparent 68%) !important;
  opacity: 0.82 !important;
}

.ti-hero-copy {
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}

.ti-hero-visual {
  background:
    radial-gradient(circle at 68% 28%, rgba(0, 87, 255, 0.32), transparent 34%),
    #07111f !important;
}

.ti-hero-visual img.ti-hero-visual__main {
  transition: transform 420ms ease, filter 420ms ease !important;
}

.ti-hero-card:hover .ti-hero-visual img.ti-hero-visual__main {
  transform: scale(1.025) !important;
  filter: saturate(1.08) contrast(1.04) !important;
}

.ti-briefing .ti-brief-item:hover,
.ti-briefing .ti-brief-item:focus-visible,
.ti-popular-list li:hover {
  background: rgba(6, 76, 255, 0.04) !important;
}

@media (max-width: 1120px) {
  .ti-signal-deck {
    grid-template-columns: 1fr;
  }

  .ti-signal-deck__label {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(170, 185, 205, 0.58);
  }

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

@media (max-width: 620px) {
  .ti-signal-deck {
    margin-bottom: 14px;
  }

  .ti-signal-deck__label {
    min-height: 72px;
    padding: 16px;
  }

  .ti-signal-deck__label strong {
    font-size: 22px;
  }

  .ti-signal-deck__items {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .ti-signal-deck__items a {
    flex: 0 0 78%;
    min-height: 72px;
    border-right: 1px solid rgba(170, 185, 205, 0.48);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .ti-signal-deck__items a:last-child {
    border-right: 0;
  }

  .ti-signal-deck__items::-webkit-scrollbar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ti-signal-deck__items a,
  .ti-signal-deck__items a::after,
  .ti-hero-visual img.ti-hero-visual__main {
    transition: none !important;
  }
}

/* Premium article template. */
.ti-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}

.ti-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ti-blue);
  transform: scaleX(0);
  transform-origin: left;
}

.ti-article-premium {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 0 72px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.ti-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  overflow: hidden;
  border: 1px solid rgba(170, 185, 205, 0.68);
  border-radius: 8px;
  background:
    radial-gradient(circle at 8% 10%, rgba(6, 76, 255, 0.10), transparent 24%),
    linear-gradient(90deg, rgba(6, 76, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 76, 255, 0.035) 1px, transparent 1px),
    #fff;
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 24px 60px rgba(15, 33, 62, 0.10);
}

.ti-article-hero > * {
  min-width: 0;
}

.ti-article-hero__copy {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.ti-article-hero .ti-label {
  width: fit-content;
  text-decoration: none;
}

.ti-article-hero h1 {
  max-width: 15ch;
  margin: 22px 0 0;
  color: #07111f;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-wrap: balance;
}

.ti-article-deck {
  max-width: 680px;
  margin: 24px 0 0;
  color: #435066;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 680;
  line-height: 1.45;
}

.ti-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #657286;
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.ti-article-cover {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 100%;
  margin: 0 !important;
  border-radius: 0 !important;
  aspect-ratio: auto !important;
}

.ti-article-cover img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  object-fit: cover;
}

.ti-article-cover--generated img {
  object-fit: contain !important;
  padding: 22px !important;
  background: #07111f !important;
  max-width: 100% !important;
}

.ti-article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(30px, 5vw, 70px);
  justify-content: center;
  margin-top: clamp(36px, 5vw, 72px);
}

.ti-article-rail {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 14px;
  color: #4c596b;
}

.ti-article-rail div,
.ti-article-rail a {
  border: 1px solid rgba(170, 185, 205, 0.62);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 33, 62, 0.06);
}

.ti-article-rail span {
  display: block;
  color: var(--ti-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ti-article-rail strong {
  display: block;
  margin-top: 5px;
  color: #07111f;
  font-size: 18px;
  line-height: 1.15;
}

.ti-article-rail a {
  color: #07111f;
  font-weight: 900;
}

.ti-article-content {
  max-width: 760px !important;
  margin: 0 !important;
  color: #172132 !important;
  font-size: clamp(18px, 1.35vw, 20px) !important;
  line-height: 1.72 !important;
}

.ti-article-content > p:first-child {
  color: #07111f;
  font-size: clamp(21px, 1.7vw, 25px);
  font-weight: 650;
  line-height: 1.48;
}

.ti-article-content h2,
.ti-article-content h3 {
  margin-top: 42px;
  color: #07111f;
  font-family: "Newsreader", Georgia, serif;
  letter-spacing: -0.035em;
}

.ti-article-content h2 {
  font-size: clamp(31px, 3vw, 46px) !important;
  line-height: 1.04 !important;
}

.ti-article-content h3 {
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.08;
}

.ti-article-content p,
.ti-article-content li {
  margin-bottom: 1.12em;
}

.ti-article-content blockquote {
  margin: 34px 0;
  border-left: 4px solid var(--ti-blue);
  color: #07111f;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.12;
  padding-left: 24px;
}

.ti-ai-sources {
  margin-top: 46px;
  border: 1px solid rgba(170, 185, 205, 0.68);
  border-radius: 8px;
  background: #f9fbff;
  padding: 22px;
}

.ti-ai-sources h2 {
  margin-top: 0 !important;
  font-size: 26px !important;
}

.ti-ai-sources ul {
  margin-bottom: 0;
}

.ti-related-posts {
  max-width: 1120px;
  margin: clamp(44px, 6vw, 84px) auto 0;
}

.ti-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ti-related-grid .ti-news-card {
  grid-column: auto !important;
}

.ti-article-newsletter {
  max-width: 860px;
  margin: clamp(44px, 6vw, 78px) auto 0;
}

/* Romania dark section contrast fix. */
.ti-romania-radar .ti-romania-head h2 {
  color: #f8fbff !important;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ti-romania-radar .ti-romania-feature,
.ti-romania-radar .ti-romania-list {
  background: rgba(248, 250, 253, 0.94) !important;
}

.ti-romania-radar .ti-romania-feature__copy h3,
.ti-romania-radar .ti-romania-feature__copy h3 a,
.ti-romania-radar .ti-romania-list h3,
.ti-romania-radar .ti-romania-list h3 a {
  color: #07111f !important;
}

@media (max-width: 980px) {
  .ti-article-hero {
    grid-template-columns: 1fr;
  }

  .ti-article-hero__copy {
    min-height: 0;
  }

  .ti-article-cover {
    min-height: 280px;
    aspect-ratio: 16 / 9 !important;
  }

  .ti-article-layout {
    grid-template-columns: 1fr;
  }

  .ti-article-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ti-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ti-article-hero__copy {
    padding: 28px;
  }

  .ti-article-hero h1 {
    max-width: none;
    font-size: clamp(38px, 12vw, 52px);
  }

  .ti-article-layout {
    margin-top: 34px;
  }

  .ti-article-rail {
    grid-template-columns: 1fr;
  }
}

/* Editorial color rebalance: blue becomes a brand accent, not the whole visual language. */
:root {
  --ti-blue: #164fe3;
  --ti-accent: #e85f43;
  --ti-accent-2: #d6a43d;
  --ti-neutral-mark: #263241;
}

.ti-tone-ai {
  --ti-tone: #e85f43;
  --ti-tone-soft: rgba(232, 95, 67, 0.12);
}

.ti-tone-cyber {
  --ti-tone: #e43737;
  --ti-tone-soft: rgba(228, 55, 55, 0.12);
}

.ti-tone-business {
  --ti-tone: #577b28;
  --ti-tone-soft: rgba(87, 123, 40, 0.14);
}

.ti-tone-gadget {
  --ti-tone: #d06b3f;
  --ti-tone-soft: rgba(208, 107, 63, 0.13);
}

.ti-tone-romania {
  --ti-tone: #d6a43d;
  --ti-tone-soft: rgba(214, 164, 61, 0.16);
}

.ti-tone-neutral {
  --ti-tone: #263241;
  --ti-tone-soft: rgba(38, 50, 65, 0.10);
}

body {
  background: #f5f6f8 !important;
}

.ti-signal-deck {
  background:
    linear-gradient(135deg, rgba(232, 95, 67, 0.055), transparent 36%),
    #fff !important;
}

.ti-signal-deck__label span,
.ti-signal-deck__items span,
.ti-section-head span,
.ti-chip {
  color: #4c596b !important;
}

.ti-signal-deck__items a::after,
.ti-briefing .ti-brief-item::before {
  background: var(--ti-accent) !important;
}

.ti-signal-deck__items a:hover,
.ti-signal-deck__items a:focus-visible,
.ti-briefing .ti-brief-item:hover,
.ti-briefing .ti-brief-item:focus-visible,
.ti-popular-list li:hover {
  background: rgba(232, 95, 67, 0.045) !important;
}

.ti-hero-card {
  border-color: rgba(135, 146, 160, 0.58) !important;
}

.ti-hero-card::before {
  background:
    radial-gradient(circle at 10% 12%, var(--ti-tone-soft, rgba(232, 95, 67, 0.10)), transparent 24%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px) !important;
}

.ti-hero-card .ti-kicker,
.ti-hero-card .ti-chip,
.ti-news-card__body > span,
.ti-romania-feature__copy span,
.ti-romania-list span {
  color: var(--ti-tone, var(--ti-accent)) !important;
}

.ti-hero-visual {
  background:
    radial-gradient(circle at 70% 24%, var(--ti-tone-soft, rgba(232, 95, 67, 0.22)), transparent 34%),
    #0b111b !important;
}

.ti-hero-visual--generated-cover img.ti-hero-visual__main,
.ti-news-grid--latest > .ti-news-card.ti-news-card--generated-cover .ti-news-card__image img,
.ti-romania-feature--generated-cover .ti-romania-feature__image img,
.ti-category-column .ti-news-card--generated-cover .ti-news-card__image img,
.ti-article-cover--generated img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  padding: 0 !important;
}

.ti-popular-list strong,
.ti-romania-list strong,
.ti-category-board .ti-news-card--compact::before {
  -webkit-text-stroke-color: var(--ti-neutral-mark) !important;
  opacity: 0.72 !important;
}

.ti-category-board .ti-category-column .ti-section-head {
  background:
    radial-gradient(circle at 86% 18%, rgba(232, 95, 67, 0.10), transparent 30%),
    #fff !important;
}

.ti-category-board .ti-category-column:nth-child(2) .ti-section-head {
  background:
    radial-gradient(circle at 86% 18%, rgba(228, 55, 55, 0.10), transparent 30%),
    #fff !important;
}

.ti-category-board .ti-category-column:nth-child(3) .ti-section-head {
  background:
    radial-gradient(circle at 86% 18%, rgba(208, 107, 63, 0.12), transparent 30%),
    #fff !important;
}

.ti-button--primary,
.ti-brief-button {
  background: #0b111b !important;
}

.ti-hero-visual--generated-cover {
  padding: clamp(12px, 1.8vw, 24px) !important;
}

.ti-hero-visual--generated-cover .ti-hero-visual__backdrop {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.28 !important;
  filter: blur(28px) saturate(0.9) contrast(1.04) !important;
  object-fit: cover !important;
  transform: scale(1.18) !important;
}

.ti-hero-visual--generated-cover img.ti-hero-visual__main {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 720px) !important;
  height: auto !important;
  max-height: calc(100% - 24px) !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 7px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34) !important;
  object-fit: contain !important;
}

.ti-article-cover--generated {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: clamp(16px, 2.2vw, 32px) !important;
  background: #0b111b !important;
}

.ti-article-cover--generated .ti-article-cover__backdrop {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.3 !important;
  filter: blur(30px) saturate(0.9) contrast(1.04) !important;
  object-fit: cover !important;
  transform: scale(1.18) !important;
}

.ti-article-cover--generated .ti-article-cover__main {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 760px) !important;
  height: auto !important;
  max-height: calc(100% - 28px) !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 7px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34) !important;
  object-fit: contain !important;
}

.ti-share {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ti-share > span {
  flex: 0 0 auto;
  color: #4c596b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ti-share__links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
}

.ti-share a,
.ti-share button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(150, 161, 176, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #0b111b;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 880;
  line-height: 1;
  padding: 0 10px;
  text-decoration: none;
  transition: background 170ms ease, border-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.ti-share a:hover,
.ti-share a:focus-visible,
.ti-share button:hover,
.ti-share button:focus-visible,
.ti-share__copied {
  border-color: #0b111b !important;
  background: #0b111b !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.ti-share--hero {
  margin-top: 22px;
}

.ti-share--rail {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(170, 185, 205, 0.54);
}

.ti-share--rail > span {
  display: block;
  margin-bottom: 9px;
}

.ti-share--rail .ti-share__links {
  gap: 6px;
}

.ti-share--rail a,
.ti-share--rail button {
  min-height: 31px;
  padding-inline: 8px;
}

.ti-share--page {
  margin: 18px 0 30px;
}

@media (max-width: 760px) {
  .ti-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .ti-share__links {
    width: 100%;
  }

  .ti-share a,
  .ti-share button {
    flex: 1 1 auto;
  }

  .ti-hero-visual--generated-cover {
    padding: 14px !important;
  }
}

/* Navigation and editorial orientation polish. */
.ti-nav a:first-child {
  color: #07111f !important;
}

.ti-nav a:first-child::after {
  transform: scaleX(0) !important;
}

.ti-nav .current-menu-item > a,
.ti-nav .current_page_item > a,
.ti-nav .current-post-ancestor > a,
.ti-nav a:hover,
.ti-nav a:focus-visible {
  color: var(--ti-blue) !important;
}

.ti-nav .current-menu-item > a::after,
.ti-nav .current_page_item > a::after,
.ti-nav .current-post-ancestor > a::after,
.ti-nav a:hover::after,
.ti-nav a:focus-visible::after {
  transform: scaleX(1) !important;
}

.ti-home-link.is-active {
  background: #0b111b !important;
  color: #fff !important;
}

.ti-home-link.is-active svg {
  stroke: #fff !important;
}

.ti-signal-deck__items a::after,
.ti-briefing .ti-brief-item::before {
  background: var(--ti-tone, var(--ti-accent)) !important;
}

.ti-signal-deck__items a:hover,
.ti-signal-deck__items a:focus-visible,
.ti-briefing .ti-brief-item:hover,
.ti-briefing .ti-brief-item:focus-visible,
.ti-popular-list li:hover {
  background: var(--ti-tone-soft, rgba(232, 95, 67, 0.045)) !important;
}

.ti-brief-item .ti-iconbox {
  border-color: color-mix(in srgb, var(--ti-tone, #263241) 42%, transparent) !important;
  background: var(--ti-tone-soft, rgba(38, 50, 65, 0.08)) !important;
  color: var(--ti-tone, #263241) !important;
}

.ti-popular-list li strong,
.ti-romania-list article strong {
  -webkit-text-stroke-color: var(--ti-tone, var(--ti-neutral-mark)) !important;
}

.ti-popular-copy span,
.ti-popular-head a,
.ti-briefing-title a,
.ti-romania-link,
.ti-latest-strip .ti-section-head a {
  color: var(--ti-accent) !important;
}

.ti-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1384px;
  margin: 0 0 16px;
  color: #5c6878;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ti-breadcrumbs a {
  color: #0b111b;
  text-decoration: none;
}

.ti-breadcrumbs a:hover,
.ti-breadcrumbs a:focus-visible {
  color: var(--ti-accent);
}

.ti-breadcrumbs a::after {
  margin-left: 8px;
  color: #9aa5b5;
  content: "/";
}

.ti-breadcrumbs span {
  overflow: hidden;
  max-width: min(62vw, 720px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ti-page .ti-breadcrumbs {
  margin-bottom: 24px;
}

/* Homepage lead story balance: keep the main image present without cropping generated covers. */
.ti-home-grid .ti-hero-card {
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr) !important;
}

.ti-home-grid .ti-hero-copy h1 {
  max-width: 12ch !important;
  font-size: clamp(42px, 4.6vw, 68px) !important;
}

.ti-home-grid .ti-hero-visual--generated-cover {
  padding: clamp(8px, 1.1vw, 16px) !important;
}

.ti-home-grid .ti-hero-visual--generated-cover img.ti-hero-visual__main {
  width: min(96%, 820px) !important;
}

@media (max-width: 1180px) {
  .ti-home-grid .ti-hero-card {
    grid-template-columns: 1fr !important;
  }
}

/* Remove the blue/navy preview-photo stage. Generated covers sit on neutral charcoal instead. */
.ti-hero-visual,
.ti-article-cover--generated,
.ti-news-grid--latest > .ti-news-card.ti-news-card--generated-cover .ti-news-card__image img,
.ti-romania-feature__image,
.ti-category-column .ti-news-card--generated-cover .ti-news-card__image img {
  background: #171716 !important;
}

.ti-hero-visual {
  background:
    radial-gradient(circle at 72% 26%, color-mix(in srgb, var(--ti-tone, #e85f43) 24%, transparent), transparent 34%),
    linear-gradient(145deg, #1a1917 0%, #111110 100%) !important;
}

.ti-article-cover--generated {
  background:
    radial-gradient(circle at 66% 34%, rgba(232, 95, 67, 0.12), transparent 38%),
    linear-gradient(145deg, #1a1917 0%, #111110 100%) !important;
}

.ti-hero-visual--generated-cover .ti-hero-visual__backdrop,
.ti-article-cover--generated .ti-article-cover__backdrop {
  opacity: 0.2 !important;
  filter: blur(34px) saturate(0.7) contrast(1.08) grayscale(0.18) !important;
}

.ti-romania-radar {
  background:
    radial-gradient(circle at 78% 16%, rgba(214, 164, 61, 0.14), transparent 25rem),
    #151514 !important;
}

/* Preview concept: TechInfos front-page magazine edition. */
:root {
  --ti-blue: #d94b35;
  --ti-accent: #d94b35;
  --ti-accent-2: #6f7d35;
  --ti-bg: #f3f4ef;
  --ti-paper: #fffdf8;
  --ti-ink: #080808;
  --ti-soft: #424a42;
  --ti-line: #171717;
  --ti-radius: 0px;
  --ti-shadow: none;
}

body {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px),
    #f3f4ef !important;
  background-size: 28px 28px !important;
  color: #080808 !important;
}

.ti-shell {
  width: min(1500px, calc(100% - 44px)) !important;
}

.ti-header {
  border-bottom: 3px solid #080808 !important;
  background: #fffdf8 !important;
  backdrop-filter: none !important;
}

.ti-topline {
  min-height: 34px !important;
  border-bottom: 1px solid #080808 !important;
  background: #080808 !important;
  color: #fffdf8 !important;
}

.ti-topline > span {
  color: #fffdf8 !important;
}

.ti-region {
  border-color: rgba(255, 253, 248, 0.42) !important;
  background: rgba(255, 253, 248, 0.08) !important;
}

.ti-region button {
  color: #fffdf8 !important;
}

.ti-region .active {
  background: #fffdf8 !important;
  color: #080808 !important;
}

.ti-brandbar {
  min-height: 128px !important;
  align-items: end !important;
  padding-block: 22px 28px !important;
}

.ti-brand {
  color: #080808 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(58px, 8vw, 128px) !important;
  letter-spacing: -0.09em !important;
  line-height: 0.78 !important;
}

.ti-brand__infos {
  color: #d94b35 !important;
}

.ti-brand__ro {
  color: #080808 !important;
}

.ti-brand-divider {
  display: none !important;
}

.ti-tagline {
  max-width: 420px !important;
  margin-left: auto !important;
  border-left: 5px solid #080808 !important;
  color: #080808 !important;
  font-family: "Newsreader", Georgia, serif !important;
  font-size: clamp(22px, 2.4vw, 38px) !important;
  line-height: 0.98 !important;
  padding-left: 18px !important;
}

.ti-brand-actions {
  align-self: center !important;
}

.ti-newsletter-link,
.ti-brief-button {
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  color: #080808 !important;
  box-shadow: none !important;
}

.ti-brief-button {
  background: #080808 !important;
  color: #fffdf8 !important;
}

.ti-navrow {
  min-height: 54px !important;
  border-top: 3px solid #080808 !important;
  background: #fffdf8 !important;
}

.ti-home-link,
.ti-home-link.is-active,
.ti-nav a,
.ti-search,
.ti-search button {
  border-radius: 0 !important;
}

.ti-home-link {
  border-right: 2px solid #080808 !important;
}

.ti-home-link.is-active {
  background: #d94b35 !important;
}

.ti-nav a {
  color: #080808 !important;
  font-size: 13px !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

.ti-nav a::after {
  height: 4px !important;
  background: #d94b35 !important;
}

.ti-search {
  border: 2px solid #080808 !important;
  background: #fffdf8 !important;
}

.ti-signal-deck {
  grid-template-columns: 220px minmax(0, 1fr) !important;
  margin-bottom: 20px !important;
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

.ti-signal-deck__label {
  border-right: 2px solid #080808 !important;
  background: #080808 !important;
  color: #fffdf8 !important;
}

.ti-signal-deck__label span {
  color: #d94b35 !important;
}

.ti-signal-deck__label strong {
  color: #fffdf8 !important;
  font-size: 34px !important;
}

.ti-signal-deck__items a {
  border-right: 1px solid #080808 !important;
  background: #fffdf8 !important;
}

.ti-home-grid {
  grid-template-columns: minmax(0, 1fr) 400px !important;
  gap: 22px !important;
}

.ti-main-column {
  gap: 18px !important;
}

.ti-home-grid .ti-hero-card {
  display: grid !important;
  grid-template-columns: minmax(480px, 0.95fr) minmax(0, 1.05fr) !important;
  min-height: 620px !important;
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

.ti-home-grid .ti-hero-visual {
  order: -1 !important;
  min-height: 620px !important;
  border-right: 2px solid #080808 !important;
  border-left: 0 !important;
  background: #161613 !important;
}

.ti-home-grid .ti-hero-visual__backdrop,
.ti-home-grid .ti-hero-visual figcaption {
  display: none !important;
}

.ti-home-grid .ti-hero-visual img.ti-hero-visual__main,
.ti-home-grid .ti-hero-visual--generated-cover img.ti-hero-visual__main {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
}

.ti-home-grid .ti-hero-copy {
  min-height: 620px !important;
  justify-content: center !important;
  background: #fffdf8 !important;
  padding: clamp(34px, 4vw, 68px) !important;
}

.ti-kicker,
.ti-home-grid .ti-hero-card .ti-kicker {
  color: #6f7d35 !important;
  font-size: 13px !important;
}

.ti-home-grid .ti-hero-copy h1 {
  max-width: 12ch !important;
  color: #080808 !important;
  font-family: "Newsreader", Georgia, serif !important;
  font-size: clamp(50px, 5.3vw, 86px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.065em !important;
  line-height: 0.86 !important;
}

.ti-home-grid .ti-hero-copy p {
  max-width: 520px !important;
  color: #313831 !important;
  font-size: 18px !important;
  font-weight: 720 !important;
}

.ti-button--primary {
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #d94b35 !important;
  color: #fffdf8 !important;
}

.ti-popular-panel,
.ti-briefing,
.ti-news-card,
.ti-romania-radar,
.ti-category-board .ti-category-column,
.ti-video-card,
.ti-opinion-card,
.ti-newsletter-panel {
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #fffdf8 !important;
  box-shadow: none !important;
}

.ti-popular-head,
.ti-briefing-title,
.ti-section-head {
  border-bottom: 2px solid #080808 !important;
}

.ti-popular-head h2,
.ti-briefing-title h2,
.ti-section-head h2,
.ti-romania-head h2 {
  color: #080808 !important;
  font-family: "Newsreader", Georgia, serif !important;
}

.ti-popular-list li {
  border-bottom-color: #080808 !important;
}

.ti-popular-list strong,
.ti-romania-list strong,
.ti-category-board .ti-news-card--compact::before {
  -webkit-text-stroke-color: #d94b35 !important;
}

.ti-popular-copy span,
.ti-news-card__body > span,
.ti-chip,
.ti-section-head span {
  color: #d94b35 !important;
}

.ti-iconbox {
  border: 2px solid #080808 !important;
  border-radius: 0 !important;
  background: #eff1df !important;
  color: #080808 !important;
}

.ti-news-grid.ti-news-grid--latest {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.ti-news-grid--latest > .ti-news-card,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
  display: block !important;
  min-height: 0 !important;
}

.ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
  grid-column: span 2 !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__image,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  border-bottom: 2px solid #080808 !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body {
  min-height: 0 !important;
  padding: 22px !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body h3,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body h3 {
  color: #080808 !important;
  font-family: "Newsreader", Georgia, serif !important;
  font-size: clamp(25px, 2.4vw, 38px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.045em !important;
}

.ti-news-grid--latest > .ti-news-card:not(.ti-news-card--wide) .ti-news-card__body h3 {
  font-size: clamp(22px, 1.6vw, 30px) !important;
}

.ti-romania-radar {
  background: #151514 !important;
  color: #fffdf8 !important;
}

.ti-romania-radar .ti-romania-head h2,
.ti-romania-radar .ti-romania-head p {
  color: #fffdf8 !important;
}

.ti-romania-feature,
.ti-romania-list {
  border-color: #fffdf8 !important;
}

@media (max-width: 1180px) {
  .ti-home-grid,
  .ti-home-grid .ti-hero-card,
  .ti-news-grid.ti-news-grid--latest {
    grid-template-columns: 1fr !important;
  }

  .ti-home-grid .ti-hero-visual {
    min-height: 360px !important;
    border-right: 0 !important;
    border-bottom: 2px solid #080808 !important;
  }

  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  .ti-shell {
    width: min(100% - 22px, 1500px) !important;
  }

  .ti-brandbar {
    align-items: flex-start !important;
  }

  .ti-tagline {
    margin-left: 0 !important;
  }

  .ti-home-grid .ti-hero-copy h1 {
    font-size: clamp(42px, 14vw, 64px) !important;
  }
}

/* Preview cleanup: keep the new magazine direction, fix masthead and lead-story proportions. */
.ti-brandbar {
  display: grid !important;
  grid-template-columns: minmax(360px, auto) minmax(240px, 1fr) auto !important;
  gap: 28px !important;
  align-items: center !important;
}

.ti-brand {
  font-size: clamp(54px, 6.4vw, 96px) !important;
  white-space: nowrap !important;
}

.ti-tagline {
  width: auto !important;
  max-width: 360px !important;
  margin: 0 !important;
  font-size: clamp(20px, 2vw, 31px) !important;
}

.ti-brand-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  justify-content: flex-end !important;
}

.ti-newsletter-link,
.ti-brief-button {
  min-width: max-content !important;
  white-space: nowrap !important;
}

.ti-home-grid .ti-hero-card {
  grid-template-columns: minmax(470px, 0.88fr) minmax(0, 1.12fr) !important;
  min-height: 560px !important;
}

.ti-home-grid .ti-hero-visual {
  min-height: 560px !important;
  padding: 18px !important;
}

.ti-home-grid .ti-hero-visual img.ti-hero-visual__main,
.ti-home-grid .ti-hero-visual--generated-cover img.ti-hero-visual__main {
  width: 100% !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.ti-home-grid .ti-hero-copy {
  min-height: 560px !important;
  overflow: hidden !important;
}

.ti-home-grid .ti-hero-copy h1 {
  max-width: 14ch !important;
  font-size: clamp(42px, 4.15vw, 66px) !important;
  line-height: 0.9 !important;
}

.ti-home-grid .ti-hero-copy p {
  max-width: 560px !important;
  font-size: 17px !important;
}

@media (max-width: 1180px) {
  .ti-brandbar {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ti-brand-actions {
    justify-content: flex-start !important;
  }

  .ti-home-grid .ti-hero-card {
    grid-template-columns: 1fr !important;
  }
}

/* Direction reset: premium tech newsroom, not print/brutalist. */
:root {
  --ti-bg: #f6f8fb;
  --ti-paper: #ffffff;
  --ti-ink: #07111f;
  --ti-soft: #4b5868;
  --ti-muted: #7a8491;
  --ti-line: #d8e0ea;
  --ti-blue: #1457f4;
  --ti-accent: #e85f43;
  --ti-accent-2: #6f8b3a;
  --ti-radius: 9px;
  --ti-shadow: 0 22px 58px rgba(15, 33, 62, 0.10);
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(20, 87, 244, 0.07), transparent 25rem),
    linear-gradient(180deg, #f8fafc 0%, #f2f5f9 100%) !important;
  color: var(--ti-ink) !important;
}

.ti-shell {
  width: min(1440px, calc(100% - 40px)) !important;
}

.ti-header {
  border-bottom: 1px solid rgba(170, 185, 205, 0.62) !important;
  background: rgba(250, 252, 255, 0.94) !important;
  backdrop-filter: blur(18px) !important;
}

.ti-topline {
  min-height: 38px !important;
  border-bottom: 1px solid rgba(170, 185, 205, 0.48) !important;
  background: transparent !important;
  color: #536172 !important;
}

.ti-topline > span {
  color: #536172 !important;
}

.ti-region {
  border-color: rgba(170, 185, 205, 0.72) !important;
  background: #eef3f8 !important;
}

.ti-region button {
  color: #384457 !important;
}

.ti-region .active {
  background: #fff !important;
  color: var(--ti-blue) !important;
}

.ti-brandbar {
  display: flex !important;
  min-height: 108px !important;
  align-items: center !important;
  gap: 28px !important;
  padding-block: 22px !important;
}

.ti-brand {
  color: #050913 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(60px, 6.2vw, 112px) !important;
  font-weight: 950 !important;
  letter-spacing: -0.085em !important;
  line-height: 0.82 !important;
  white-space: nowrap !important;
}

.ti-brand__infos {
  color: var(--ti-blue) !important;
}

.ti-brand__ro {
  color: #050913 !important;
}

.ti-brand-divider {
  display: block !important;
  height: 48px !important;
  width: 1px !important;
  background: rgba(170, 185, 205, 0.72) !important;
}

.ti-tagline {
  width: auto !important;
  max-width: 390px !important;
  margin: 0 !important;
  border-left: 0 !important;
  color: #364050 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(19px, 1.6vw, 26px) !important;
  font-weight: 760 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
  padding-left: 0 !important;
}

.ti-brand-actions {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
}

.ti-newsletter-link,
.ti-brief-button {
  min-width: max-content !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: #111827 !important;
  box-shadow: none !important;
  white-space: nowrap !important;
}

.ti-brief-button {
  background: #07111f !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.16) !important;
}

.ti-navrow {
  min-height: 58px !important;
  border-top: 1px solid rgba(170, 185, 205, 0.46) !important;
  background: transparent !important;
}

.ti-home-link,
.ti-home-link.is-active,
.ti-nav a,
.ti-search,
.ti-search button {
  border-radius: 8px !important;
}

.ti-home-link {
  border-right: 0 !important;
}

.ti-home-link.is-active {
  background: #07111f !important;
}

.ti-nav a {
  color: #07111f !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ti-nav a::after {
  height: 3px !important;
  background: var(--ti-blue) !important;
}

.ti-search {
  border: 1px solid rgba(170, 185, 205, 0.72) !important;
  background: #fff !important;
}

.ti-signal-deck {
  grid-template-columns: 190px minmax(0, 1fr) !important;
  margin-bottom: 18px !important;
  overflow: hidden !important;
  border: 1px solid rgba(170, 185, 205, 0.72) !important;
  border-radius: 9px !important;
  background:
    linear-gradient(135deg, rgba(232, 95, 67, 0.05), transparent 38%),
    #fff !important;
  box-shadow: 0 18px 48px rgba(15, 33, 62, 0.07) !important;
}

.ti-signal-deck__label {
  border-right: 1px solid rgba(170, 185, 205, 0.6) !important;
  background: #fff !important;
  color: #07111f !important;
}

.ti-signal-deck__label span {
  color: var(--ti-accent) !important;
}

.ti-signal-deck__label strong {
  color: #07111f !important;
  font-size: 25px !important;
}

.ti-signal-deck__items a {
  border-right: 1px solid rgba(170, 185, 205, 0.5) !important;
  background: transparent !important;
}

.ti-home-grid {
  grid-template-columns: minmax(0, 1fr) 350px !important;
  gap: 24px !important;
}

.ti-main-column {
  gap: 18px !important;
}

.ti-home-grid .ti-hero-card {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr) !important;
  min-height: 560px !important;
  overflow: hidden !important;
  border: 1px solid rgba(151, 165, 184, 0.72) !important;
  border-radius: 9px !important;
  background: #fff !important;
  box-shadow: 0 24px 64px rgba(15, 33, 62, 0.10) !important;
}

.ti-home-grid .ti-hero-visual {
  order: 0 !important;
  min-height: 560px !important;
  padding: clamp(14px, 1.7vw, 24px) !important;
  border-right: 0 !important;
  border-left: 1px solid rgba(170, 185, 205, 0.58) !important;
  background:
    radial-gradient(circle at 70% 24%, color-mix(in srgb, var(--ti-tone, #e85f43) 20%, transparent), transparent 34%),
    linear-gradient(145deg, #1a1917 0%, #111110 100%) !important;
}

.ti-home-grid .ti-hero-visual__backdrop {
  display: block !important;
}

.ti-home-grid .ti-hero-visual figcaption {
  display: none !important;
}

.ti-home-grid .ti-hero-visual img.ti-hero-visual__main,
.ti-home-grid .ti-hero-visual--generated-cover img.ti-hero-visual__main {
  width: min(100%, 760px) !important;
  height: auto !important;
  max-height: calc(100% - 20px) !important;
  border-radius: 7px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28) !important;
  object-fit: contain !important;
}

.ti-home-grid .ti-hero-copy {
  min-height: 560px !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #fff !important;
  padding: clamp(34px, 4vw, 58px) !important;
}

.ti-kicker,
.ti-home-grid .ti-hero-card .ti-kicker {
  color: var(--ti-tone, var(--ti-accent-2)) !important;
  font-size: 12px !important;
}

.ti-home-grid .ti-hero-copy h1 {
  max-width: 12.5ch !important;
  color: #07111f !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(43px, 4.9vw, 72px) !important;
  font-weight: 950 !important;
  letter-spacing: -0.072em !important;
  line-height: 0.92 !important;
}

.ti-home-grid .ti-hero-copy p {
  max-width: 600px !important;
  color: #4b5868 !important;
  font-size: 18px !important;
  font-weight: 680 !important;
}

.ti-button--primary {
  border: 0 !important;
  border-radius: 8px !important;
  background: #07111f !important;
  color: #fff !important;
}

.ti-popular-panel,
.ti-briefing,
.ti-news-card,
.ti-romania-radar,
.ti-category-board .ti-category-column,
.ti-video-card,
.ti-opinion-card,
.ti-newsletter-panel {
  border: 1px solid rgba(170, 185, 205, 0.72) !important;
  border-radius: 9px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.ti-popular-head,
.ti-briefing-title,
.ti-section-head {
  border-bottom: 1px solid rgba(170, 185, 205, 0.58) !important;
}

.ti-popular-head h2,
.ti-briefing-title h2,
.ti-section-head h2,
.ti-romania-head h2 {
  color: #07111f !important;
  font-family: "Newsreader", Georgia, serif !important;
}

.ti-popular-list li {
  border-bottom-color: rgba(170, 185, 205, 0.58) !important;
}

.ti-popular-list strong,
.ti-romania-list strong,
.ti-category-board .ti-news-card--compact::before {
  -webkit-text-stroke-color: var(--ti-tone, var(--ti-accent)) !important;
}

.ti-popular-copy span,
.ti-news-card__body > span,
.ti-chip,
.ti-section-head span {
  color: var(--ti-tone, var(--ti-accent)) !important;
}

.ti-iconbox {
  border: 1px solid color-mix(in srgb, var(--ti-tone, #6f8b3a) 40%, transparent) !important;
  border-radius: 8px !important;
  background: var(--ti-tone-soft, rgba(111, 139, 58, 0.10)) !important;
  color: var(--ti-tone, #6f8b3a) !important;
}

.ti-news-grid.ti-news-grid--latest {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

.ti-news-grid--latest > .ti-news-card,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
  display: grid !important;
  grid-column: auto !important;
  grid-template-columns: 320px minmax(0, 1fr) !important;
  min-height: 220px !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__image,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image {
  width: 320px !important;
  height: 100% !important;
  min-height: 220px !important;
  border-bottom: 0 !important;
  border-right: 1px solid rgba(170, 185, 205, 0.58) !important;
  aspect-ratio: auto !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body {
  min-height: 220px !important;
  justify-content: center !important;
  padding: clamp(22px, 2.8vw, 42px) !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__body h3,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__body h3 {
  color: #07111f !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: clamp(27px, 2.7vw, 46px) !important;
  font-weight: 950 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}

.ti-romania-radar {
  background:
    radial-gradient(circle at 78% 16%, rgba(214, 164, 61, 0.14), transparent 25rem),
    #151514 !important;
  color: #fff !important;
}

.ti-romania-radar .ti-romania-head h2,
.ti-romania-radar .ti-romania-head p {
  color: #fff !important;
}

.ti-romania-feature,
.ti-romania-list {
  border-color: rgba(248, 250, 253, 0.28) !important;
}

@media (max-width: 1180px) {
  .ti-brandbar,
  .ti-home-grid,
  .ti-home-grid .ti-hero-card {
    grid-template-columns: 1fr !important;
  }

  .ti-brandbar {
    display: grid !important;
    gap: 16px !important;
  }

  .ti-brand-actions {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }

  .ti-home-grid .ti-hero-visual {
    min-height: 330px !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(170, 185, 205, 0.58) !important;
  }
}

@media (max-width: 760px) {
  .ti-shell {
    width: min(100% - 24px, 1440px) !important;
  }

  .ti-brand {
    font-size: clamp(48px, 15vw, 72px) !important;
  }

  .ti-home-grid .ti-hero-copy h1 {
    font-size: clamp(38px, 11vw, 56px) !important;
  }

  .ti-news-grid--latest > .ti-news-card,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide {
    grid-template-columns: 1fr !important;
  }

  .ti-news-grid--latest > .ti-news-card .ti-news-card__image,
  .ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image {
    width: 100% !important;
    min-height: 190px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(170, 185, 205, 0.58) !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* Landscape-cover edition: generated covers are 16:9, so lead stories use a wide media-first layout. */
.ti-home-grid {
  align-items: start !important;
}

.ti-home-grid .ti-hero-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.ti-home-grid .ti-hero-visual {
  order: -1 !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(170, 185, 205, 0.62) !important;
  background: #171716 !important;
}

.ti-home-grid .ti-hero-visual::before,
.ti-home-grid .ti-hero-visual__backdrop {
  display: none !important;
}

.ti-home-grid .ti-hero-visual img.ti-hero-visual__main,
.ti-home-grid .ti-hero-visual--generated-cover img.ti-hero-visual__main {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  object-fit: cover !important;
  transform: none !important;
}

.ti-home-grid .ti-hero-copy {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr) !important;
  gap: clamp(22px, 3vw, 42px) !important;
  align-items: end !important;
  min-height: 0 !important;
  padding: clamp(24px, 3vw, 42px) !important;
}

.ti-home-grid .ti-hero-copy .ti-kicker,
.ti-home-grid .ti-hero-copy h1,
.ti-home-grid .ti-hero-copy p {
  grid-column: 1 !important;
}

.ti-home-grid .ti-hero-copy h1 {
  max-width: 14.5ch !important;
  margin: 12px 0 0 !important;
  font-size: clamp(40px, 4vw, 62px) !important;
  line-height: 0.94 !important;
}

.ti-home-grid .ti-hero-copy p {
  max-width: 720px !important;
  margin-bottom: 0 !important;
}

.ti-home-grid .ti-hero-copy .ti-button {
  grid-column: 2 !important;
  grid-row: 1 / span 3 !important;
  align-self: end !important;
  justify-self: end !important;
  margin: 0 !important;
}

.ti-popular-panel {
  position: sticky !important;
  top: 88px !important;
  max-height: calc(100vh - 110px) !important;
  overflow: auto !important;
}

.ti-popular-list img {
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
}

.ti-news-grid--latest > .ti-news-card .ti-news-card__image,
.ti-news-grid--latest > .ti-news-card.ti-news-card--wide .ti-news-card__image,
.ti-romania-feature__image {
  aspect-ratio: 16 / 9 !important;
}

@media (max-width: 980px) {
  .ti-popular-panel {
    position: static !important;
    max-height: none !important;
  }

  .ti-home-grid .ti-hero-copy {
    grid-template-columns: 1fr !important;
  }

  .ti-home-grid .ti-hero-copy .ti-button {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-self: start !important;
    margin-top: 4px !important;
  }
}

/* Above-the-fold landscape lead: keep the 16:9 cover and the headline visible together. */
@media (min-width: 981px) {
  .ti-home-grid .ti-hero-card {
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr) !important;
    align-items: stretch !important;
  }

  .ti-home-grid .ti-hero-visual {
    order: -1 !important;
    align-self: center !important;
    border-right: 1px solid rgba(170, 185, 205, 0.62) !important;
    border-bottom: 0 !important;
  }

  .ti-home-grid .ti-hero-copy {
    display: flex !important;
    min-height: 0 !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: clamp(28px, 3vw, 44px) !important;
  }

  .ti-home-grid .ti-hero-copy .ti-kicker,
  .ti-home-grid .ti-hero-copy h1,
  .ti-home-grid .ti-hero-copy p,
  .ti-home-grid .ti-hero-copy .ti-button {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .ti-home-grid .ti-hero-copy h1 {
    max-width: 12.5ch !important;
    font-size: clamp(38px, 3.35vw, 54px) !important;
  }

  .ti-home-grid .ti-hero-copy p {
    font-size: 16.5px !important;
  }

  .ti-home-grid .ti-hero-copy .ti-button {
    align-self: flex-start !important;
    justify-self: auto !important;
    margin-top: 20px !important;
  }
}
/* Header Romania time. */
.ti-topline__datetime {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  white-space: nowrap !important;
}

.ti-romania-clock {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: inherit !important;
  font: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
}

.ti-romania-clock::before {
  content: "" !important;
  width: 1px !important;
  height: 16px !important;
  background: rgba(170, 185, 205, 0.76) !important;
  margin-right: 2px !important;
}

@media (max-width: 760px) {
  .ti-topline__datetime {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 2px !important;
    white-space: normal !important;
  }

  .ti-romania-clock::before {
    display: none !important;
  }
}

/* =============================================================
   EDITORIAL CARDS (.ti-edit) — folosit pe arhive & articol
   Self-contained: nu depinde de .nh (homepage), nu intra in conflict.
   ============================================================= */
.ti-edit{
  --e-bg:#e9edf5; --e-paper:#fff; --e-ink:#0a0f1c; --e-soft:#454f5e; --e-muted:#7c8696;
  --e-line:#dde4ef; --e-tone:#0057ff; --e-r:16px;
  --e-shadow:0 12px 30px rgba(11,18,40,.05);
  --e-ease:cubic-bezier(.2,.7,.2,1); --e-serif:"Newsreader",Georgia,serif;
  --e-sans:"Inter",system-ui,-apple-system,sans-serif;
}
.ti-edit .ti-tone-ai{--e-tone:#e85f43}
.ti-edit .ti-tone-cyber{--e-tone:#e43737}
.ti-edit .ti-tone-business{--e-tone:#3f8f3a}
.ti-edit .ti-tone-gadget{--e-tone:#d06b3f}
.ti-edit .ti-tone-romania{--e-tone:#d6a43d}
.ti-edit .ti-tone-neutral{--e-tone:#2b3b52}

.ti-edit .ec-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.ti-edit .ec{position:relative;display:flex;flex-direction:column;gap:12px;background:var(--e-paper);
  border:1px solid var(--e-line);border-radius:var(--e-r);padding:26px 24px 22px;
  box-shadow:var(--e-shadow);overflow:hidden;text-decoration:none;
  transition:transform .35s var(--e-ease),box-shadow .35s var(--e-ease),border-color .35s var(--e-ease)}
.ti-edit .ec::before{content:"";position:absolute;left:24px;right:24px;top:0;height:4px;border-radius:0 0 4px 4px;background:var(--e-tone)}
.ti-edit .ec:hover{transform:translateY(-6px);
  box-shadow:0 26px 56px color-mix(in srgb,var(--e-tone) 22%,rgba(11,18,40,.14));
  border-color:color-mix(in srgb,var(--e-tone) 35%,var(--e-line))}
.ti-edit .ec__tag{align-self:flex-start;font-family:var(--e-sans);font-size:11px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--e-tone);background:color-mix(in srgb,var(--e-tone) 12%,#fff);
  border:1px solid color-mix(in srgb,var(--e-tone) 24%,#fff);padding:5px 11px;border-radius:7px}
.ti-edit .ec__title{font-family:var(--e-serif);font-size:23px;font-weight:700;line-height:1.2;color:var(--e-ink);transition:color .2s}
.ti-edit .ec__title b{color:var(--e-tone);font-weight:800}
.ti-edit .ec:hover .ec__title{color:var(--e-tone)}
.ti-edit .ec__dek{font-family:var(--e-sans);color:var(--e-soft);font-size:14.5px;line-height:1.55;
  display:-webkit-box;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.ti-edit .ec__meta{margin-top:auto;display:flex;align-items:center;gap:10px;font-family:var(--e-sans);
  font-size:12.5px;color:var(--e-muted);padding-top:8px}
.ti-edit .ec__dot{width:4px;height:4px;border-radius:50%;background:currentColor;opacity:.6}
.ti-edit .ec__more{margin-left:auto;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--e-tone)}
.ti-edit .ec--fill{background:linear-gradient(150deg,var(--e-tone),color-mix(in srgb,var(--e-tone) 60%,#0b1020));
  border:0;color:#fff}
.ti-edit .ec--fill::before{display:none}
.ti-edit .ec--fill::after{content:"";position:absolute;right:-70px;top:-70px;width:240px;height:240px;border-radius:50%;background:rgba(255,255,255,.12)}
.ti-edit .ec--fill>*{position:relative}
.ti-edit .ec--fill .ec__tag{color:#fff;background:rgba(255,255,255,.18);border-color:rgba(255,255,255,.28)}
.ti-edit .ec--fill .ec__title,.ti-edit .ec--fill .ec__title b{color:#fff;font-size:27px}
.ti-edit .ec--fill:hover .ec__title{color:#fff}
.ti-edit .ec--fill .ec__dek{color:rgba(255,255,255,.85);-webkit-line-clamp:4;line-clamp:4}
.ti-edit .ec--fill .ec__meta{color:rgba(255,255,255,.82)}
.ti-edit .ec--fill .ec__more{color:#fff}

@media(max-width:980px){.ti-edit .ec-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.ti-edit .ec-grid{grid-template-columns:1fr}}

/* =============================================================
   ANIMATII GLOBALE — toate paginile (reveal + tranzitii)
   ============================================================= */
html{scroll-behavior:smooth}

/* scroll-reveal generic, opt-in via [data-reveal] */
[data-reveal]{opacity:0;transform:translateY(26px);will-change:opacity,transform;
  transition:opacity .7s cubic-bezier(.2,.7,.2,1) var(--rd,0ms),
             transform .7s cubic-bezier(.2,.7,.2,1) var(--rd,0ms)}
[data-reveal].is-in{opacity:1;transform:none}
/* fara JS: continut vizibil */
html:not(.ti-js) [data-reveal]{opacity:1;transform:none}

/* intrare lina pentru headerele de arhiva/cautare/pagini */
.ti-archive-head,.ti-page{animation:ti-fade-up .6s cubic-bezier(.2,.7,.2,1) both}
@keyframes ti-fade-up{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}

/* tranzitii fine globale pe linkuri/butoane din zonele noi */
.ti-edit a,.ti-archive-head a,.ti-pagination a{transition:color .2s ease, background-color .2s ease, border-color .2s ease, transform .25s cubic-bezier(.2,.7,.2,1)}

/* paginatie animata */
.ti-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;
  min-width:42px;height:42px;padding:0 12px;border-radius:10px;border:1px solid var(--ti-line,#dde4ef);
  background:#fff;font-weight:700;color:#0a0f1c;text-decoration:none;
  transition:transform .25s cubic-bezier(.2,.7,.2,1),box-shadow .25s,border-color .2s,background .2s,color .2s}
.ti-pagination .page-numbers:hover{transform:translateY(-2px);border-color:#0057ff;color:#0057ff;
  box-shadow:0 10px 22px rgba(0,87,255,.16)}
.ti-pagination .page-numbers.current{background:#0a0f1c;color:#fff;border-color:#0a0f1c}

/* meniu principal — subliniere animata la hover */
.ti-nav a{position:relative;transition:color .2s ease}
.ti-nav a::after{content:"";position:absolute;left:0;right:100%;bottom:-4px;height:2px;
  background:currentColor;transition:right .3s cubic-bezier(.2,.7,.2,1)}
.ti-nav a:hover::after{right:0}

/* butoane brand din header */
.ti-brief-button,.ti-newsletter-link,.nav-cta{transition:transform .25s cubic-bezier(.2,.7,.2,1),box-shadow .25s,background .2s}
.ti-brief-button:hover,.nav-cta:hover{transform:translateY(-2px)}

/* imagini media (legacy) — zoom lin la hover */
.ti-news-card__image img,.ti-hero-visual img{transition:transform .6s cubic-bezier(.2,.7,.2,1)}
.ti-news-card:hover .ti-news-card__image img{transform:scale(1.05)}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  [data-reveal]{opacity:1!important;transform:none!important;transition:none!important}
  .ti-archive-head,.ti-page{animation:none!important}
  *{scroll-behavior:auto!important}
}

/* mesaj confirmare abonare newsletter */
.nh-news form,.nh-art-newsletter form,.ti-newsletter-panel form{flex-wrap:wrap}
.ti-subscribed-msg{flex-basis:100%;width:100%;margin:12px 0 0;font-weight:700;font-size:14px;
  color:#fff;animation:ti-fade-up .4s ease both}
form.is-subscribed input,form.is-subscribed button{opacity:.55;cursor:default}

/* =============================================================
   SHARE 2.0 — iconite reale, branded hover, Web Share
   ============================================================= */
.ti-share2{--sh-line:#dde4ef;--sh-ink:#0a0f1c}
.ti-share2__label{display:block;font-size:10.5px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:#7c8696;margin-bottom:10px}
.ti-share2__btns{display:flex;flex-wrap:wrap;gap:9px}
.ti-share2__btn{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;
  border-radius:12px;border:1px solid var(--sh-line);background:#fff;color:var(--sh-ink);cursor:pointer;
  text-decoration:none;
  transition:transform .2s cubic-bezier(.2,.7,.2,1),background .2s,color .2s,border-color .2s,box-shadow .2s}
.ti-share2__btn svg{width:20px;height:20px;fill:currentColor}
.ti-share2__btn:hover{transform:translateY(-3px);color:#fff;box-shadow:0 10px 22px rgba(10,18,40,.18)}
.ti-share2__btn:active{transform:translateY(-1px) scale(.96)}
.ti-share2__btn:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(0,87,255,.45)}
.ti-sb--facebook:hover{background:#1877F2;border-color:#1877F2}
.ti-sb--x:hover{background:#000;border-color:#000}
.ti-sb--linkedin:hover{background:#0A66C2;border-color:#0A66C2}
.ti-sb--whatsapp:hover{background:#25D366;border-color:#25D366}
.ti-sb--telegram:hover{background:#229ED9;border-color:#229ED9}
.ti-sb--reddit:hover{background:#FF4500;border-color:#FF4500}
.ti-sb--bluesky:hover{background:#0285FF;border-color:#0285FF}
.ti-sb--email:hover{background:#5b6573;border-color:#5b6573}
.ti-sb--copy:hover{background:#0a0f1c;border-color:#0a0f1c}
.ti-sb--native:hover{background:#0057ff;border-color:#0057ff}
.ti-share2__btn.ti-share__copied{background:#1f9d55;border-color:#1f9d55;color:#fff}
/* varianta INLINE (sfarsit articol) */
.ti-share2--inline{display:flex;align-items:center;gap:18px;flex-wrap:wrap;padding:22px 24px;margin:8px 0 8px;
  background:#fff;border:1px solid var(--sh-line);border-radius:16px;box-shadow:0 12px 30px rgba(11,18,40,.05)}
.ti-share2--inline .ti-share2__label{margin:0;font-family:"Newsreader",Georgia,serif;font-size:19px;
  font-weight:700;text-transform:none;letter-spacing:-.01em;color:var(--sh-ink)}
.ti-share2--inline .ti-share2__btns{flex:1;justify-content:flex-end}
@media(max-width:560px){.ti-share2--inline .ti-share2__btns{justify-content:flex-start}}

/* =============================================================
   BACK TO TOP + FOCUS + a11y polish (global)
   ============================================================= */
.ti-totop{position:fixed;right:22px;bottom:22px;z-index:60;width:48px;height:48px;border-radius:50%;
  display:grid;place-items:center;border:0;cursor:pointer;background:#0a0f1c;color:#fff;
  box-shadow:0 14px 30px rgba(10,18,40,.32);opacity:0;transform:translateY(16px) scale(.9);
  pointer-events:none;transition:opacity .3s ease,transform .3s cubic-bezier(.2,.7,.2,1),background .2s}
.ti-totop.is-visible{opacity:1;transform:none;pointer-events:auto}
.ti-totop:hover{background:#0057ff;transform:translateY(-3px)}
.ti-totop:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(0,87,255,.5)}
.ti-totop svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round}

/* focus-visible global (tastatura) */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,[tabindex]:focus-visible{
  outline:2px solid #0057ff;outline-offset:2px;border-radius:4px}

@media(prefers-reduced-motion:reduce){
  .ti-share2__btn,.ti-totop{transition:none!important}
  .ti-totop{transform:none}
}

/* =============================================================
   HEADER MOBIL — simplificat, hamburger + meniu colapsabil
   ============================================================= */
.ti-burger{display:none;width:46px;height:46px;border:1px solid var(--ti-line,#dde4ef);border-radius:12px;
  background:#fff;cursor:pointer;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  margin-left:auto;flex:none;transition:border-color .2s,background .2s}
.ti-burger span{display:block;width:20px;height:2px;border-radius:2px;background:#0a0f1c;
  transition:transform .3s cubic-bezier(.2,.7,.2,1),opacity .2s}
.ti-header.nav-open .ti-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.ti-header.nav-open .ti-burger span:nth-child(2){opacity:0}
.ti-header.nav-open .ti-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media(max-width:860px){
  .ti-burger{display:flex}
  /* topline minimal: doar data, fara ceas/regiune */
  .ti-topline{flex-wrap:wrap}
  .ti-topline .ti-region,.ti-romania-clock{display:none}
  /* brandbar pe un rand: logo + hamburger */
  .ti-brandbar{display:flex;align-items:center;gap:12px}
  .ti-tagline,.ti-brand-divider{display:none}
  .ti-brand{margin-right:auto}
  /* navrow colapsata implicit */
  .ti-navrow{display:none;flex-direction:column;align-items:stretch;gap:14px;
    padding:16px 0 4px;border-top:1px solid var(--ti-line,#dde4ef);margin-top:6px}
  .ti-header.nav-open .ti-navrow{display:flex;animation:ti-fade-up .35s ease both}
  .ti-home-link{display:none}
  .ti-nav{display:flex;flex-direction:column;align-items:stretch;gap:2px}
  .ti-nav a{padding:13px 4px;font-size:17px;border-bottom:1px solid var(--ti-line,#eef1f7)}
  .ti-nav a::after{display:none}
  .ti-search{width:100%;order:-1}
  .ti-search input{width:100%}
}
@media(max-width:520px){
  .ti-brand{font-size:30px}
}

@media(max-width:860px){
  .ti-topline .ti-romania-clock{display:none!important}
  .ti-brandbar .ti-brand-divider{display:none!important}
  .ti-brandbar{min-height:0!important;padding-top:6px!important;padding-bottom:6px!important}
}

@media(max-width:860px){
  .ti-header .ti-brandbar{display:flex!important;align-items:center;gap:12px;grid-template-columns:none!important}
  .ti-header .ti-brand{margin-right:auto}
}

/* =============================================================
   UX FIX PASS (audit) — skip-link, chrono load-more, header
   mobile, touch target, post nav
   ============================================================= */

/* skip to content (accessibilitate tastatura) */
.ti-skiplink{position:absolute;left:12px;top:-60px;z-index:200;background:#0a0f1c;color:#fff;
  padding:10px 16px;border-radius:10px;font-weight:700;font-size:14px;text-decoration:none;
  transition:top .2s ease}
.ti-skiplink:focus{top:12px;outline:2px solid #0057ff;outline-offset:2px}

/* lista cronologica: ascunde peste 12 + buton "incarca mai multe" */
html.ti-js .chrono .chrono--hidden{display:none}
.chrono-more{display:flex;justify-content:center;margin-top:22px}
.chrono-more__btn{display:inline-flex;align-items:center;gap:8px;min-height:48px;padding:0 26px;
  border-radius:999px;border:1px solid #dde4ef;background:#fff;color:#0a0f1c;font-family:"Inter",sans-serif;
  font-weight:800;font-size:14px;cursor:pointer;
  transition:transform .25s cubic-bezier(.2,.7,.2,1),box-shadow .25s,border-color .2s,color .2s}
.chrono-more__btn:hover{transform:translateY(-2px);border-color:#0057ff;color:#0057ff;
  box-shadow:0 12px 26px rgba(0,87,255,.16)}
.chrono-more__btn:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(0,87,255,.45)}
.chrono-more__count{color:#7c8696;font-weight:700}

/* navigatie articol anterior / urmator */
.nh-postnav{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:44px}
.nh-postnav__item{display:flex;flex-direction:column;gap:6px;padding:18px 20px;background:#fff;
  border:1px solid #dde4ef;border-radius:14px;text-decoration:none;box-shadow:0 10px 26px rgba(11,18,40,.05);
  transition:transform .3s cubic-bezier(.2,.7,.2,1),box-shadow .3s,border-color .2s}
.nh-postnav__item:hover{transform:translateY(-4px);border-color:#0057ff;box-shadow:0 22px 44px rgba(11,18,40,.12)}
.nh-postnav__item--next{text-align:right;align-items:flex-end}
.nh-postnav__dir{font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#0057ff}
.nh-postnav__title{font-family:"Newsreader",Georgia,serif;font-size:17px;font-weight:700;line-height:1.25;color:#0a0f1c;
  display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
@media(max-width:640px){.nh-postnav{grid-template-columns:1fr}.nh-postnav__item--next{text-align:left;align-items:flex-start}}

/* touch target >=44px pe linkurile de navigatie/utilitare */
.ti-nav a,.nh-sechead a,.nh-col__head a,.ti-romania-link,.foot-grid a,
.ti-footer a,footer a,.nh-radar-band__head a{min-height:44px;display:inline-flex;align-items:center}
.nh-col__head a,.nh-sechead a{justify-content:center}

/* header mobil piu compatto */
@media(max-width:860px){
  .ti-header .ti-shell{padding-top:8px;padding-bottom:8px}
  .ti-topline{padding:2px 0}
  .ti-topline__datetime span{font-size:12px}
  .ti-romania-clock{display:none!important}
  .ti-header .ti-brandbar{padding:4px 0!important;min-height:0!important}
  .ti-brand{font-size:26px;line-height:1}
}
@media(max-width:520px){ .ti-brand{font-size:23px} }
