:root {
  --red-900: #6B0F0F;
  --red-800: #8A1515;
  --red-700: #A51C1C;
  --red-600: #C42424;
  --red-500: #D42E2E;
  --red-400: #E04848;
  --red-300: #ED7E7E;
  --red-200: #F5B0B0;
  --red-100: #FADED9;
  --red-50: #FDF0EE;
  --ink-950: #0D0D0D;
  --ink-900: #1A1A1A;
  --ink-800: #2D2D2D;
  --ink-700: #404040;
  --ink-600: #555555;
  --ink-500: #717171;
  --ink-400: #8E8E8E;
  --ink-300: #B0B0B0;
  --ink-200: #D4D4D4;
  --ink-100: #ECECEC;
  --ink-50: #F7F7F5;
  --warm-50: #FDFCFA;
  --warm-100: #F5F3EE;
  --warm-200: #E8E5DC;
  --gold: #B8860B;
  --gold-light: #F5ECD7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--warm-50); color: var(--ink-900); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.top-bar { background: var(--ink-950); color: var(--ink-400); font-size: 12px; padding: 6px 0; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.top-bar .curs { display: flex; gap: 16px; align-items: center; }
.top-bar .curs-label { color: var(--ink-500); }
.top-bar .curs-val { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); }
.top-bar-links { display: flex; gap: 16px; }
.top-bar-links a { color: var(--ink-400); transition: color 0.15s; }
.top-bar-links a:hover { color: white; }

.header { background: white; border-bottom: 3px solid var(--red-600); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 30px; width: auto; display: block; }
.header-right { display: flex; align-items: center; gap: 16px; }
.btn-subscribe { background: var(--red-600); color: white; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 20px; border: none; border-radius: 3px; cursor: pointer; transition: background 0.15s; }
.btn-subscribe:hover { background: var(--red-700); }
.search-icon { width: 20px; height: 20px; color: var(--ink-500); cursor: pointer; }

.nav { background: white; border-bottom: 0.5px solid var(--ink-100); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; gap: 0; overflow-x: auto; }
.nav-link { display: block; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--ink-700); white-space: nowrap; border-bottom: 2px solid transparent; transition: all 0.15s; margin-bottom: -0.5px; }
.nav-link:hover { color: var(--ink-900); }
.nav-link.active { color: var(--red-600); border-bottom-color: var(--red-600); }

.page { max-width: 1200px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 36px; }

.main { display: flex; flex-direction: column; gap: 0; }

/* Hero */
.hero-article { margin-bottom: 28px; }
.hero-img { width: 100%; aspect-ratio: 16/9; border-radius: 6px 6px 0 0; overflow: hidden; position: relative; }
.hero-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); }
.hero-body { background: white; padding: 20px 24px 24px; border: 0.5px solid var(--ink-200); border-top: none; border-radius: 0 0 6px 6px; }
.hero-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-600); margin-bottom: 10px; }
.hero-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1.2; color: var(--ink-950); margin-bottom: 10px; letter-spacing: -0.01em; }
.hero-excerpt { font-size: 15px; line-height: 1.6; color: var(--ink-600); margin-bottom: 12px; }
.hero-meta { font-size: 12px; color: var(--ink-400); }
.hero-meta strong { color: var(--ink-700); font-weight: 600; }

/* Medium */
.medium-article { display: grid; grid-template-columns: 280px 1fr; gap: 0; background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; overflow: hidden; margin-bottom: 28px; }
.medium-img { overflow: hidden; min-height: 200px; }
.medium-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.medium-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); }
.medium-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--ink-950); }
.medium-excerpt { font-size: 14px; line-height: 1.55; color: var(--ink-600); }
.medium-meta { font-size: 12px; color: var(--ink-400); margin-top: auto; }
.medium-meta strong { color: var(--ink-700); font-weight: 600; }

/* Video */
.video-section { margin-bottom: 28px; }
.video-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.video-badge { background: var(--red-600); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 3px; }
.video-label { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink-900); }
.video-player { width: 100%; aspect-ratio: 16/9; background: var(--ink-950); border-radius: 6px; overflow: hidden; position: relative; }
.video-player img { opacity: 0.7; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; background: rgba(196,36,36,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; }
.play-btn::after { content: ''; width: 0; height: 0; border-left: 22px solid white; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 4px; }
.video-title-bar { background: white; border: 0.5px solid var(--ink-200); border-top: none; border-radius: 0 0 6px 6px; padding: 14px 18px; }
.video-title-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-900); line-height: 1.35; }

