/* ============================================================
   FLAVOR — Bold Modern Magazine Theme
   Palette: Coral #FF6B6B · Navy #16213E · Gold #FFD93D
   ============================================================ */

/* --------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------- */
:root {
  --fl-primary: #FF6B6B;
  --fl-primary-dark: #e85555;
  --fl-primary-rgb: 255,107,107;
  --fl-secondary: #16213E;
  --fl-accent: #FFD93D;
  --fl-accent-gradient: linear-gradient(135deg, #FF6B6B, #FF8E53);
  --fl-navy-gradient: linear-gradient(135deg, #16213E, #0F3460);
  --fl-bg: #FFFFFF;
  --fl-surface: #FFFFFF;
  --fl-text: #16213E;
  --fl-text-secondary: #4a5568;
  --fl-muted: #8892a4;
  --fl-line: #e8ecf1;
  --fl-radius: 16px;
  --fl-radius-sm: 10px;
  --fl-radius-xs: 6px;
  --fl-shadow: 0 4px 20px rgba(22,33,62,.07);
  --fl-shadow-lg: 0 16px 48px rgba(22,33,62,.12);
  --fl-shadow-xl: 0 24px 64px rgba(22,33,62,.16);
  --fl-font: 'Inter', system-ui, -apple-system, sans-serif;
  --fl-font-display: 'Space Grotesk', 'Inter', sans-serif;
  --fl-container: 1240px;
  --fl-header-h: 72px;
  --fl-transition: .3s cubic-bezier(.4,0,.2,1);
  --fl-transition-slow: .5s cubic-bezier(.4,0,.2,1);
}

/* --------------------------------------------------
   2. DARK MODE TOKENS
   -------------------------------------------------- */
[data-theme="dark"] {
  --fl-bg: #0d1117;
  --fl-surface: #161b22;
  --fl-text: #f0f6fc;
  --fl-text-secondary: #b1bac4;
  --fl-muted: #6e7681;
  --fl-line: #21262d;
  --fl-shadow: 0 4px 20px rgba(0,0,0,.4);
  --fl-shadow-lg: 0 16px 48px rgba(0,0,0,.5);
  --fl-shadow-xl: 0 24px 64px rgba(0,0,0,.6);
}

/* --------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--fl-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fl-text);
  background: var(--fl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fl-primary); text-decoration: none; transition: color var(--fl-transition); }
a:hover { color: var(--fl-primary-dark); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* --------------------------------------------------
   4. TYPOGRAPHY SCALE
   -------------------------------------------------- */
.fl-title-xxl {
  font-family: var(--fl-font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.fl-title-xl {
  font-family: var(--fl-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.fl-title-lg {
  font-family: var(--fl-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.015em;
}
.fl-title-md {
  font-family: var(--fl-font-display);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
}
.fl-title-sm {
  font-family: var(--fl-font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
.fl-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--fl-primary);
  margin-bottom: 10px;
}
.fl-meta {
  font-size: 13px;
  color: var(--fl-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fl-meta__dot::before { content: '\b7'; margin: 0 2px; }

/* --------------------------------------------------
   5. LAYOUT: CONTAINER & GRIDS
   -------------------------------------------------- */
.fl-container {
  width: 100%;
  max-width: var(--fl-container);
  margin: 0 auto;
  padding: 0 28px;
}
.fl-section { padding: 96px 0; }
.fl-section--tight { padding: 56px 0; }
.fl-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.fl-grid { display: grid; gap: 28px; }
.fl-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fl-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fl-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fl-grid--sidebar { grid-template-columns: 1fr 360px; gap: 48px; }

.fl-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}
.fl-featured > :first-child { grid-row: 1 / -1; }

.fl-masonry { column-count: 3; column-gap: 28px; }
.fl-masonry > * { break-inside: avoid; margin-bottom: 28px; }

.fl-magazine-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}
.fl-magazine-grid > :first-child { grid-row: 1 / -1; }

/* --------------------------------------------------
   6. UTILITY CLASSES
   -------------------------------------------------- */
.fl-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 100px;
  background: var(--fl-primary);
  color: #fff;
  line-height: 1.4;
}
.fl-badge--outline {
  background: transparent;
  color: var(--fl-primary);
  border: 1.5px solid var(--fl-primary);
  padding: 2px 8px;
  font-size: 9px;
}
.fl-badge--accent {
  background: var(--fl-accent);
  color: var(--fl-secondary);
}
.fl-badge--navy {
  background: var(--fl-secondary);
  color: #fff;
}

.fl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--fl-radius-sm);
  background: var(--fl-accent-gradient);
  color: #fff;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
  border: none;
  letter-spacing: .02em;
}
.fl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--fl-primary-rgb),.35);
  color: #fff;
}
.fl-btn--ghost {
  background: transparent;
  color: var(--fl-text);
  border: 2px solid var(--fl-line);
}
.fl-btn--ghost:hover {
  border-color: var(--fl-primary);
  color: var(--fl-primary);
  box-shadow: none;
  transform: none;
}

/* --------------------------------------------------
   7. READING PROGRESS BAR
   -------------------------------------------------- */
.fl-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--fl-accent-gradient);
  z-index: 9999;
  transition: width 60ms linear;
}

