/* ============================================================
   GorgeousLooks — Canada's Daily News Stylesheet
   ============================================================ */

:root {
  --brand:       #c41230;
  --brand-dark:  #8b0d20;
  --accent:      #c41230;
  --text:        #1d1d1f;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --bg:          #f9fafb;
  --white:       #ffffff;
  --card-shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --radius:      6px;
  --font-serif:  'Georgia', 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: #111827;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  padding: 6px 20px;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.top-bar a { color: rgba(255,255,255,.7); }
.top-bar a:hover { color: var(--white); text-decoration: none; }

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--brand);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
  white-space: nowrap;
}
.logo span { color: rgba(255,255,255,.65); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 6px 11px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .15s, color .15s;
}
.main-nav a:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  text-decoration: none;
}
.header-cta {
  background: var(--white) !important;
  color: var(--brand) !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  font-size: .875rem !important;
  transition: opacity .15s !important;
}
.header-cta:hover { opacity: .9 !important; text-decoration: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── BREAKING TICKER ─────────────────────────────────────── */
.ticker-bar {
  background: #111827;
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  font-size: .82rem;
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ticker-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.ticker-label {
  background: var(--brand);
  padding: 2px 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-right: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.hero-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white);
}
.hero-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.hero-main-content { padding: 20px 24px 24px; }
.hero-main .category-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.hero-main h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.hero-main h2 a:hover { text-decoration: none; color: var(--brand); }
.hero-main p { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }

.hero-side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 100px 1fr;
}
.side-card img { width: 100px; height: 90px; object-fit: cover; }
.side-card-content { padding: 10px 14px; }
.side-card .category-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--accent);
  margin-bottom: 6px;
}
.side-card h3 {
  font-family: var(--font-serif);
  font-size: .95rem;
  line-height: 1.3;
  color: var(--text);
}
.side-card h3 a:hover { color: var(--brand); text-decoration: none; }

/* ── SECTION TITLE ───────────────────────────────────────── */
.section-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--brand);
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 20px;
}

/* ── ARTICLES SECTION ────────────────────────────────────── */
.articles-section { padding: 36px 0; }
.articles-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.article-card img { width: 100%; height: 180px; object-fit: cover; }
.article-card-body { padding: 16px; }
.article-card .category-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--accent);
  margin-bottom: 8px;
}
.article-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text);
}
.article-card h3 a:hover { color: var(--brand); text-decoration: none; }
.article-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.meta {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}
.meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.widget-title {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.subscribe-widget {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  border: none;
}
.subscribe-widget .widget-title { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }
.subscribe-widget p { font-size: .875rem; color: rgba(255,255,255,.85); margin-bottom: 16px; line-height: 1.5; }
.sub-input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 10px;
}
.sub-btn {
  width: 100%;
  padding: 10px;
  background: #111827;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.sub-btn:hover { background: #000; }

.popular-list { list-style: none; }
.popular-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.popular-list li:last-child { border-bottom: none; }
.popular-number {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--border);
  min-width: 24px;
  line-height: 1.3;
}
.popular-list a { font-size: .85rem; line-height: 1.35; font-weight: 500; color: var(--text); }
.popular-list a:hover { color: var(--brand); text-decoration: none; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .75rem;
  color: var(--muted);
  transition: .15s;
}
.tag:hover { background: var(--brand); color: var(--white); border-color: var(--brand); text-decoration: none; }

/* ── AD PLACEHOLDER ──────────────────────────────────────── */
.ad-placeholder {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ad-leaderboard { height: 90px; margin: 16px 0; }
.ad-rect { height: 250px; }

/* ── PAYWALL ─────────────────────────────────────────────── */
.paywall-overlay { position: relative; margin-top: 24px; }
.paywall-blur {
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  max-height: 200px;
  overflow: hidden;
}
.paywall-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
}
.paywall-box::before {
  content: '';
  position: absolute;
  top: -60px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}
.paywall-box .lock-icon { font-size: 2rem; margin-bottom: 12px; }
.paywall-box h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 8px; }
.paywall-box p { color: var(--muted); font-size: .9rem; margin-bottom: 20px; }

.plans-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.plan-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  transition: .15s;
}
.plan-card.popular { border-color: var(--brand); position: relative; }
.plan-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}
.plan-card:hover { border-color: var(--brand); }
.plan-name { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; }
.plan-price { font-size: 1.3rem; font-weight: 800; color: var(--text); margin: 4px 0; }
.plan-period { font-size: .7rem; color: var(--muted); }