/* Stat band */
.stat-band { background: var(--ink-950); border-radius: 6px; padding: 24px 32px; margin-bottom: 28px; display: flex; align-items: center; gap: 24px; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--red-400); line-height: 1; white-space: nowrap; }
.stat-unit { font-size: 20px; font-weight: 400; color: var(--red-300); }
.stat-text { font-size: 15px; line-height: 1.5; color: var(--ink-300); }
.stat-text strong { color: white; font-weight: 600; }

/* Normal */
.normal-article { display: grid; grid-template-columns: 210px 1fr; gap: 0; background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; overflow: hidden; margin-bottom: 20px; }
.normal-img { overflow: hidden; min-height: 140px; }
.normal-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.normal-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); }
.normal-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; line-height: 1.35; color: var(--ink-950); }
.normal-excerpt { font-size: 13.5px; line-height: 1.5; color: var(--ink-600); }
.normal-meta { font-size: 12px; color: var(--ink-400); margin-top: auto; }
.normal-meta strong { color: var(--ink-700); font-weight: 500; }

/* Quote */
.quote-band { background: var(--warm-100); border-left: 4px solid var(--red-600); border-radius: 0 6px 6px 0; padding: 24px 28px; margin-bottom: 28px; }
.quote-text { font-family: var(--font-display); font-size: 20px; font-weight: 400; font-style: italic; line-height: 1.4; color: var(--ink-800); margin-bottom: 12px; }
.quote-text::before { content: '\201E'; color: var(--red-500); }
.quote-text::after { content: '\201D'; color: var(--red-500); }
.quote-author { font-size: 13px; font-weight: 600; color: var(--ink-700); }
.quote-role { font-size: 12px; color: var(--ink-500); font-weight: 400; }

/* Interview */
.interview-band { background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; padding: 20px 24px; margin-bottom: 28px; display: flex; align-items: center; gap: 20px; }
.interview-avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; overflow: hidden; border: 2px solid var(--ink-100); }
.interview-content { flex: 1; }
.interview-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); margin-bottom: 6px; }
.interview-title { font-family: var(--font-display); font-size: 17px; font-weight: 600; line-height: 1.35; color: var(--ink-900); margin-bottom: 4px; }
.interview-person { font-size: 13px; color: var(--ink-500); }
.interview-arrow { width: 32px; height: 32px; background: var(--red-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--red-600); font-size: 16px; font-weight: 600; }

.ad-placeholder { background: var(--ink-50); border: 1px dashed var(--ink-200); border-radius: 6px; padding: 20px; text-align: center; font-size: 11px; color: var(--ink-400); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 28px; }

.section-divider { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-divider-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink-900); white-space: nowrap; }
.section-divider-line { flex: 1; height: 1px; background: var(--ink-200); }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; overflow: hidden; }
.sidebar-header { font-family: var(--font-display); font-size: 14px; font-weight: 600; padding: 12px 18px; border-bottom: 2px solid var(--red-600); color: var(--ink-900); display: flex; align-items: center; justify-content: space-between; }
.sidebar-header .see-all { font-family: var(--font-body); font-size: 11px; font-weight: 500; color: var(--red-600); letter-spacing: 0.02em; }

.cover-widget { text-align: center; }
.cover-widget .sidebar-header { text-align: left; }
.cover-img-wrap { aspect-ratio: 210/280; overflow: hidden; }
.cover-footer { padding: 12px 18px; font-size: 12px; color: var(--ink-500); display: flex; justify-content: space-between; align-items: center; }
.cover-footer strong { color: var(--ink-800); font-weight: 600; }

.zf-item { padding: 11px 18px; border-bottom: 0.5px solid var(--ink-100); font-size: 13px; line-height: 1.4; color: var(--ink-800); transition: background 0.1s; }
.zf-item:last-child { border-bottom: none; }
.zf-item:hover { background: var(--ink-50); }
.zf-item .zf-source { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 3px; }
.zf-item .zf-title { font-weight: 500; color: var(--ink-800); }

.comunicate-widget .sidebar-header { border-bottom-color: var(--gold); }
.comunicate-item { padding: 11px 18px; border-bottom: 0.5px solid var(--ink-100); font-size: 13px; line-height: 1.4; }
.comunicate-item:last-child { border-bottom: none; }
.comunicate-item .com-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.comunicate-item .com-title { color: var(--ink-700); font-weight: 400; }