/* --------------------------------------------------
   8. BREAKING NEWS TICKER
   -------------------------------------------------- */
.fl-ticker {
  background: var(--fl-secondary);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.fl-ticker__label {
  display: inline-block;
  background: var(--fl-primary);
  padding: 3px 16px;
  border-radius: 100px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-right: 24px;
  font-size: 11px;
}
.fl-ticker__track {
  display: inline-block;
  animation: tickerScroll 30s linear infinite;
}
.fl-ticker__track a { color: #fff; margin-right: 48px; }
.fl-ticker__track a:hover { text-decoration: underline; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------
   9. TOPBAR
   -------------------------------------------------- */
.fl-topbar {
  background: var(--fl-secondary);
  color: rgba(255,255,255,.8);
  font-size: 13px;
}
.fl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.fl-topbar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fl-topbar__contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  transition: color var(--fl-transition);
}
.fl-topbar__contact a:hover { color: var(--fl-accent); }
.fl-topbar__contact svg { flex-shrink: 0; }
.fl-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fl-topbar__social a {
  color: rgba(255,255,255,.6);
  transition: color var(--fl-transition);
}
.fl-topbar__social a:hover { color: var(--fl-accent); }
.fl-topbar__social svg { width: 16px; height: 16px; fill: currentColor; }

/* --------------------------------------------------
   10. HEADER & NAVIGATION
   -------------------------------------------------- */
.fl-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--fl-line);
  transition: box-shadow var(--fl-transition);
}
.fl-header--scrolled { box-shadow: var(--fl-shadow-lg); }
.fl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--fl-header-h);
}
.fl-header__logo { display: flex; align-items: center; }
.fl-header__logo img { height: 40px; width: auto; }
.fl-header__nav { display: flex; align-items: center; gap: 6px; }
.fl-header__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fl-text);
  position: relative;
  padding: 8px 16px;
  border-radius: var(--fl-radius-xs);
  letter-spacing: .01em;
  transition: color var(--fl-transition), background var(--fl-transition);
}
.fl-header__link:hover {
  color: var(--fl-primary);
  background: rgba(255,107,107,.06);
}
.fl-header__link--active {
  color: var(--fl-primary);
  background: rgba(255,107,107,.1);
}
.fl-header__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background: var(--fl-primary);
  border-radius: 3px;
}
.fl-header__actions { display: flex; align-items: center; gap: 12px; }
.fl-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--fl-accent-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--fl-radius);
  box-shadow: 0 4px 14px rgba(255,107,107,.3);
  transition: all var(--fl-transition);
}
.fl-header__cta:hover {
  background: transparent;
  color: var(--fl-primary);
  box-shadow: none;
  outline: 2px solid var(--fl-primary);
  outline-offset: -2px;
}
.fl-header__cta svg { flex-shrink: 0; stroke: currentColor; }

/* --------------------------------------------------
   11. MOBILE NAVIGATION
   -------------------------------------------------- */
.fl-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fl-nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--fl-text);
  border-radius: 3px;
  transition: transform var(--fl-transition), opacity var(--fl-transition);
}
.fl-nav-toggle.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.fl-nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.fl-nav-toggle.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------
   11. INTRO SECTION
   -------------------------------------------------- */
