/* ════════════════════════════════════════
   FRAGSTER NEWS — Styles
   Version: 1.0
════════════════════════════════════════ */

/* ── Shared font / vars ── */
.fn-banner, .fn-layout, .fn-single-wrap,
.fn-home-strip { font-family: var(--font); }

/* ── Reading Progress ── */
.fn-reading-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%; background: var(--lime);
  transition: width .1s linear;
}

/* ════════════════════════════════════════
   CATEGORY BADGES
════════════════════════════════════════ */
.fn-cat-badge {
  display: inline-block;
  padding: 2px 9px; border-radius: 3px;
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 8px; line-height: 1.8;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-cat-news    { background: var(--lime);   color: #000; }
.fn-cat-esports { background: var(--teal);   color: #000; }
.fn-cat-cs2     { background: #E8541A;       color: #fff; }
.fn-cat-rl      { background: #2BA3E8;       color: #fff; }
.fn-cat-guide   { background: var(--purple); color: #fff; }
.fn-cat-patch   { background: var(--orange); color: #000; }
.fn-cat-community{ background: #8B5CF6;      color: #fff; }
.fn-cat-tourney { background: #F5A623;       color: #000; }

/* ════════════════════════════════════════
   NEWS BANNER
════════════════════════════════════════ */
.fn-banner {
  background: linear-gradient(135deg, #080930 0%, #0D0E14 50%, #0a0510 100%);
  border-bottom: 1px solid var(--border);
  padding: 28px 32px 22px;
  position: relative; overflow: hidden;
}
.fn-banner::before {
  content: 'NEWS';
  position: absolute; right: -20px; top: -20px;
  font-size: 160px; font-weight: 900; letter-spacing: -8px;
  color: rgba(170,255,0,.03); line-height: 1; pointer-events: none;
  font-family: 'Barlow Condensed', sans-serif;
}
.fn-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.fn-banner-title {
  font-size: 40px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -1px; line-height: 1;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-banner-title span { color: var(--lime); }
.fn-banner-sub { font-size: 13.5px; color: var(--t2); margin-top: 7px; }
.fn-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.fn-cat-pill {
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid var(--border); color: var(--t2);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; cursor: pointer; transition: all .15s;
  text-decoration: none;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-cat-pill:hover { color: var(--t1); border-color: rgba(255,255,255,.2); }
.fn-cat-pill.active { background: var(--lime); color: #000; border-color: var(--lime); }

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.fn-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  max-width: 1280px; margin: 0 auto;
  padding: 28px 32px 48px;
  align-items: start;
}
.fn-main { min-width: 0; }
.fn-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.fn-section-title {
  font-size: 12.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--t2);
  display: flex; align-items: center; gap: 8px;
}
.fn-section-title::before {
  content: ''; width: 3px; height: 14px;
  background: var(--lime); border-radius: 2px; display: block;
}

/* ════════════════════════════════════════
   HERO GRID
════════════════════════════════════════ */
.fn-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  height: 440px;
  border-radius: 12px; overflow: hidden;
}
.fn-hero-main {
  position: relative; overflow: hidden; display: block;
  cursor: pointer; text-decoration: none;
}
.fn-hero-main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.22,.68,0,1.1);
}
.fn-hero-main:hover img { transform: scale(1.04); }
.fn-hero-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #0a1535, #12083a 50%, #050820);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.fn-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,15,.97) 0%, rgba(5,5,15,.4) 50%, transparent 100%);
  pointer-events: none;
}
.fn-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px; z-index: 2;
}
.fn-hero-title {
  font-size: 30px; font-weight: 900; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -.5px;
  color: #fff; margin-bottom: 10px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-hero-excerpt { font-size: 13.5px; color: var(--t2); line-height: 1.5; margin-bottom: 10px; }

.fn-hero-side { display: flex; flex-direction: column; gap: 3px; }
.fn-hero-side-item {
  flex: 1; position: relative; overflow: hidden; display: block;
  background: var(--bg3); text-decoration: none;
}
.fn-hero-side-item img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.fn-hero-side-item:hover img { transform: scale(1.06); }
.fn-hero-placeholder { font-size: 40px; }
.fn-hero-side-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,15,.94) 0%, rgba(5,5,15,.35) 55%, transparent 100%);
}
.fn-hero-side-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px; z-index: 2;
}
.fn-side-title {
  font-size: 15px; font-weight: 800; text-transform: uppercase;
  line-height: 1.2; color: #fff; margin-bottom: 6px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}

/* ════════════════════════════════════════
   ARTICLE GRID
════════════════════════════════════════ */
.fn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.fn-grid .fn-card:first-child { grid-column: 1 / -1; }

.fn-card {
  background: var(--bg2); border: 1px solid var(--border);
  overflow: hidden; transition: border-color .15s;
  display: flex; flex-direction: column;
}
.fn-card:hover { border-color: rgba(170,255,0,.25); }

.fn-card-img {
  height: 200px; position: relative; overflow: hidden;
  display: block;
}
.fn-grid .fn-card:first-child .fn-card-img { height: 280px; }
.fn-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.fn-card:hover .fn-card-img img { transform: scale(1.04); }
.fn-card-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1535, #12083a);
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
}
.fn-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,15,.8) 0%, transparent 60%);
  pointer-events: none;
}
.fn-card-img-badge { position: absolute; bottom: 12px; left: 14px; z-index: 2; }
.fn-card-img-badge .fn-cat-badge { margin-bottom: 0; }