.gala-widget { background: linear-gradient(135deg, var(--red-600) 0%, var(--red-800) 100%); border: none; border-radius: 6px; overflow: hidden; color: white; }
.gala-img { width: 100%; aspect-ratio: 300/160; overflow: hidden; opacity: 0.85; }
.gala-body { padding: 20px 24px; text-align: center; }
.gala-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-200); margin-bottom: 10px; }
.gala-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; line-height: 1.25; margin-bottom: 6px; }
.gala-subtitle { font-family: var(--font-display); font-size: 15px; font-weight: 400; font-style: italic; color: var(--red-200); margin-bottom: 14px; line-height: 1.4; }
.gala-date { font-size: 13px; font-weight: 600; color: white; margin-bottom: 14px; }
.gala-btn { display: inline-block; background: white; color: var(--red-700); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 24px; border-radius: 3px; border: none; cursor: pointer; }

.sidebar-ad { background: var(--ink-50); border: 1px dashed var(--ink-200); border-radius: 6px; aspect-ratio: 300/250; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--ink-400); letter-spacing: 0.06em; text-transform: uppercase; }

.mockup-footer { max-width: 1200px; margin: 24px auto 48px; padding: 0 24px; text-align: center; font-size: 12px; color: var(--ink-400); font-style: italic; }

/* ═══ ARTICLE PAGE ═══ */

.article-header-wrap { background: white; border-bottom: 0.5px solid var(--ink-200); }
.article-header-inner { max-width: 1200px; margin: 0 auto; padding: 32px 24px 28px; }
.article-breadcrumb { font-size: 12px; color: var(--ink-400); margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.article-breadcrumb a { color: var(--ink-500); transition: color 0.15s; }
.article-breadcrumb a:hover { color: var(--red-600); }
.article-breadcrumb .sep { color: var(--ink-300); }
.article-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red-600); margin-bottom: 12px; }
.article-title { font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1.18; color: var(--ink-950); margin-bottom: 14px; letter-spacing: -0.01em; max-width: 820px; }
.article-subtitle { font-size: 18px; line-height: 1.55; color: var(--ink-600); margin-bottom: 20px; max-width: 780px; }
.article-byline { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 0.5px solid var(--ink-100); }
.article-byline-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1.5px solid var(--ink-100); }
.article-byline-info { display: flex; flex-direction: column; gap: 2px; }
.article-byline-name { font-size: 13px; font-weight: 600; color: var(--ink-800); }
.article-byline-date { font-size: 12px; color: var(--ink-400); }
.article-byline-share { margin-left: auto; display: flex; gap: 8px; }
.share-btn { width: 32px; height: 32px; border-radius: 50%; border: 0.5px solid var(--ink-200); background: var(--ink-50); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.15s; color: var(--ink-500); font-size: 13px; }
.share-btn:hover { background: var(--red-50); border-color: var(--red-200); color: var(--red-600); }

.article-hero-img { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.article-hero-img figure { margin: 0; }
.article-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; }
.article-hero-img figcaption { font-size: 12px; color: var(--ink-400); padding: 8px 4px 0; font-style: italic; }

.article-page { max-width: 1200px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 48px; }

.article-body { max-width: 720px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink-800); margin-bottom: 20px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--ink-900); font-weight: 600; }

.article-body h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--ink-950); margin: 36px 0 16px; line-height: 1.25; }
.article-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink-950); margin: 28px 0 12px; line-height: 1.3; }

.article-pullquote { background: var(--warm-100); border-left: 4px solid var(--red-600); border-radius: 0 6px 6px 0; padding: 24px 28px; margin: 32px 0; }
.article-pullquote p { font-family: var(--font-display); font-size: 19px; font-weight: 400; font-style: italic; line-height: 1.45; color: var(--ink-800); margin-bottom: 0; }
.article-pullquote p::before { content: '\201E'; color: var(--red-500); }
.article-pullquote p::after { content: '\201D'; color: var(--red-500); }

.article-infobox { background: var(--ink-950); border-radius: 6px; padding: 24px 28px; margin: 32px 0; color: var(--ink-300); font-size: 15px; line-height: 1.6; }
.article-infobox p { color: var(--ink-300); font-size: 15px; margin-bottom: 12px; }
.article-infobox p:last-child { margin-bottom: 0; }
.article-infobox strong { color: white; }
.article-infobox em { color: var(--ink-200); font-style: italic; }

