/* ====================================================
   BesserNews KLARTEXT – TikTok-First Design System
   Version 1.0 – March 2026
   ==================================================== */

/* ---- Override: Remove old hero, simplify layout ---- */
.bn-hero-modern,
.bn-hero-categories { display: none !important; }

/* ==================================================
   SLIM HEADER – Ultra-thin modern nav bar
   ================================================== */

/* Override base header */
.bn-header.bn-header--slim {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 0;
}

.bn-nav.bn-nav--slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.35rem 1rem;
  gap: 0.75rem;
  height: 42px;
}

/* Logo – single-line flat wordmark */
.bn-header--slim .bn-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.bn-logo-text {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f172a;
  line-height: 1;
}

.bn-logo-accent {
  color: #6366f1;
}

/* Center nav pills */
.bn-header--slim .bn-nav-center {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.bn-nav-pill {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  text-decoration: none;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  transition: all 0.15s ease;
  line-height: 1;
}

.bn-nav-pill:hover,
.bn-nav-pill.active {
  color: #6366f1;
  background: rgba(99,102,241,0.08);
}

/* Right side icon buttons */
.bn-header--slim .bn-nav-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.bn-tiktok-btn,
.bn-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}

.bn-tiktok-btn:hover { color: #0f172a; background: rgba(0,0,0,0.05); }
.bn-search-btn:hover { color: #6366f1; background: rgba(99,102,241,0.08); }

/* Slim ticker */
.bn-ticker-slim {
  border-top: 1px solid rgba(0,0,0,0.04);
  background: rgba(248,250,252,0.7);
}

.bn-ticker-slim .bn-ticker-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.2rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.bn-ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f43f5e;
  flex-shrink: 0;
  animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bn-ticker-slim .bn-ticker-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  font-size: 0.68rem;
  font-weight: 500;
  color: #475569;
  line-height: 1;
  white-space: nowrap;
}

.bn-ticker-slim .bn-ticker-scroll::-webkit-scrollbar { display: none; }

.bn-ticker-slim .bn-ticker-scroll a {
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
  flex-shrink: 0;
}

.bn-ticker-slim .bn-ticker-scroll a:hover { color: #6366f1; }

/* Ticker items (rendered by layout.js) */
.bn-ticker-slim .bn-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #475569;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.15s;
}

.bn-ticker-slim .bn-ticker-item:hover { color: #6366f1; }

.bn-ticker-slim .bn-ticker-label {
  color: #94a3b8;
  font-variant-numeric: tabular-nums;
  font-size: 0.62rem;
}

.bn-ticker-slim .bn-ticker-text {
  font-size: 0.68rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .bn-nav.bn-nav--slim {
    padding: 0.3rem 0.75rem;
    height: 38px;
  }
  .bn-logo-text { font-size: 0.78rem; }
  .bn-nav-pill { font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  .bn-tiktok-btn, .bn-search-btn { width: 28px; height: 28px; }
  .bn-tiktok-btn svg, .bn-search-btn svg { width: 14px; height: 14px; }
  .bn-ticker-slim .bn-ticker-inner { padding: 0.15rem 0.75rem; }
  .bn-ticker-slim .bn-ticker-scroll { font-size: 0.62rem; }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .bn-header.bn-header--slim {
    background: rgba(15,23,42,0.92);
    border-bottom-color: rgba(255,255,255,0.06);
  }
  .bn-logo-text { color: #f1f5f9; }
  .bn-nav-pill { color: #94a3b8; }
  .bn-nav-pill:hover, .bn-nav-pill.active { color: #818cf8; background: rgba(129,140,248,0.1); }
  .bn-tiktok-btn, .bn-search-btn { color: #94a3b8; }
  .bn-tiktok-btn:hover { color: #f1f5f9; background: rgba(255,255,255,0.08); }
  .bn-search-btn:hover { color: #818cf8; background: rgba(129,140,248,0.1); }
  .bn-ticker-slim { background: rgba(15,23,42,0.5); border-top-color: rgba(255,255,255,0.04); }
  .bn-ticker-slim .bn-ticker-scroll { color: #94a3b8; }
  .bn-ticker-slim .bn-ticker-scroll a { color: #94a3b8; }
  .bn-ticker-slim .bn-ticker-scroll a:hover { color: #818cf8; }
}

/* ---- Hero ---- */
.kt-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kt-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(99,102,241,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244,63,94,0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(37,244,238,0.08) 0%, transparent 40%);
  animation: heroGlow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -2%) scale(1.02); }
}

.kt-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bn-bg, #f8fafc), transparent);
  pointer-events: none;
}

.kt-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.kt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,63,94,0.15);
  color: #f43f5e;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(244,63,94,0.3);
  backdrop-filter: blur(8px);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,63,94,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(244,63,94,0); }
}

.kt-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.kt-hero-title span {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kt-hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.kt-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kt-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.kt-hero-stat {
  text-align: center;
}

.kt-hero-stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.kt-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Buttons ---- */
.kt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--bn-font-sans);
}

.kt-btn--tiktok {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.kt-btn--tiktok::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  opacity: 0;
  transition: opacity 0.3s;
}

.kt-btn--tiktok:hover::before {
  opacity: 1;
}

.kt-btn--tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,244,238,0.3);
}

.kt-btn--tiktok i,
.kt-btn--tiktok span {
  position: relative;
  z-index: 1;
}

.kt-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.kt-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}

.kt-btn--accent {
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  color: #fff;
}

.kt-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,63,94,0.4);
}