.fn-card-body { padding: 14px 16px 18px; flex: 1; }
.fn-grid .fn-card:first-child .fn-card-body { padding: 18px 22px 22px; }
.fn-card-title {
  display: block; text-decoration: none;
  font-size: 16px; font-weight: 800; line-height: 1.2;
  text-transform: uppercase; letter-spacing: -.2px;
  color: var(--t1); margin: 8px 0 8px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
  transition: color .12s;
}
.fn-card:first-child .fn-card-title { font-size: 22px; }
.fn-card-title:hover { color: var(--lime); }
.fn-card-excerpt { font-size: 13px; color: var(--t2); line-height: 1.55; margin-bottom: 10px; }

/* ── Meta ── */
.fn-art-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 8px;
}
.fn-art-author {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--t2); font-weight: 600;
}
.fn-art-av {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(170,255,0,.12), #1a2550);
  border: 1px solid rgba(170,255,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--lime); font-weight: 700;
  overflow: hidden; flex-shrink: 0;
}
.fn-art-av.lg { width: 42px; height: 42px; font-size: 13px; }
.fn-art-av img { width: 100%; height: 100%; object-fit: cover; }
.fn-meta-item { font-size: 11.5px; color: var(--t3); }
.fn-meta-divider { width: 1px; height: 14px; background: var(--border); }

/* ── List articles ── */
.fn-list { display: flex; flex-direction: column; }
.fn-list-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  cursor: pointer; text-decoration: none;
}
.fn-list-item:last-child { border-bottom: none; }
.fn-list-img {
  width: 80px; height: 60px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; position: relative;
  background: var(--bg4);
}
.fn-list-img img { width: 100%; height: 100%; object-fit: cover; }
.fn-list-title {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  line-height: 1.2; color: var(--t1); margin: 4px 0 6px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
  transition: color .12s;
}
.fn-list-item:hover .fn-list-title { color: var(--lime); }