.btn-subscribe {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.btn-subscribe:hover { background: var(--brand-dark); text-decoration: none; }
.paywall-note { font-size: .75rem; color: var(--muted); margin-top: 12px; }

/* ── ARTICLE PAGE ────────────────────────────────────────── */
.article-page { padding: 36px 0 48px; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.breadcrumb {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--brand); }
.breadcrumb a:hover { text-decoration: underline; }
.article-header { margin-bottom: 24px; }
.article-header .category-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.article-header h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text);
}
.article-header .standfirst {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  border-left: 4px solid var(--brand);
  padding-left: 16px;
  margin-bottom: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted);
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.article-meta strong { color: var(--text); }
.article-featured-image {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.image-caption {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
  text-align: center;
}
.article-content {
  font-size: 1.0rem;
  line-height: 1.8;
  color: var(--text);
}
.article-content p { margin-bottom: 1.2em; }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 1.8em 0 .7em;
  color: var(--text);
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 1.5em 0 .6em;
  color: var(--text);
}
.article-content blockquote {
  border-left: 4px solid var(--brand);
  margin: 1.5em 0;
  padding: 12px 20px;
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--muted);
}
.article-content ul, .article-content ol { margin: 1em 0 1em 1.5em; }
.article-content li { margin-bottom: .5em; }
.article-content a { color: var(--brand); }

.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.share-label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.share-btn:hover { opacity: .85; text-decoration: none; }
.share-btn.fb { background: #1877f2; color: var(--white); }
.share-btn.tw { background: #000; color: var(--white); }
.share-btn.wa { background: #25d366; color: var(--white); }
.share-btn.copy { background: var(--bg); color: var(--text); border: 1px solid var(--border); }

/* ── RELATED ARTICLES ────────────────────────────────────── */
.related-section { margin-top: 36px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

/* ── STATIC PAGES ────────────────────────────────────────── */
.static-page { padding: 48px 0 64px; }
.static-page h1 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 8px; }
.static-page .subtitle { color: var(--muted); font-size: .95rem; margin-bottom: 32px; }
.static-content h2 { font-size: 1.25rem; font-weight: 700; margin: 1.8em 0 .6em; color: var(--text); }
.static-content p { margin-bottom: 1em; line-height: 1.7; color: #374151; }
.static-content ul { margin: .5em 0 1em 1.5em; }
.static-content li { margin-bottom: .4em; line-height: 1.6; color: #374151; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .9rem;
  color: #374151;
}
.contact-item .icon { font-size: 1.2rem; min-width: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-sans);
  transition: border-color .15s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-primary {
  background: var(--brand);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.btn-primary:hover { background: var(--brand-dark); }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 48px;
}
.about-hero h1 { font-family: var(--font-serif); font-size: 2.4rem; margin-bottom: 14px; }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.team-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #e05a6a);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.team-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: .8rem; color: var(--muted); }

/* ── SUBSCRIPTION PAGE ───────────────────────────────────── */
.sub-hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-bottom: 48px;
}
.sub-hero h1 { font-family: var(--font-serif); font-size: 2.4rem; margin-bottom: 14px; }
.sub-hero p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: .2s;
}
.pricing-card.featured {
  border-color: var(--brand);
  position: relative;
  box-shadow: 0 8px 32px rgba(196,18,48,.15);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 10px;
}
.pricing-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.pricing-name { font-size: .85rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--text); }
.pricing-period { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-features li { font-size: .875rem; padding: 6px 0; border-bottom: 1px solid var(--bg); color: #374151; }
.pricing-features li::before { content: '✓ '; color: var(--brand); font-weight: 700; }
.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-weight: 700;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: .15s;
  background: var(--brand);
  color: var(--white);
  text-align: center;
}
.pricing-cta:hover { background: var(--brand-dark); text-decoration: none; }
.pricing-cta.outline { background: transparent; border: 2px solid var(--brand); color: var(--brand); }
.pricing-cta.outline:hover { background: var(--brand); color: var(--white); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #111827;
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
  margin-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { font-size: 1.35rem; margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }
.footer-bottom-links { display: flex; gap: 16px; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111827;
  color: rgba(255,255,255,.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { font-size: .85rem; line-height: 1.5; max-width: 700px; }
.cookie-banner a { color: #f87171; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.btn-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
}

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
}
.modal h2 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 6px; }
.modal .modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.modal-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 12px;
}
.modal-input:focus { outline: none; border-color: var(--brand); }
.modal-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── READING PROGRESS ────────────────────────────────────── */
#readingProgress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--brand); z-index: 9999; width: 0; transition: width .1s;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .articles-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main img { height: 220px; }
  .hero-main h2 { font-size: 1.3rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--brand);
    padding: 12px;
    gap: 4px;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .article-header h1 { font-size: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .sidebar { display: flex; flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .plans-row { flex-direction: column; align-items: center; }
  .plan-card { width: 100%; max-width: 220px; }
  .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
}

/* ── Category Hero ───────────────────────────────────────── */
.category-hero {
  padding: 48px 0 40px;
  color: #fff;
  border-bottom: 3px solid rgba(255,255,255,0.15);
}
.category-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.category-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 600px;
  margin: 0;
  line-height: 1.6;
}
.main-nav a.active {
  color: var(--brand);
  font-weight: 700;
}