.kt-btn--outline {
  background: transparent;
  color: var(--bn-brand-primary);
  border: 2px solid var(--bn-brand-primary);
}

.kt-btn--outline:hover {
  background: var(--bn-brand-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

.kt-btn--full {
  width: 100%;
  justify-content: center;
}

/* ---- Trending Strip ---- */
.kt-trending {
  padding: 1.25rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: var(--bn-header-height, 60px);
  z-index: 90;
}

.kt-trending-header h2 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bn-text, #0f172a);
}

.kt-trending-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.kt-trending-scroll::-webkit-scrollbar { display: none; }

.kt-trend-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: #f1f5f9;
  color: #334155;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: var(--bn-font-sans);
}

.kt-trend-pill:hover {
  background: #e0e7ff;
  color: #4338ca;
  border-color: #c7d2fe;
}

.kt-trend-pill.active {
  background: var(--bn-brand-primary, #6366f1);
  color: #fff;
  border-color: var(--bn-brand-primary);
  box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

/* ---- Feed Layout ---- */
.kt-feed {
  padding: 2.5rem 0 1rem;
}

.kt-feed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 1080px) {
  .kt-feed-layout {
    grid-template-columns: 1fr;
  }
  .kt-sidebar {
    display: none;
  }
}

.kt-feed-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ---- Feed Cards ---- */
.kt-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.kt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(99,102,241,0.18);
}

.kt-card--hero {
  border-radius: 1.5rem;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.12);
}

.kt-card--hero:hover {
  box-shadow: 0 30px 60px -15px rgba(99,102,241,0.25);
}

.kt-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #e2e8f0;
  display: block;
  text-decoration: none;
}

.kt-card--hero .kt-card-image {
  aspect-ratio: 2/1;
}

.kt-card-image img,
.kt-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.kt-card-image img {
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kt-card:hover .kt-card-image img {
  transform: scale(1.06);
}

.kt-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  letter-spacing: 0.03em;
}