/* ── Pagination ── */
.fn-pagination { margin-top: 24px; display: flex; justify-content: center; }
.fn-pagination .page-numbers {
  display: flex; gap: 4px; list-style: none; padding: 0; margin: 0;
}
.fn-pagination .page-numbers li a,
.fn-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg3); border: 1px solid var(--border);
  font-size: 13px; color: var(--t2); font-weight: 700;
  transition: all .15s; text-decoration: none;
}
.fn-pagination .page-numbers li a:hover { color: var(--lime); border-color: rgba(170,255,0,.3); }
.fn-pagination .page-numbers li .current { background: var(--lime); color: #000; border-color: var(--lime); }

/* ════════════════════════════════════════
   SIDEBAR WIDGETS
════════════════════════════════════════ */
.fn-sidebar { display: flex; flex-direction: column; gap: 18px; }
.fn-widget {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.fn-widget-hdr {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; color: var(--t2);
  display: flex; align-items: center; gap: 8px;
}

.fn-trending-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 16px; border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.fn-trending-item:last-child { border-bottom: none; }
.fn-trending-item:hover { background: var(--bg3); }
.fn-trending-num {
  font-size: 24px; font-weight: 900; color: var(--border); line-height: 1;
  flex-shrink: 0; min-width: 24px; transition: color .15s;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-trending-item:hover .fn-trending-num { color: var(--lime); }
.fn-trending-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  line-height: 1.2; color: var(--t1);
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}

.fn-tags-cloud { padding: 14px 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.fn-tag {
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid var(--border); background: var(--bg3);
  font-size: 11.5px; color: var(--t2); text-decoration: none;
  font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
  transition: all .15s;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-tag:hover { border-color: var(--lime); color: var(--lime); background: var(--lime-bg); }

.fn-newsletter {
  background: linear-gradient(135deg, #0a1535, #12083a);
  border: 1px solid rgba(170,255,0,.18);
  border-radius: 10px; padding: 20px; text-align: center;
}
.fn-newsletter-title {
  font-size: 18px; font-weight: 900; text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-newsletter-sub { font-size: 12.5px; color: var(--t2); line-height: 1.5; }
.fn-newsletter-btn {
  display: block; width: 100%; margin-top: 14px; padding: 10px;
  background: var(--lime); color: #000; font-weight: 900;
  font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
  border: none; border-radius: 7px; cursor: pointer;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
  text-decoration: none; transition: opacity .15s;
}
.fn-newsletter-btn:hover { opacity: .88; }

/* ════════════════════════════════════════
   SINGLE ARTICLE
════════════════════════════════════════ */
.fn-single-wrap { background: var(--bg); }

.fn-single-hdr {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a1535, #12083a);
}
.fn-single-hero-img {
  position: absolute; inset: 0;
}
.fn-single-hero-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .35;
}
.fn-single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, #0a0b0f 0%, rgba(10,11,15,.7) 50%, rgba(10,11,15,.4) 100%);
}
.fn-single-hdr-content { padding: 40px 40px 32px; max-width: 860px; }

.fn-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--t3); margin-bottom: 16px;
}
.fn-breadcrumb a { color: var(--t3); text-decoration: none; }
.fn-breadcrumb a:hover { color: var(--lime); }
.fn-breadcrumb span { color: var(--t3); }

.fn-single-title {
  font-size: 42px; font-weight: 900; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -1.5px;
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}
.fn-single-intro { font-size: 16px; color: var(--t2); line-height: 1.65; margin-bottom: 16px; }
.fn-single-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.fn-single-body {
  display: grid; grid-template-columns: 1fr 280px; gap: 32px;
  max-width: 1200px; margin: 0 auto;
  padding: 32px 40px 48px; align-items: start;
}
.fn-single-content { min-width: 0; }

/* Article Content Typography */
.fn-article-content {
  font-size: 16px; line-height: 1.85; color: var(--t1);
  margin-bottom: 28px;
}
.fn-article-content h2 {
  font-size: 26px; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.5px; margin: 32px 0 14px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
  color: #fff; border-left: 4px solid var(--lime); padding-left: 14px;
}
.fn-article-content h3 {
  font-size: 20px; font-weight: 800; margin: 24px 0 10px;
  font-family: 'Barlow Condensed', var(--font), sans-serif; color: #fff;
}
.fn-article-content p { margin-bottom: 18px; }
.fn-article-content ul, .fn-article-content ol { margin: 0 0 18px 20px; }
.fn-article-content li { margin-bottom: 8px; }
.fn-article-content strong { color: #fff; font-weight: 700; }
.fn-article-content a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.fn-article-content blockquote {
  border-left: 4px solid var(--lime); padding: 14px 20px;
  background: var(--bg3); margin: 20px 0; border-radius: 0 8px 8px 0;
  color: var(--t2); font-style: italic;
}
.fn-article-content img { border-radius: 10px; margin: 20px 0; }
.fn-article-content code {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 2px 7px; border-radius: 4px; font-family: var(--mono); font-size: 14px;
}

/* EEAT signal box */
.fn-eeat-signal {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(170,255,0,.06); border: 1px solid rgba(170,255,0,.2);
  border-radius: 8px; padding: 14px 16px;
  font-size: 13px; color: var(--t2); line-height: 1.6;
  margin-bottom: 24px;
}

/* Author card */
.fn-author-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin: 28px 0;
}
.fn-author-card-av {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1a2550, #2a1060);
  border: 2px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--lime); font-weight: 700; overflow: hidden;
}
.fn-author-card-av img { width: 100%; height: 100%; object-fit: cover; }
.fn-author-card-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.fn-author-card-role { font-size: 12px; color: var(--t3); margin-bottom: 10px; }
.fn-author-card-bio { font-size: 13px; color: var(--t2); line-height: 1.6; margin-bottom: 10px; }
.fn-author-cred-list { display: flex; flex-wrap: wrap; gap: 6px; }
.fn-author-cred {
  font-size: 11.5px; color: var(--lime); background: var(--lime-bg);
  border: 1px solid rgba(170,255,0,.2); border-radius: 20px; padding: 3px 10px;
}

/* Tags */
.fn-single-tags { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-bottom: 24px; }

/* Single sidebar */
.fn-single-sidebar { display: flex; flex-direction: column; gap: 18px; }
.fn-related-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: background .15s;
}
.fn-related-item:last-child { border-bottom: none; }
.fn-related-item:hover { background: var(--bg3); }
.fn-related-img {
  width: 68px; height: 50px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden; position: relative;
  background: var(--bg4);
}
.fn-related-img img { width: 100%; height: 100%; object-fit: cover; }
.fn-related-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.fn-related-body { flex: 1; min-width: 0; }
.fn-related-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  line-height: 1.2; color: var(--t1); margin: 4px 0 5px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
}

