/* ============================================================
   TINIGUI NEWS — MAIN STYLESHEET
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --accent:         #c0392b;
  --accent-dark:    #96281b;
  --accent-light:   #e74c3c;
  --bg:             #ffffff;
  --bg-secondary:   #f5f5f5;
  --bg-tertiary:    #ebebeb;
  --text:           #111111;
  --text-muted:     #555555;
  --text-light:     #888888;
  --border:         #e0e0e0;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.16);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --font-body:      'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-arabic:    'Noto Sans Arabic', 'Amiri', Arial, sans-serif;
  --nav-h:          48px;
  --header-top-h:   40px;
  --logo-band-h:    88px;
  --transition:     0.2s ease;
  --container-max:  1280px;
  --gutter:         24px;
}

[data-theme="dark"] {
  --bg:           #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-tertiary:  #252525;
  --text:         #f0f0f0;
  --text-muted:   #aaaaaa;
  --text-light:   #777777;
  --border:       #2e2e2e;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.5);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button { font-family: inherit; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 0; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}

/* ============================================================
   BREAKING NEWS BAR
   ============================================================ */
.breaking-bar {
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  height: 36px;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.breaking-label {
  flex-shrink: 0;
  background: #8b0000;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: .12em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  gap: 0;
}

.ticker-item {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0 24px;
}

.ticker-separator {
  opacity: 0.6;
  padding: 0 8px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

/* Header Top */
.header-top {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  height: var(--header-top-h);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.header-phone:hover { color: #25d366; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 12px;
  transition: color var(--transition);
}
.footer-phone:hover { color: #25d366; }

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.social-link:hover              { color: var(--accent); }
.social-link.social-whatsapp:hover { color: #25d366; }
.social-link.social-facebook:hover { color: #1877f2; }
.social-link.social-tiktok:hover   { color: #000000; }
[data-theme="dark"] .social-link.social-tiktok:hover { color: #ffffff; }

.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.lang-btn {
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  border-right: 1px solid var(--border);
}
.lang-btn:last-child { border-right: none; }
.lang-btn:hover { background: var(--bg-secondary); color: var(--accent); }
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

/* Theme Toggle */
.theme-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }

/* Logo Band */
.header-logo-band {
  height: var(--logo-band-h);
  border-bottom: 1px solid var(--border);
}

.logo-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-text { line-height: 1.2; }

.logo-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.logo-tagline {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

.header-ad {
  flex: 1;
  max-width: 320px;
}

.ad-placeholder {
  background: var(--bg-tertiary);
  border: 1px dashed var(--border);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Main Navigation ───────────────────────────────────────── */
.main-nav {
  background: var(--accent);
  height: var(--nav-h);
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  flex: 1;
  height: 100%;
}

.nav-menu li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: background var(--transition);
}
.nav-link:hover,
.nav-link.active {
  background: rgba(0,0,0,.2);
  color: #fff;
}

/* Dropdown */
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  min-width: 180px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 300;
}
.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--bg-secondary); color: var(--accent); padding-left: 22px; }

/* Search */
.nav-search { margin-left: auto; padding: 0 8px; }

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
  transition: background var(--transition);
}
.search-form:focus-within { background: rgba(255,255,255,.25); }

.search-input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.82rem;
  padding: 6px 14px;
  width: 180px;
}
.search-input::placeholder { color: rgba(255,255,255,.7); }

.search-btn {
  color: #fff;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.search-btn:hover { opacity: 0.8; }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  color: #fff;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.title-accent {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.view-all {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity var(--transition);
}
.view-all:hover { opacity: 0.8; color: var(--accent); }

/* ============================================================
   ARTICLE META & BADGES
   ============================================================ */
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.article-time {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.read-time {
  font-size: 0.72rem;
  color: var(--text-light);
  padding: 2px 8px;
  background: var(--bg-secondary);
  border-radius: 20px;
}

.category-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  color: #fff;
}

.badge-world    { background: #2980b9; }
.badge-politics { background: #8e44ad; }
.badge-economy  { background: #16a085; }
.badge-tech     { background: #2c3e50; }
.badge-sports   { background: #e67e22; }
.badge-health   { background: #27ae60; }
.badge-culture  { background: #c0392b; }
.badge-science  { background: #1abc9c; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding: 32px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Hero Main */
.hero-main {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-img-wrap:hover .hero-img { transform: scale(1.02); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,.7) 100%);
}

.hero-img-wrap .category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.hero-content { padding: 20px 0 0; }

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}

.hero-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.read-more-btn:hover { background: var(--accent-dark); color: #fff; }

/* Hero Side */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-side-card { display: flex; flex-direction: column; gap: 0; }

.side-card-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.side-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.side-card-img-wrap:hover img { transform: scale(1.03); }

.side-card-img-wrap .category-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.side-card-content {
  padding: 10px 0 0;
}

.side-card-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.side-card-content h3 a:hover { color: var(--accent); }

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-section { padding: 32px 0; }

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

.news-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-img-wrap:hover .card-img { transform: scale(1.04); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.3));
  pointer-events: none;
}
.card-img-wrap .category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
  flex: 1;
}
.card-title a:hover { color: var(--accent); }

.card-excerpt {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bookmark-btn {
  color: var(--text-light);
  padding: 4px;
  transition: color var(--transition);
}
.bookmark-btn:hover { color: var(--accent); }
.bookmark-btn.bookmarked { color: var(--accent); }

/* Load More */
.load-more-wrap {
  text-align: center;
  padding-top: 32px;
}

.load-more-btn {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 36px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.load-more-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ============================================================
   TWO COLUMN SECTION
   ============================================================ */
.two-col-section {
  padding: 32px 0;
  background: var(--bg-secondary);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Opinion */
.opinion-list { display: flex; flex-direction: column; gap: 24px; }

.opinion-card {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.opinion-card:last-child { border-bottom: none; padding-bottom: 0; }

.opinion-author-img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.opinion-author-img img { width: 100%; height: 100%; object-fit: cover; }

.opinion-content {}
.opinion-author-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.opinion-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
.opinion-content h3 a:hover { color: var(--accent); }
.opinion-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Most Read */
.most-read-list { display: flex; flex-direction: column; }

.most-read-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.most-read-item:first-child { padding-top: 0; }
.most-read-item:last-child { border-bottom: none; }

.most-read-rank {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.most-read-content {}
.most-read-content a {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}
.most-read-content a:hover { color: var(--accent); }

.most-read-meta {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 32px 0; }

.video-grid {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.video-card-featured {
  grid-column: 1;
  grid-row: 1 / 3;
}

.video-card { }

.video-thumb-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-tertiary);
}
.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-thumb-wrap:hover img { transform: scale(1.03); }

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(192,57,43,.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.play-btn:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.1); }

.play-btn-sm {
  width: 40px;
  height: 40px;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.video-meta { padding: 10px 0 0; }
.video-meta h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 6px 0 4px;
  color: var(--text);
}
.video-meta h3 a:hover { color: var(--accent); }

.video-card-featured .video-meta h3 {
  font-size: 1.1rem;
}

.video-time {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 48px 0;
  background: var(--accent);
  color: #fff;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
}

.newsletter-form { flex: 1; max-width: 440px; }

.newsletter-fields {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}

.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.65); }

.newsletter-btn {
  background: #fff;
  color: var(--accent);
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover { background: rgba(255,255,255,.9); }

.newsletter-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
}

.newsletter-msg {
  font-size: 0.82rem;
  margin-top: 6px;
  min-height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-secondary); }

.footer-main { padding: 56px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 12px; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom-langs { display: flex; gap: 16px; }
.footer-lang-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-lang-btn:hover { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-content {
  flex: 1;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

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

.cookie-accept {
  background: var(--accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--accent-dark); }

.cookie-decline {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.cookie-decline:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   FOCUS STYLES (Accessibility)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr 300px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card-featured { grid-column: 1 / 3; grid-row: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gutter: 16px; }

  .header-top { display: none; }
  .header-logo-band { height: 64px; }
  .header-ad { display: none; }
  .logo-main { font-size: 1.5rem; }
  .logo-tagline { display: none; }

  .logo-band-inner { justify-content: center; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav-inner { position: relative; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--accent-dark);
    z-index: 400;
    height: auto;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-link { padding: 14px 20px; width: 100%; }
  .dropdown { position: static; border-radius: 0; box-shadow: none; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; background: rgba(0,0,0,.2); border: none; }
  .dropdown li a { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); }
  .dropdown li a:hover { background: rgba(0,0,0,.2); color: #fff; padding-left: 32px; }

  .nav-search { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.35rem; }
  .hero-side { display: none; }

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

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .newsletter-text h2 { font-size: 1.4rem; }

  .video-grid { grid-template-columns: 1fr; }
  .video-card-featured { grid-column: 1; grid-row: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .section-header { flex-wrap: wrap; gap: 8px; }
  .logo-band-inner { justify-content: space-between; }
  .header-controls { gap: 8px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.news-card, .hero-main, .opinion-card, .video-card {
  animation: fadeInUp 0.4s ease both;
}

/* Print */
@media print {
  .breaking-bar, .main-nav, .header-top,
  .newsletter-section, .cookie-banner,
  .back-to-top, .bookmark-btn, .header-ad { display: none !important; }
  body { background: #fff; color: #000; }
}