.kt-card-badge--hot {
  background: linear-gradient(135deg, #f43f5e, #FE2C55);
  color: #fff;
  box-shadow: 0 4px 12px rgba(244,63,94,0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

.kt-card-badge--category {
  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kt-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.kt-card--hero .kt-card-content {
  padding: 1.75rem 2rem;
}

.kt-card-title {
  font-family: 'Poppins', var(--bn-font-sans, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin: 0;
  transition: color 0.2s;
}

.kt-card--hero .kt-card-title {
  font-size: 1.5rem;
}

.kt-card:hover .kt-card-title {
  color: var(--bn-brand-primary, #6366f1);
}

.kt-card-excerpt {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kt-card--hero .kt-card-excerpt {
  -webkit-line-clamp: 4;
  font-size: 0.95rem;
}

.kt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.kt-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.kt-card-share {
  display: flex;
  gap: 0.4rem;
}

.kt-card-share button {
  background: #f1f5f9;
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.kt-card-share button:hover {
  background: var(--bn-brand-primary, #6366f1);
  color: #fff;
  transform: scale(1.1);
}

/* ---- Inline Mobile CTA (shown between feed cards on mobile) ---- */
.kt-mobile-cta {
  display: none;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border-radius: 1.25rem;
  padding: 1.75rem;
  text-align: center;
  color: #fff;
}

@media (max-width: 1080px) {
  .kt-mobile-cta { display: block; }
}

.kt-mobile-cta h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.kt-mobile-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* ---- Sidebar ---- */
.kt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--bn-header-height, 60px) + 80px);
}

.kt-sidebar-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
}

.kt-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.kt-sidebar-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* TikTok Sidebar Card */
.kt-tiktok-card {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  color: #fff;
  border: 1px solid rgba(99,102,241,0.2);
}

.kt-tiktok-card p {
  color: rgba(255,255,255,0.7);
}

.kt-tiktok-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.kt-tiktok-header i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Newsletter Sidebar Card */
.kt-newsletter-card {
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-color: rgba(245,158,11,0.3);
}

.kt-newsletter-card h3 {
  color: #92400e;
}

.kt-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.kt-newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: var(--bn-font-sans);
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}

.kt-newsletter-form input:focus {
  border-color: var(--bn-brand-primary, #6366f1);
}

.kt-newsletter-form button {
  background: var(--bn-brand-primary, #6366f1);
  color: #fff;
  border: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}

.kt-newsletter-form button:hover {
  background: #4338ca;
  transform: scale(1.08);
}

.kt-newsletter-hint {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Tag Cloud */
.kt-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.kt-tag {
  padding: 0.3rem 0.7rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: default;
}

.kt-tag:hover {
  background: var(--bn-brand-primary, #6366f1);
  color: #fff;
}

/* ---- Newsletter Full-Width Section ---- */
.kt-newsletter-section {
  padding: 3rem 0;
  background: var(--bn-bg, #f8fafc);
}

.kt-newsletter-banner {
  background: linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
  border-radius: 1.5rem;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.kt-newsletter-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .kt-newsletter-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.kt-newsletter-content h2 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.kt-newsletter-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

/* ---- Load More ---- */
.kt-load-more {
  text-align: center;
  padding: 2rem 0 1rem;
}

/* ---- Loading ---- */
.kt-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: #94a3b8;
}

.kt-loading-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #e2e8f0;
  border-top-color: var(--bn-brand-primary, #6366f1);
  border-radius: 50%;
  animation: ktSpin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes ktSpin {
  to { transform: rotate(360deg); }
}

/* ---- Header Additions ---- */
.bn-tiktok-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.bn-tiktok-link:hover {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 15px rgba(37,244,238,0.3);
}

/* ---- Footer Additions ---- */
.bn-footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-radius: 1.25rem;
  border: 1px solid rgba(245,158,11,0.2);
}

@media (max-width: 768px) {
  .bn-footer-newsletter {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

.bn-footer-newsletter-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: #0f172a;
}

.bn-footer-newsletter-text p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.bn-footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.bn-footer-newsletter-form input {
  padding: 0.7rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: var(--bn-font-sans);
  outline: none;
  width: 240px;
  transition: border-color 0.2s;
}

.bn-footer-newsletter-form input:focus {
  border-color: var(--bn-brand-primary, #6366f1);
}

.bn-footer-newsletter-form button {
  padding: 0.7rem 1.5rem;
  background: var(--bn-brand-primary, #6366f1);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--bn-font-sans);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.bn-footer-newsletter-form button:hover {
  background: #4338ca;
  transform: translateY(-1px);
}

.bn-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.bn-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: #1e293b;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s;
}

.bn-social-link:hover {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  color: #fff;
  transform: scale(1.12);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .kt-hero {
    padding: 4.5rem 1rem 3.5rem;
  }
  .kt-hero-title {
    font-size: 2.2rem;
  }
  .kt-hero-sub {
    font-size: 1rem;
  }
  .kt-hero-stats {
    gap: 1.5rem;
  }
  .kt-hero-stat-value {
    font-size: 1.2rem;
  }
  .kt-card--hero .kt-card-title {
    font-size: 1.3rem;
  }
  .kt-card--hero .kt-card-content {
    padding: 1.25rem;
  }
  .kt-card--hero .kt-card-image {
    aspect-ratio: 16/9;
  }
  .kt-feed {
    padding: 1.5rem 0;
  }
  .kt-newsletter-banner {
    padding: 1.5rem 1.25rem;
  }
  .kt-newsletter-content h2 {
    font-size: 1.2rem;
  }
  .bn-footer-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .bn-footer-newsletter-form input {
    width: 100%;
  }
}

/* ========== BREADCRUMBS ========== */
.bn-breadcrumbs {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
}
.bn-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.bn-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary, #94a3b8);
}
.bn-breadcrumbs li + li::before {
  content: '\203A'; /* › */
  margin: 0 0.5rem;
  color: var(--text-tertiary, #64748b);
  font-weight: 300;
}
.bn-breadcrumbs a {
  color: var(--primary-color, #6366f1);
  text-decoration: none;
  transition: color 0.15s;
}
.bn-breadcrumbs a:hover {
  color: var(--primary-hover, #818cf8);
  text-decoration: underline;
}
.bn-breadcrumbs [aria-current="page"] {
  color: var(--text-primary, #e2e8f0);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
@media (max-width: 640px) {
  .bn-breadcrumbs {
    font-size: 0.78rem;
  }
  .bn-breadcrumbs [aria-current="page"] {
    max-width: 200px;
  }
}

/* ========== INLINE RELATED LINKS ========== */
.bn-inline-related {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  background: rgba(99, 102, 241, 0.06);
  border-left: 3px solid var(--primary-color, #6366f1);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
}
.bn-inline-related strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary, #e2e8f0);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.bn-inline-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bn-inline-related li {
  padding: 0.25rem 0;
}
.bn-inline-related li::before {
  content: '\203A';
  margin-right: 0.5rem;
  color: var(--primary-color, #6366f1);
  font-weight: 700;
}
.bn-inline-related a {
  color: var(--primary-color, #6366f1);
  text-decoration: none;
  transition: color 0.15s;
}
.bn-inline-related a:hover {
  color: var(--primary-hover, #818cf8);
  text-decoration: underline;
}