/* ════════════════════════════════════════
   HOMEPAGE NEWS STRIP
════════════════════════════════════════ */
.fn-home-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px 28px;
}
.fn-home-strip-inner { max-width: 1400px; margin: 0 auto; }
.fn-home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.fn-home-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  text-decoration: none; display: block;
  transition: border-color .15s, transform .15s;
}
.fn-home-card:hover { border-color: rgba(170,255,0,.25); transform: translateY(-2px); }
.fn-home-card-img {
  height: 140px; position: relative; overflow: hidden;
}
.fn-home-card-feat .fn-home-card-img { height: 190px; }
.fn-home-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.fn-home-card:hover .fn-home-card-img img { transform: scale(1.06); }
.fn-home-card-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a1535, #12083a);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.fn-home-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,15,.8) 0%, transparent 60%);
}
.fn-home-card-body { padding: 12px 14px 14px; }
.fn-home-card-title {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  line-height: 1.2; color: var(--t1); margin: 6px 0 6px;
  font-family: 'Barlow Condensed', var(--font), sans-serif;
  transition: color .12s;
}
.fn-home-card-feat .fn-home-card-title { font-size: 18px; }
.fn-home-card:hover .fn-home-card-title { color: var(--lime); }
.fn-home-card-excerpt { font-size: 12.5px; color: var(--t2); line-height: 1.5; margin-bottom: 8px; }
.fn-home-card-meta { font-size: 11px; color: var(--t3); }

/* ════════════════════════════════════════
   COMMENTS
════════════════════════════════════════ */
.fn-comments-section { margin-top: 32px; }
.fn-comments-section .comment-list { list-style: none; padding: 0; }
.fn-comments-section .comment { padding: 14px 0; border-bottom: 1px solid var(--border); }
.fn-comments-section .comment-author { font-weight: 700; font-size: 13px; }
.fn-comments-section .comment-content p { color: var(--t2); font-size: 14px; }
.comment-respond { margin-top: 24px; }
.comment-respond h3 { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.comment-form textarea,
.comment-form input[type=text],
.comment-form input[type=email] {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 13px; color: var(--t1); font-family: var(--font);
  font-size: 14px; margin-bottom: 10px; outline: none;
}
.comment-form input[type=submit] {
  background: var(--lime); color: #000; font-weight: 900;
  border: none; border-radius: 8px; padding: 10px 24px;
  font-size: 14px; cursor: pointer; font-family: var(--font);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fn-layout { grid-template-columns: 1fr; padding: 20px; }
  .fn-hero-grid { grid-template-columns: 1fr; height: auto; }
  .fn-hero-main { height: 360px; }
  .fn-hero-side { flex-direction: row; height: 180px; }
  .fn-single-body { grid-template-columns: 1fr; }
  .fn-home-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fn-banner { padding: 20px 16px 16px; }
  .fn-banner-title { font-size: 30px; }
  .fn-grid { grid-template-columns: 1fr; }
  .fn-grid .fn-card:first-child { grid-column: auto; }
  .fn-single-hdr-content { padding: 24px 20px 20px; }
  .fn-single-title { font-size: 28px; }
  .fn-home-grid { grid-template-columns: 1fr; }
  .fn-home-strip { padding: 16px; }
}

/* Light mode */
[data-theme="light"] .fn-banner { background: linear-gradient(135deg, #e8ecf8, #f0f4ff); }
[data-theme="light"] .fn-card { background: var(--bg2); }
[data-theme="light"] .fn-newsletter { background: linear-gradient(135deg, #e0e8ff, #f0e8ff); }
