/* ─── CINEVAULT FRONTEND CSS — LIGHT THEME ──────────────────────────────────── */

:root {
  --bg:       #ffffff;
  --bg-alt:   #f8f7f5;
  --card:     #ffffff;
  --border:   #e5e5e5;
  --red:      #e8232a;
  --red-glow: #cc1a20;
  --gold:     #c9a84c;
  --text:     #0a0a0a;
  --muted:    #888888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

/* ── CARD LINKS ── */
.card-link { display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--text);
}
.nav-logo span { color: var(--red); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-search {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 18px; transition: color .2s;
}
.btn-search:hover { color: var(--text); }
.btn-admin {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--red);
  color: var(--red); background: none; cursor: pointer;
  transition: all .2s;
}
.btn-admin:hover { background: var(--red); color: #fff; }
.nav-search-form { display: flex; align-items: center; gap: 8px; }
.nav-search-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--text);
  font-size: 13px;
  outline: none;
  width: 0;
  transition: width .3s, border-color .3s;
  font-family: var(--font-body);
}
.nav-search-input.open {
  width: 160px;
  border-bottom-color: var(--red);
}
.nav-search-input::placeholder { color: var(--muted); }

/* ── AD ZONES ── */
.ad-zone {
  text-align: center;
  padding: 8px 0;
  background: transparent;
}
.ad-zone--header_banner {
  padding: 12px 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .ad-zone--header_banner { display: none; }
}
.ad-zone--floating_left,
.ad-zone--floating_right {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: 160px;
  padding: 0;
  line-height: 0;
}
.ad-zone--floating_left  { left: 0; }
.ad-zone--floating_right { right: 0; }
@media (max-width: 1480px) {
  .ad-zone--floating_left,
  .ad-zone--floating_right { display: none; }
}
.ad-zone--before_article {
  text-align: center;
  padding: 12px 0 16px;
}
.ad-zone--after_article {
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.ad-zone--in_content,
.ad-zone--in_content_2 {
  text-align: center;
  padding: 16px 0;
  clear: both;
}
.ad-zone--native_ads {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.ad-zone--footer_banner {
  text-align: center;
  padding: 20px 48px;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .ad-zone--footer_banner { padding: 16px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(248,247,245,0.97) 75%),
    linear-gradient(105deg, #ede8e3 0%, #e3e8f0 50%, #e3ede3 100%);
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-film-strip {
  position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  display: flex; flex-wrap: wrap; gap: 0; overflow: hidden; opacity: 0.25;
}
.hero-film-strip .cell {
  width: 33.33%; height: 25%;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 60px; color: rgba(0,0,0,0.05);
}
.hero-badge {
  position: absolute; top: 80px; right: 48px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 6px 14px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-category {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-category::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text);
  animation: slideUp .8s ease both;
}
.hero-title em { color: var(--red); font-style: normal; }
@keyframes slideUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:none} }
.hero-meta {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; letter-spacing: 1px; color: var(--muted);
  margin-bottom: 20px;
}
.hero-meta .dot, .dot { width: 3px; height: 3px; background: var(--red); border-radius: 50%; }
.hero-excerpt {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; line-height: 1.7; color: rgba(10,10,10,0.65);
  max-width: 560px; margin-bottom: 36px;
}
.btn-read {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
  transition: gap .2s;
}
.btn-read:hover { gap: 22px; }
.btn-read .arrow { font-size: 20px; }

/* ── TICKER ── */
.ticker {
  background: var(--red);
  padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 60px;
  animation: ticker 40s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 500; flex-shrink: 0; color: #fff;
}
.ticker-item::before { content: '★ '; }
.ticker-item:hover { opacity: 0.8; }

/* ── SECTION HEADER ── */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px; letter-spacing: 2px;
  color: var(--text);
}
.section-title span { color: var(--red); }
.section-link {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.section-link:hover { color: var(--red); }

/* ── MAIN GRID ── */
main { padding: 80px 48px; background: var(--bg); }

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 2px;
  margin-bottom: 80px;
  background: var(--border);
}
.featured-main {
  background: var(--card);
  padding: 40px;
  grid-row: span 2;
  position: relative; overflow: hidden;
  cursor: pointer; transition: background .2s;
}
.featured-main:hover { background: #fafafa; }
.featured-main::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.featured-main:hover::before { transform: scaleX(1); }
.featured-side {
  background: var(--card);
  padding: 28px 32px;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: background .2s;
  border-bottom: 2px solid transparent;
}
.featured-side:hover { background: #fafafa; border-bottom-color: var(--red); }

.card-category {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.card-title-xl {
  font-family: var(--font-display);
  font-size: 52px; line-height: 0.95; letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text);
}
.card-title-xl em { color: var(--red); font-style: normal; }
.card-title-lg {
  font-family: var(--font-serif);
  font-size: 22px; line-height: 1.3; font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.card-title-sm {
  font-family: var(--font-serif);
  font-size: 17px; line-height: 1.35; font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.card-excerpt {
  font-size: 14px; line-height: 1.7; color: rgba(10,10,10,0.55);
  margin-bottom: 20px;
}
.card-meta {
  font-size: 11px; letter-spacing: 1px; color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.card-meta .sep { color: var(--border); }
.card-tag {
  display: inline-block;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid var(--gold); color: var(--gold);
  margin-bottom: 10px;
}

/* ── NEWS GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 80px;
}
.news-card {
  background: var(--card);
  padding: 32px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.news-card:hover { background: #fafafa; }
.news-card .number {
  font-family: var(--font-display);
  font-size: 80px; line-height: 1; color: rgba(0,0,0,0.04);
  position: absolute; bottom: 20px; right: 20px; pointer-events: none;
}
.news-img {
  width: 100%; aspect-ratio: 16/9;
  background: #efefef;
  margin-bottom: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; opacity: 0.4;
}
.news-img img { opacity: 1; }

/* ── TRENDING SIDEBAR ── */
.content-sidebar {
  display: grid; grid-template-columns: 1fr 300px; gap: 60px;
  margin-bottom: 80px;
}
.trending-list { display: flex; flex-direction: column; gap: 0; }
.trending-item {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: padding-left .2s;
}
.trending-item:hover { padding-left: 8px; }
.trending-num {
  font-family: var(--font-display);
  font-size: 36px; color: var(--red); opacity: 0.35;
  min-width: 48px; line-height: 1;
}
.trending-item:hover .trending-num { opacity: 1; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-section-title {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 2px; margin-bottom: 20px;
  padding-bottom: 10px; border-bottom: 2px solid var(--red);
  display: inline-block;
  color: var(--text);
}
.sidebar-item {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; display: block;
}
.sidebar-item:last-child { border: none; }
.sidebar-item:hover { opacity: 0.7; }
.rating-bar { height: 2px; background: var(--border); margin-top: 8px; border-radius: 1px; }
.rating-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 1px; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
  background: var(--border); margin-bottom: 80px;
}
.review-card {
  background: var(--card); padding: 28px;
  cursor: pointer; transition: background .2s;
}
.review-card:hover { background: #fafafa; }
.review-score {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1; margin-bottom: 12px;
}
.review-score.great { color: var(--gold); }
.review-score.good  { color: #4a9e28; }
.review-score.avg   { color: #d4920f; }
.review-score.bad   { color: var(--red); }
.stars { color: var(--gold); font-size: 12px; margin-bottom: 12px; letter-spacing: 2px; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 60px; text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: 80px;
}
.newsletter::before {
  content: 'CINEVAULT';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display);
  font-size: 200px; color: rgba(0,0,0,0.025);
  white-space: nowrap; pointer-events: none;
}
.newsletter h2 { font-family: var(--font-display); font-size: 48px; letter-spacing: 4px; margin-bottom: 12px; color: var(--text); }
.newsletter p { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 0; }
.newsletter-form input {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-right: none; color: var(--text); padding: 14px 20px;
  font-family: var(--font-body); font-size: 14px; outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { border-color: #ccc; }
.newsletter-form button {
  background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 14px 28px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body); transition: background .2s;
}
.newsletter-form button:hover { background: var(--red-glow); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px; background: var(--bg-alt); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { font-family: var(--font-display); font-size: 36px; letter-spacing: 4px; margin-bottom: 16px; color: var(--text); }
.footer-logo span { color: var(--red); }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--muted); max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(10,10,10,0.55); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.social-links a:hover { color: var(--red); }

/* ── ARTICLE PAGE ── */
.article-page { padding-top: 64px; background: var(--bg); }
.article-hero-img { width: 100%; max-height: 520px; overflow: hidden; }
.article-hero-img img { width: 100%; height: 520px; object-fit: cover; }
.article-container {
  display: grid; grid-template-columns: 1fr 300px; gap: 60px;
  padding: 60px 48px; max-width: 1280px; margin: 0 auto;
}
.article-header { margin-bottom: 40px; }
.article-badges { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.article-category {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red);
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text);
}
.article-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
}
.review-score-block {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 20px 24px; margin-bottom: 32px;
}
.article-body {
  font-size: 17px; line-height: 1.8;
  font-family: var(--font-serif);
  color: rgba(10,10,10,0.85);
}
.article-body p { margin-bottom: 24px; }
.article-body h2 { font-family: var(--font-display); font-size: 36px; margin: 40px 0 16px; color: var(--text); }
.article-body h3 { font-family: var(--font-serif); font-size: 22px; margin: 32px 0 12px; color: var(--text); }
.article-body img { max-width: 100%; height: auto; margin: 24px 0; }
.article-body a { color: var(--red); border-bottom: 1px solid transparent; }
.article-body a:hover { border-bottom-color: var(--red); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  font-style: italic;
  background: var(--bg-alt);
  color: rgba(10,10,10,0.75);
}
.article-share {
  display: flex; align-items: center; gap: 16px;
  padding: 24px 0; border-top: 1px solid var(--border);
  margin-top: 40px;
}
.share-btn {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--border);
  color: var(--muted); background: none; cursor: pointer;
  transition: all .2s;
}
.share-btn:hover { border-color: var(--red); color: var(--red); }
.article-sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-widget { background: var(--bg-alt); padding: 24px; border: 1px solid var(--border); }
.more-in-category { padding: 60px 0; border-top: 1px solid var(--border); background: var(--bg); }

/* ── STATIC PAGES (Terms, Privacy, Contact) ── */
.static-page { padding-top: 64px; background: var(--bg); }
.static-page-container {
  max-width: 860px; margin: 0 auto;
  padding: 60px 48px;
}
.static-page-content { color: rgba(10,10,10,0.85); }
@media (max-width: 640px) {
  .static-page-container { padding: 40px 16px; }
}

/* ── CATEGORY / SEARCH PAGES ── */
.category-page, .search-page { padding-top: 64px; background: var(--bg); }
.category-header {
  padding: 60px 48px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.category-desc { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--muted); margin-top: 8px; }
.category-container {
  display: grid; grid-template-columns: 1fr 300px; gap: 60px;
  padding: 60px 48px;
}
.search-header { padding: 60px 48px 40px; border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.search-form-big { display: flex; gap: 0; margin-top: 24px; max-width: 600px; }
.search-input-big {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-right: none; color: var(--text); padding: 16px 20px;
  font-family: var(--font-body); font-size: 16px; outline: none;
}
.search-input-big::placeholder { color: var(--muted); }
.search-submit {
  background: var(--red); color: #fff; border: none; cursor: pointer;
  padding: 16px 28px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-body);
}
.search-results { padding: 40px 48px; display: flex; flex-direction: column; gap: 2px; background: transparent; }
.search-result-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 24px;
  background: var(--card); padding: 24px; transition: background .2s;
  border: 1px solid var(--border);
}
.search-result-item:hover { background: #fafafa; }
.search-result-img { width: 180px; height: 100px; overflow: hidden; }
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-body {}

/* ── PAGINATION ── */
.pagination-frontend {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  padding: 40px 48px;
}
.page-btn-front {
  font-size: 13px; letter-spacing: 1px; padding: 8px 16px;
  border: 1px solid var(--border); color: var(--muted);
  transition: all .2s;
}
.page-btn-front:hover, .page-btn-front.active {
  border-color: var(--red); color: var(--red);
}

/* ── ANIMATIONS ── */
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .hero { padding: 0 24px 60px; }
  main { padding: 60px 24px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-main { grid-row: span 1; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-container { grid-template-columns: 1fr; }
  .category-container { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .hero { padding: 0 16px 48px; }
  main { padding: 40px 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--border); }
  footer { padding: 32px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-container { padding: 40px 16px; }
  .category-container { padding: 40px 16px; }
  .category-header { padding: 40px 16px 24px; }
  .search-header { padding: 40px 16px 24px; }
  .search-results { padding: 24px 16px; }
  .search-result-item { grid-template-columns: 1fr; }
  .more-in-category { padding: 40px 0; }
  .more-in-category .section-header { padding: 0 16px; }
  .more-in-category .news-grid { padding: 0 16px; }
  .pagination-frontend { padding: 24px 16px; }
}

/* ── ARTICLE PAGE RESPONSIVE ── */
@media (max-width: 1024px) {
  /* Tablet: container padding smaller */
  .article-container { padding: 40px 24px; gap: 40px; }
  /* Hero shorter on tablet */
  .article-hero-img { max-height: 360px; }
  .article-hero-img img { height: 360px; }
}

@media (max-width: 768px) {
  /* Hero compact on large mobile */
  .article-hero-img { max-height: 260px; }
  .article-hero-img img { height: 260px; }
  /* Hide wide banners — 728px overflows mobile viewport */
  .ad-zone--before_article,
  .ad-zone--after_article,
  .ad-zone--footer_banner { display: none; }
  /* Prevent any ad from causing horizontal scroll */
  .ad-zone { overflow: hidden; max-width: 100%; }
}

@media (max-width: 640px) {
  /* Hero image — very compact on phone */
  .article-hero-img { max-height: 200px; }
  .article-hero-img img { height: 200px; }

  /* Title — clamp minimum too large (42px) for 375px screen */
  .article-title { font-size: clamp(26px, 7vw, 42px); line-height: 1.15; }

  /* Meta — allow dots to hide and items to wrap */
  .article-meta { gap: 6px 10px; }
  .article-meta .dot { display: none; }
  .article-badges { flex-wrap: wrap; gap: 8px; }

  /* Review score — stack vertically on small screen */
  .review-score-block { flex-wrap: wrap; gap: 12px; padding: 16px; }

  /* Body text — slightly smaller, better readability */
  .article-body { font-size: 16px; line-height: 1.75; }
  .article-body h2 { font-size: 22px; margin: 24px 0 10px; }
  .article-body h3 { font-size: 18px; margin: 20px 0 8px; }
  .article-body blockquote { padding: 12px 16px; font-size: 15px; }
  .article-body p { margin-bottom: 18px; }

  /* Share buttons — wrap on small screens */
  .article-share { flex-wrap: wrap; gap: 8px; margin-top: 28px; padding: 16px 0; }

  /* Sidebar — hide on phone (sidebar moves below article via grid,
     takes too much vertical space; trending shown in related section) */
  .article-sidebar { display: none; }

  /* More in category — inline style="padding:0 48px" in view needs !important */
  .more-in-category .section-header { padding: 0 16px !important; }
  .more-in-category .news-grid { padding: 0 16px !important; margin-top: 16px !important; }
}