.fl-intro {
  padding: 64px 0 56px;
  background: var(--fl-bg);
  text-align: center;
}
.fl-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.fl-intro__title {
  font-family: var(--fl-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fl-secondary);
}
.fl-intro__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fl-text-muted);
  max-width: 600px;
}
/* --- Post Detail Hero Image --- */
.fl-hero--image {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
  background-size: cover;
  background-position: center;
}
.fl-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.fl-hero--image .fl-hero__inner,
.fl-hero--image .fl-container { position: relative; z-index: 2; }
.fl-hero--image .fl-title-xxl,
.fl-hero--image h1 { color: #fff; }

.fl-btn--lg {
  padding: 14px 36px;
  font-size: 16px;
}

/* --------------------------------------------------
   11b. PARALLAX BREAK
   -------------------------------------------------- */
.fl-parallax-break {
  position: relative;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-parallax-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,33,62,.75) 0%, rgba(255,107,107,.35) 100%);
}
.fl-parallax-break__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.fl-parallax-break__quote {
  font-family: var(--fl-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .fl-parallax-break { background-attachment: scroll; min-height: 260px; }
}

/* --------------------------------------------------
   12. CARDS
   -------------------------------------------------- */
.fl-card {
  background: var(--fl-surface);
  border-radius: var(--fl-radius);
  overflow: hidden;
  box-shadow: var(--fl-shadow);
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
}
.fl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fl-shadow-lg);
}
.fl-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.fl-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.fl-card:hover .fl-card__image img { transform: scale(1.08); }
.fl-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}
.fl-card__body { padding: 24px; }
.fl-card__title {
  font-family: var(--fl-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 10px;
  color: var(--fl-text);
}
.fl-card__title a { color: inherit; }
.fl-card__title a:hover { color: var(--fl-primary); }
.fl-card__excerpt {
  font-size: 14px;
  color: var(--fl-text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card: Featured */
.fl-card--featured .fl-card__image { aspect-ratio: 16/9; }
.fl-card--featured .fl-card__title { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

/* Card: Hero (large magazine card with overlay text) */
.fl-card--hero {
  position: relative;
  display: flex;
  flex-direction: column;
}
.fl-card--hero .fl-card__image {
  aspect-ratio: auto;
  flex: 1;
  min-height: 420px;
}
.fl-card--hero .fl-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(22,33,62,.92) 0%, rgba(22,33,62,.5) 60%, transparent 100%);
  border-radius: 0 0 var(--fl-radius) var(--fl-radius);
}
.fl-card--hero .fl-card__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}
.fl-card--hero .fl-card__title a { color: #fff; }
.fl-card--hero .fl-card__title a:hover { color: var(--fl-accent); }
.fl-card--hero .fl-card__excerpt { color: rgba(255,255,255,.8); }
.fl-card--hero .fl-meta { color: rgba(255,255,255,.6); }
.fl-card--hero .fl-badge { background: var(--fl-accent); color: var(--fl-secondary); }

/* Card: Horizontal */
.fl-card--horizontal {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-radius: var(--fl-radius);
}
.fl-card--horizontal .fl-card__image { aspect-ratio: auto; height: 100%; }
.fl-card--horizontal .fl-card__body { display: flex; flex-direction: column; justify-content: center; }

/* News Hero (blog page featured) */
.fl-news-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 2px solid var(--fl-line);
  align-items: center;
}
.fl-news-hero__image {
  display: block;
  border-radius: var(--fl-radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.fl-news-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fl-news-hero__image:hover img { transform: scale(1.04); }
.fl-news-hero__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.fl-news-hero__title {
  font-family: var(--fl-heading);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fl-secondary);
}
.fl-news-hero__title a { color: inherit; }
.fl-news-hero__title a:hover { color: var(--fl-primary); }
.fl-news-hero__excerpt {
  font-size: 15px;
  color: var(--fl-text-muted);
  line-height: 1.7;
}

/* Card: Mini (numbered trending) */
.fl-card--mini {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--fl-line);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  align-items: flex-start;
}
.fl-card--mini:hover { transform: none; box-shadow: none; }
.fl-card--mini .fl-card__rank {
  font-family: var(--fl-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--fl-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 52px;
  flex-shrink: 0;
}
.fl-card--mini .fl-card__title { font-size: 1rem; margin-bottom: 6px; }

/* --------------------------------------------------
   13. SECTION HEADERS
   -------------------------------------------------- */
.fl-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}
.fl-section-header__title {
  font-family: var(--fl-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
.fl-section-header__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  border-radius: 5px;
  background: var(--fl-accent-gradient);
}

/* --------------------------------------------------
   14. DARK BAND SECTION
   -------------------------------------------------- */
.fl-band {
  background: var(--fl-secondary);
  color: #fff;
  padding: 80px 0;
}
[data-theme="dark"] .fl-band { background: #111827; }
.fl-band .fl-section-header__title { color: #fff; }
.fl-band .fl-section-header__title::before { background: var(--fl-primary); }
.fl-band .fl-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.fl-band .fl-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}
.fl-band .fl-card__title,
.fl-band .fl-card__title a { color: #fff; }
.fl-band .fl-card__excerpt { color: rgba(255,255,255,.7); }
.fl-band .fl-meta { color: rgba(255,255,255,.5); }
.fl-band .fl-badge--outline { color: var(--fl-accent); border-color: var(--fl-accent); }
.fl-band .fl-btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.fl-band .fl-btn--ghost:hover { border-color: var(--fl-primary); color: var(--fl-primary); }

/* --------------------------------------------------
   15. PROSE / ARTICLE BODY
   -------------------------------------------------- */
.fl-prose {
  max-width: 740px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--fl-text-secondary);
}
.fl-prose h2 {
  font-family: var(--fl-font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--fl-text);
  margin: 52px 0 18px;
}
.fl-prose h3 {
  font-family: var(--fl-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--fl-text);
  margin: 40px 0 14px;
}
.fl-prose h4 {
  font-family: var(--fl-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fl-text);
  margin: 32px 0 12px;
}
.fl-prose p { margin-bottom: 22px; }
.fl-prose img { border-radius: var(--fl-radius); margin: 36px 0; }
.fl-prose ul, .fl-prose ol { margin: 0 0 22px 24px; }
.fl-prose ul { list-style: disc; }
.fl-prose ol { list-style: decimal; }
.fl-prose li { margin-bottom: 10px; }
.fl-prose blockquote {
  border-left: 4px solid var(--fl-primary);
  padding: 20px 28px;
  margin: 36px 0;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fl-text);
  background: var(--fl-bg);
  border-radius: 0 var(--fl-radius-sm) var(--fl-radius-sm) 0;
}
.fl-prose a {
  color: var(--fl-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fl-prose pre {
  background: var(--fl-surface);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius-sm);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
}
.fl-prose code {
  background: rgba(var(--fl-primary-rgb),.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .9em;
}
.fl-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.fl-prose th,
.fl-prose td {
  padding: 12px 16px;
  border: 1px solid var(--fl-line);
  text-align: left;
}
.fl-prose th {
  background: var(--fl-surface);
  font-weight: 600;
}

/* Dropcap */
.fl-prose--dropcap > p:first-of-type::first-letter {
  float: left;
  font-family: var(--fl-font-display);
  font-size: 4.2rem;
  font-weight: 700;
  line-height: .85;
  margin: 4px 14px 0 0;
  color: var(--fl-primary);
}

/* --------------------------------------------------
   16. AUTHOR BOX
   -------------------------------------------------- */
.fl-author {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: var(--fl-surface);
  border-radius: var(--fl-radius);
  border: 2px solid var(--fl-line);
  margin: 52px 0;
}
.fl-author__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--fl-line);
  border: 3px solid var(--fl-primary);
}
.fl-author__name {
  font-family: var(--fl-font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.fl-author__bio {
  font-size: 14px;
  color: var(--fl-muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* --------------------------------------------------
   17. SHARE BUTTONS
   -------------------------------------------------- */
.fl-share { display: flex; align-items: center; gap: 12px; }
.fl-share__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--fl-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fl-share__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fl-bg);
  color: var(--fl-text-secondary);
  border: 2px solid var(--fl-line);
  transition: all var(--fl-transition);
}
.fl-share__btn:hover {
  background: var(--fl-primary);
  color: #fff;
  border-color: var(--fl-primary);
  transform: translateY(-2px);
}
.fl-share__btn svg { width: 16px; height: 16px; fill: currentColor; }

/* --------------------------------------------------
   18. SIDEBAR
   -------------------------------------------------- */
.fl-sidebar { position: sticky; top: calc(var(--fl-header-h) + 28px); }
.fl-sidebar__block { margin-bottom: 36px; }
.fl-sidebar__title {
  font-family: var(--fl-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--fl-primary);
}

/* --------------------------------------------------
   19. NEWSLETTER CTA
   -------------------------------------------------- */
.fl-newsletter {
  background: var(--fl-accent-gradient);
  border-radius: var(--fl-radius);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fl-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.fl-newsletter__title {
  font-family: var(--fl-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.fl-newsletter__desc {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 28px;
  position: relative;
}
.fl-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.fl-newsletter__input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--fl-radius-sm);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color var(--fl-transition), background var(--fl-transition);
}
.fl-newsletter__input::placeholder { color: rgba(255,255,255,.6); }
.fl-newsletter__input:focus { border-color: #fff; background: rgba(255,255,255,.2); }
.fl-newsletter__submit {
  padding: 14px 28px;
  background: #fff;
  color: var(--fl-primary);
  border: none;
  border-radius: var(--fl-radius-sm);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition);
}
.fl-newsletter__submit:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* --------------------------------------------------
   20. PAGINATION
   -------------------------------------------------- */
.fl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.fl-pagination a, .fl-pagination span {
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fl-radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--fl-text);
  border: 2px solid var(--fl-line);
  transition: all var(--fl-transition);
}
.fl-pagination a:hover {
  border-color: var(--fl-primary);
  color: var(--fl-primary);
  background: rgba(var(--fl-primary-rgb),.06);
}
.fl-pagination .is-active {
  background: var(--fl-accent-gradient);
  color: #fff;
  border-color: transparent;
}
.fl-pagination__dots {
  min-width: auto;
  border: none;
  background: none;
  color: var(--fl-text-muted);
  font-size: 18px;
  letter-spacing: 2px;
  padding: 0 4px;
}
.fl-pagination__arrow {
  font-size: 16px;
  font-weight: 700;
}

/* --------------------------------------------------
   21. FOOTER
   -------------------------------------------------- */
.fl-footer {
  background: #0a0e1a;
  color: #ccc;
  padding: 0;
  position: relative;
}
.fl-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--fl-accent-gradient);
}
[data-theme="dark"] .fl-footer { background: #050508; }
.fl-footer__inner { padding: 64px 0 0; }
.fl-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.fl-footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #7a8599;
  margin-top: 18px;
}
.fl-footer__logo img { height: 32px; width: auto; }
.fl-footer__heading {
  font-family: var(--fl-font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.fl-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--fl-primary);
  border-radius: 3px;
}
.fl-footer__links li { margin-bottom: 12px; }
.fl-footer__links a {
  color: #7a8599;
  font-size: 14px;
  transition: color var(--fl-transition), padding-left var(--fl-transition);
}
.fl-footer__links a:hover { color: var(--fl-primary); padding-left: 6px; }
.fl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
  color: #4a5568;
}
.fl-footer__social { display: flex; gap: 18px; }
.fl-footer__social a {
  color: #4a5568;
  transition: color var(--fl-transition), transform var(--fl-transition);
}
.fl-footer__social a:hover { color: var(--fl-primary); transform: translateY(-2px); }
.fl-footer__social svg { width: 20px; height: 20px; fill: currentColor; }

/* --------------------------------------------------
   22. FAQ / ACCORDION
   -------------------------------------------------- */
.fl-accordion { max-width: 800px; }
.fl-accordion__item { border-bottom: 1px solid var(--fl-line); }
.fl-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--fl-font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--fl-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--fl-transition);
}
.fl-accordion__trigger:hover { color: var(--fl-primary); }
.fl-accordion__icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex-shrink: 0;
  background: rgba(var(--fl-primary-rgb),.08);
  border-radius: 50%;
}
.fl-accordion__icon::before,
.fl-accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--fl-primary);
  border-radius: 2px;
  transition: transform var(--fl-transition);
}
.fl-accordion__icon::before {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.fl-accordion__icon::after {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.fl-accordion__item.is-open .fl-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fl-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.fl-accordion__panel-inner {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fl-text-secondary);
}

/* --------------------------------------------------
   23. CONTACT PAGE
   -------------------------------------------------- */
.fl-contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.fl-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  border-radius: var(--fl-radius);
  border: 1px solid var(--fl-line);
  background: var(--fl-bg);
  text-decoration: none;
  transition: transform var(--fl-transition), box-shadow var(--fl-transition), border-color var(--fl-transition);
}
.fl-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--fl-shadow-lg);
  border-color: var(--fl-primary);
}
.fl-contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fl-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.fl-contact-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--fl-text-muted);
}
.fl-contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fl-secondary);
}
.fl-contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--fl-radius);
  background: var(--fl-surface, #fff);
  border: 1px solid var(--fl-line);
  box-shadow: var(--fl-shadow);
}
.fl-contact-form-header {
  text-align: center;
  margin-bottom: 36px;
}
.fl-contact-form-desc {
  font-size: 15px;
  color: var(--fl-text-muted);
  margin-top: 8px;
}
.fl-contact-form { max-width: none; }
.fl-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .fl-form__row { grid-template-columns: 1fr; }
  .fl-contact-form-wrap { padding: 28px 20px; }
}
.fl-contact-success {
  margin-top: 24px;
  padding: 24px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--fl-radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #065f46;
}
.fl-contact-success svg { flex-shrink: 0; stroke: #059669; }
.fl-contact-error {
  margin-top: 24px;
  padding: 24px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--fl-radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #991b1b;
}
.fl-contact-error svg { flex-shrink: 0; stroke: #dc2626; }

.seo-captcha { display: block; margin: 0; padding: 0; }
.seo-captcha-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.seo-captcha-q { font-size: 14px; color: var(--fl-text-secondary, #64748b); font-weight: 600; white-space: nowrap; }
.seo-captcha-in { width: 64px !important; height: 42px !important; min-width: 64px; border: 1.5px solid var(--fl-line, #e2e8f0) !important; border-radius: var(--fl-radius-sm, 8px); padding: 0 8px !important; font-size: 16px; text-align: center; background: #fff !important; color: var(--fl-text, #1e293b); outline: none; transition: border-color .2s; box-sizing: border-box; }
.seo-captcha-in:focus { border-color: var(--fl-primary, #ff6b35) !important; box-shadow: 0 0 0 3px rgba(255,107,53,.12); }
.seo-captcha-in::placeholder { color: #cbd5e1; }
.seo-captcha-ref { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: none !important; background: transparent !important; color: #94a3b8; cursor: pointer; border-radius: 8px; padding: 0; transition: color .2s, background .2s; }
.seo-captcha-ref:hover { color: var(--fl-primary, #ff6b35); background: rgba(255,107,53,.06) !important; }
.seo-captcha-ref:focus { outline: none; }
.seo-captcha-hint { display: block; font-size: 11px; color: #94a3b8; margin-top: 6px; font-weight: 400; }

/* --------------------------------------------------
   23b. FORM BASE
   -------------------------------------------------- */
.fl-form { max-width: 640px; }
.fl-form__group { margin-bottom: 22px; }
.fl-form__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fl-text);
}
.fl-form__input,
.fl-form__textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--fl-surface);
  border: 2px solid var(--fl-line);
  border-radius: var(--fl-radius-sm);
  color: var(--fl-text);
  transition: border-color var(--fl-transition), box-shadow var(--fl-transition);
}
.fl-form__input:focus,
.fl-form__textarea:focus {
  outline: none;
  border-color: var(--fl-primary);
  box-shadow: 0 0 0 4px rgba(var(--fl-primary-rgb),.1);
}
.fl-form__textarea { min-height: 150px; resize: vertical; }

/* --------------------------------------------------
   24. PAGE HEADERS
   -------------------------------------------------- */
.fl-page-header {
  position: relative;
  padding: 96px 0;
  text-align: center;
  background: var(--fl-surface);
  border-bottom: 1px solid var(--fl-line);
}
.fl-page-header--image {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.fl-page-header--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,33,62,.8), rgba(15,52,96,.65));
}
.fl-page-header__inner { position: relative; z-index: 1; }

/* --------------------------------------------------
   25. CAROUSEL / SLIDER (bxSlider)
   -------------------------------------------------- */
.fl-slider { position: relative; }
.fl-slide {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  background-size: cover;
  background-position: center;
}
.fl-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--fl-secondary) 0%, rgba(22,33,62,.4) 40%, transparent 70%);
}
.fl-slide__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 640px;
}
.fl-slide__title {
  font-family: var(--fl-font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.fl-slide__title a { color: #fff; }
.fl-slide__title a:hover { color: var(--fl-accent); }

/* bxSlider base overrides */
.bx-wrapper {
  position: relative;
  border: none;
  background: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.bx-wrapper img { max-width: 100%; display: block; }
.bx-viewport { -webkit-transform: translateZ(0); }
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: 24px;
  width: 100%;
  z-index: 10;
}
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0;
  line-height: 0;
}
.bx-wrapper .bx-pager-item { display: inline-block; vertical-align: bottom; }
.bx-wrapper .bx-pager.bx-default-pager a {
  display: block;
  text-indent: -9999px;
  outline: 0;
  margin: 0 6px;
  background: rgba(255,255,255,.4);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: background .3s, transform .3s;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: var(--fl-primary);
  transform: scale(1.2);
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  outline: 0;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  text-indent: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  transition: background .3s, transform .3s;
  text-decoration: none;
}
.bx-wrapper .bx-controls-direction a:hover {
  background: var(--fl-primary);
  transform: translateY(-50%) scale(1.08);
}
.bx-wrapper .bx-controls-direction a svg {
  display: block;
  pointer-events: none;
}
.bx-wrapper .bx-controls-direction a.disabled { display: none; }
.bx-wrapper .bx-prev { left: 24px; }
.bx-wrapper .bx-next { right: 24px; }

/* --------------------------------------------------
   26. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------- */
.fl-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fl-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fl-hero .fl-reveal,
.fl-hero.fl-reveal,
.fl-intro .fl-reveal,
.fl-intro.fl-reveal,
.fl-slider .fl-reveal,
.fl-slider.fl-reveal,
.fl-slide .fl-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.fl-reveal--delay-1 { transition-delay: .1s; }
.fl-reveal--delay-2 { transition-delay: .2s; }
.fl-reveal--delay-3 { transition-delay: .3s; }

/* --------------------------------------------------
   27. ANIMATED GRADIENT BORDER
   -------------------------------------------------- */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.fl-gradient-border {
  position: relative;
  z-index: 0;
}
.fl-gradient-border::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--fl-radius) + 3px);
  background: linear-gradient(135deg, var(--fl-primary), var(--fl-accent), #FF8E53, var(--fl-primary));
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  z-index: -1;
}

/* --------------------------------------------------
   28. 404 PAGE
   -------------------------------------------------- */
.fl-404 { text-align: center; padding: 140px 0; }
.fl-404__code {
  font-family: var(--fl-font-display);
  font-size: 9rem;
  font-weight: 700;
  background: var(--fl-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fl-404__title {
  font-family: var(--fl-font-display);
  font-size: 1.6rem;
  margin: 20px 0 28px;
}

/* --------------------------------------------------
   29. RESPONSIVE BREAKPOINTS
   -------------------------------------------------- */
@media (max-width: 1024px) {
  .fl-grid--sidebar { grid-template-columns: 1fr; }
  .fl-sidebar { position: static; }
  .fl-featured { grid-template-columns: 1fr; grid-template-rows: auto; }
  .fl-featured > :first-child { grid-row: auto; }
  .fl-magazine-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .fl-magazine-grid > :first-child { grid-row: auto; }
  .fl-card--hero .fl-card__image { min-height: 320px; }
}

@media (max-width: 900px) {
  .fl-topbar { display: none; }
  .fl-header__nav { display: none; }
  .fl-header__cta { display: none; }
  .fl-nav-toggle { display: flex; }
  .fl-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--fl-header-h) 0 0;
    background: #fff;
    padding: 28px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    border-top: 3px solid var(--fl-primary);
  }
  .fl-header__nav.is-open .fl-header__link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid var(--fl-line);
    border-radius: 0;
    background: none;
  }
  .fl-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .fl-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fl-masonry { column-count: 2; }
  .fl-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .fl-card--horizontal { grid-template-columns: 1fr; }
  .fl-card--horizontal .fl-card__image { aspect-ratio: 16/9; }
  .fl-news-hero { grid-template-columns: 1fr; gap: 24px; }
  .fl-slide { min-height: 400px; padding: 40px 28px; }
  .fl-section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .fl-container { padding: 0 20px; }
  .fl-grid--2 { grid-template-columns: 1fr; }
  .fl-grid--3 { grid-template-columns: 1fr; }
  .fl-grid--4 { grid-template-columns: 1fr; }
  .fl-masonry { column-count: 1; }
  .fl-footer__grid { grid-template-columns: 1fr; }
  .fl-newsletter { padding: 40px 24px; border-radius: var(--fl-radius-sm); }
  .fl-newsletter__form { flex-direction: column; }
  .fl-intro { padding: 48px 0 40px; }
  .fl-section { padding: 56px 0; }
  .fl-section-header { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
  .fl-slide { min-height: 320px; padding: 32px 20px; }
  .fl-slide__title { font-size: 1.3rem; }
  .fl-404__code { font-size: 6rem; }
  .fl-card--hero .fl-card__image { min-height: 280px; }
  .fl-card--hero .fl-card__body { padding: 24px; }
  .fl-card--mini .fl-card__rank { font-size: 2rem; min-width: 40px; }
  .fl-author { flex-direction: column; text-align: center; }
  .fl-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* --------------------------------------------------
   30. POLL / ANKET
   -------------------------------------------------- */
.fl-poll {
  max-width: 680px;
  margin: 0 auto;
  background: var(--fl-surface);
  border: 1px solid var(--fl-line);
  border-radius: var(--fl-radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.fl-poll::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fl-primary), var(--fl-accent), var(--fl-primary));
  background-size: 200% 100%;
  animation: fl-poll-gradient 3s ease infinite;
}
@keyframes fl-poll-gradient {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.fl-poll__header { text-align: center; margin-bottom: 32px; }
.fl-poll__header .fl-badge { margin-bottom: 12px; }
.fl-poll__title {
  font-family: var(--fl-font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--fl-heading);
  margin: 0 0 8px;
}
.fl-poll__meta {
  font-size: 14px;
  color: var(--fl-muted);
}
.fl-poll__total {
  font-weight: 700;
  color: var(--fl-primary);
  font-size: 15px;
}

.fl-poll__options { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.fl-poll__option {
  position: relative;
  border-radius: var(--fl-radius-sm);
  overflow: hidden;
  background: var(--fl-bg);
  border: 1px solid var(--fl-line);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .2s;
}
.fl-poll__option:hover { border-color: var(--fl-primary); }

.fl-poll__bar {
  position: absolute;
  inset: 0;
  width: var(--poll-pct);
  background: linear-gradient(90deg, rgba(255,83,73,.08), rgba(255,83,73,.04));
  z-index: 0;
  transition: width .6s ease;
  border-radius: inherit;
}
.fl-poll__option--winner .fl-poll__bar {
  background: linear-gradient(90deg, rgba(255,83,73,.18), rgba(255,83,73,.06));
}

.fl-poll__option-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fl-poll__option-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--fl-heading);
}
.fl-poll__option--winner .fl-poll__option-name {
  color: var(--fl-primary);
}
.fl-poll__option-votes {
  font-size: 12px;
  color: var(--fl-muted);
}

.fl-poll__pct {
  position: relative;
  z-index: 1;
  font-family: var(--fl-font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fl-muted);
  min-width: 48px;
  text-align: right;
}
.fl-poll__option--winner .fl-poll__pct {
  color: var(--fl-primary);
  font-size: 22px;
}

.fl-poll__vote-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.fl-content-with-poll {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.fl-poll--inline {
  max-width: none;
  padding: 24px 20px;
  position: sticky;
  top: calc(var(--fl-header-h, 72px) + 16px);
}
.fl-poll--inline .fl-poll__title { font-size: 1rem; }
.fl-poll--inline .fl-poll__options { gap: 8px; margin-bottom: 16px; }
.fl-poll--inline .fl-poll__option { padding: 8px 12px; }
.fl-poll--inline .fl-poll__header { margin-bottom: 16px; }
.fl-poll--inline .fl-poll__pct { font-size: 14px; min-width: 36px; }
.fl-poll--inline .fl-poll__option--winner .fl-poll__pct { font-size: 16px; }
.fl-poll--inline .fl-poll__option-name { font-size: 13px; }
.fl-poll--inline .fl-poll__option-votes { font-size: 11px; }

@media (max-width: 900px) {
  .fl-content-with-poll { grid-template-columns: 1fr; }
  .fl-poll--inline { position: static; max-width: 400px; }
}
@media (max-width: 600px) {
  .fl-poll { padding: 28px 20px; }
  .fl-poll--inline { max-width: 100%; }
  .fl-poll__option { padding: 12px 14px; }
  .fl-pagination { flex-wrap: wrap; gap: 4px; }
  .fl-pagination a, .fl-pagination span { min-width: 32px; height: 32px; font-size: 12px; }
  .seo-captcha-q { white-space: normal; }
}

/* --------------------------------------------------
   31. SVG UTILITY
   -------------------------------------------------- */
.display-none { display: none; }