.article-interview-q { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink-950); margin: 32px 0 14px; line-height: 1.35; padding-left: 16px; border-left: 3px solid var(--red-600); }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; padding-top: 20px; border-top: 0.5px solid var(--ink-200); }
.article-tag { font-size: 12px; font-weight: 500; color: var(--ink-600); background: var(--ink-50); border: 0.5px solid var(--ink-200); padding: 5px 14px; border-radius: 20px; transition: all 0.15s; }
.article-tag:hover { background: var(--red-50); border-color: var(--red-200); color: var(--red-600); }

.article-gallery { margin: 28px 0; }
.article-gallery-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.article-gallery-label span { color: var(--red-600); }
.article-gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-radius: 6px; overflow: hidden; }
.article-gallery-grid img { aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }

.article-carte-vizita { background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; padding: 24px 28px; margin: 32px 0; }
.article-carte-vizita-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink-900); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.article-carte-vizita ol { padding-left: 20px; }
.article-carte-vizita li { font-size: 14px; line-height: 1.55; color: var(--ink-700); margin-bottom: 10px; }
.article-carte-vizita li:last-child { margin-bottom: 0; }
.article-carte-vizita li strong { color: var(--ink-900); }

/* ═══ LISTING PAGE ═══ */

.listing-header { background: white; border-bottom: 0.5px solid var(--ink-200); }
.listing-header-inner { max-width: 1200px; margin: 0 auto; padding: 28px 24px 24px; }
.listing-breadcrumb { font-size: 12px; color: var(--ink-400); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.listing-breadcrumb a { color: var(--ink-500); transition: color 0.15s; }
.listing-breadcrumb a:hover { color: var(--red-600); }
.listing-breadcrumb .sep { color: var(--ink-300); }
.listing-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink-950); line-height: 1.2; }

.listing-page { max-width: 1200px; margin: 0 auto; padding: 28px 24px; display: grid; grid-template-columns: 1fr 340px; gap: 36px; }
.listing-main { display: flex; flex-direction: column; gap: 0; }

.listing-card { display: grid; grid-template-columns: 260px 1fr; gap: 0; background: white; border: 0.5px solid var(--ink-200); border-radius: 6px; overflow: hidden; margin-bottom: 18px; transition: box-shadow 0.2s; }
.listing-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.listing-card-img { overflow: hidden; min-height: 170px; }
.listing-card-img img { transition: transform 0.3s; }
.listing-card:hover .listing-card-img img { transform: scale(1.03); }
.listing-card-body { padding: 18px 22px; display: flex; flex-direction: column; gap: 6px; }
.listing-card-category { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red-600); }
.listing-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.35; color: var(--ink-950); }
.listing-card-excerpt { font-size: 14px; line-height: 1.5; color: var(--ink-600); }
.listing-card-meta { font-size: 12px; color: var(--ink-400); margin-top: auto; }
.listing-card-meta strong { color: var(--ink-600); font-weight: 600; }

.listing-card-featured { grid-template-columns: 1fr; margin-bottom: 24px; }
.listing-card-featured .listing-card-img { min-height: 0; aspect-ratio: 16/9; }
.listing-card-featured .listing-card-body { padding: 20px 24px; gap: 8px; }
.listing-card-featured .listing-card-title { font-size: 24px; font-weight: 700; }
.listing-card-featured .listing-card-excerpt { font-size: 15px; line-height: 1.55; }

.listing-pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 28px; }
.listing-pagination a, .listing-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 4px;
  font-size: 13px; font-weight: 500; color: var(--ink-600);
  border: 0.5px solid var(--ink-200); background: white;
  transition: all 0.15s;
}
.listing-pagination a:hover { background: var(--ink-50); color: var(--ink-900); }
.listing-pagination .active { background: var(--red-600); color: white; border-color: var(--red-600); font-weight: 600; }
.listing-pagination .dots { border: none; background: none; color: var(--ink-400); }
.listing-pagination .pag-arrow { font-size: 16px; font-weight: 600; }

@media (max-width: 900px) {
  .page { grid-template-columns: 1fr; }
  .medium-article { grid-template-columns: 1fr; }
  .normal-article { grid-template-columns: 160px 1fr; }
  .hero-title { font-size: 24px; }
  .article-page { grid-template-columns: 1fr; }
  .article-title { font-size: 28px; }
  .article-body p { font-size: 16px; }
  .article-gallery-grid { grid-template-columns: 1fr; }
  .listing-page { grid-template-columns: 1fr; }
  .listing-card { grid-template-columns: 1fr; }
  .listing-card-img { min-height: 0; aspect-ratio: 16/9; }
  .listing-card-featured .listing-card-title { font-size: 20px; }
  .listing-title { font-size: 26px; }
}
