/* ════════════════════════════════════════
   MARAQI FAKTLAR — Archive + Single
════════════════════════════════════════ */

/* ── ARCHIVE PAGE ── */
.fakt-archive-page { background: #fff; }

/* ── HERO ── */
.fakt-archive-hero {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.fakt-archive-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=1600&q=80') center/cover no-repeat;
  opacity: 0.35;
}
.fakt-archive-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(18,21,30,0.2) 0%, rgba(18,21,30,0.6) 50%, rgba(18,21,30,0.98) 100%);
}
.fakt-archive-hero-content {
  position: relative; z-index: 2;
  max-width: 860px; margin: 0 auto; width: 100%;
  padding: 48px 40px 40px; text-align: center;
}
.fakt-archive-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.2); border: 1px solid rgba(139,92,246,0.4);
  color: #c4b5fd; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.fakt-archive-hero-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #a78bfa;
  animation: fakt-pulse 2s infinite;
}
@keyframes fakt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.fakt-archive-hero-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -1px; margin-bottom: 12px;
}
.fakt-archive-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fakt-archive-hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.55);
  max-width: 500px; margin: 0 auto 24px; line-height: 1.6;
}
.fakt-archive-hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.fakt-archive-hero-stat { text-align: center; }
.fakt-archive-hero-stat-num {
  display: block; font-size: 28px; font-weight: 800;
  color: #fff; letter-spacing: -1px;
}
.fakt-archive-hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; }
.fakt-archive-hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── CATEGORY FILTER ── */
.fakt-cat-filter { background: #fff; padding: 24px 40px; border-bottom: 1px solid #f3f4f6; }
.fakt-cat-filter-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.fakt-cat-pill {
  font-size: 13px; font-weight: 600; color: #6b7280;
  background: #f9fafb; border: 1.5px solid #e5e7eb;
  padding: 7px 18px; border-radius: 100px; text-decoration: none;
  transition: all 0.2s;
}
.fakt-cat-pill:hover { color: #111; border-color: #9ca3af; }
.fakt-cat-pill--active { color: #fff; background: #111; border-color: #111; }

/* ── CATEGORY CARDS ── */
.fakt-cat-cards-wrap { background: #fff; padding: 0 0 64px; border-top: 1px solid #f3f4f6; }
.fakt-cat-cards-header { max-width: 1100px; margin: 0 auto; padding: 48px 40px 24px; }
.fakt-cat-cards-title { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #9ca3af; margin: 0; }
.fakt-cat-cards {
  display: flex; gap: 16px;
  padding: 0 40px;
  max-width: 1100px; margin: 0 auto;
  flex-wrap: wrap;
}
.fakt-cat-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 220px; flex: 1 1 200px; min-width: 180px; max-width: 260px;
  display: flex; align-items: flex-end;
  text-decoration: none; transition: transform 0.3s, box-shadow 0.3s;
}
.fakt-cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.fakt-cat-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.fakt-cat-card:hover .fakt-cat-card-bg { transform: scale(1.08); }
.fakt-cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 100%);
}
.fakt-cat-card--purple .fakt-cat-card-overlay { background: linear-gradient(to top, rgba(30,27,75,0.95) 0%, rgba(30,27,75,0.2) 100%); }
.fakt-cat-card--rose   .fakt-cat-card-overlay { background: linear-gradient(to top, rgba(76,5,25,0.95) 0%, rgba(76,5,25,0.2) 100%); }
.fakt-cat-card--teal   .fakt-cat-card-overlay { background: linear-gradient(to top, rgba(4,47,46,0.95) 0%, rgba(4,47,46,0.2) 100%); }
.fakt-cat-card--amber  .fakt-cat-card-overlay { background: linear-gradient(to top, rgba(69,26,3,0.95) 0%, rgba(69,26,3,0.2) 100%); }
.fakt-cat-card--blue   .fakt-cat-card-overlay { background: linear-gradient(to top, rgba(30,58,95,0.95) 0%, rgba(30,58,95,0.2) 100%); }
.fakt-cat-card-body { position: relative; z-index: 1; padding: 24px; width: 100%; }
.fakt-cat-card-icon { font-size: 32px; display: block; margin-bottom: 10px; line-height: 1; }
.fakt-cat-card-name { font-size: 20px; font-weight: 900; color: #fff; margin: 0 0 6px; letter-spacing: -0.5px; }
.fakt-cat-card-count { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ── ARCHIVE INNER ── */
.fakt-archive-page .fakt-archive-inner {
  max-width: 1100px !important; margin: 0 auto !important; padding: 64px 40px 80px !important;
  background: #fff !important;
}
.fakt-section-header {
  display: flex; align-items: center; gap: 16px; margin: 56px 0 40px;
}
.fakt-section-line { flex: 1; height: 1px; background: #f3f4f6; }

/* ── BIG GRADIENT CARDS ── */
.fakt-archive-page .fakt-big-row {
  display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 24px !important; margin-bottom: 24px !important;
}
.fakt-archive-page .fakt-big-card {
  border-radius: 20px !important; padding: 36px !important;
  position: relative !important; overflow: hidden !important;
  cursor: pointer !important; display: block !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
  background-color: transparent;
}
.fakt-archive-page .fakt-big-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}
.fakt-archive-page .fakt-big-card--purple { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%) !important; color: #fff !important; }
.fakt-archive-page .fakt-big-card--rose   { background: linear-gradient(135deg, #4c0519 0%, #9f1239 100%) !important; color: #fff !important; }
.fakt-archive-page .fakt-big-card--teal   { background: linear-gradient(135deg, #042f2e 0%, #115e59 100%) !important; color: #fff !important; }
.fakt-archive-page .fakt-big-card--amber  { background: linear-gradient(135deg, #451a03 0%, #92400e 100%) !important; color: #fff !important; }
.fakt-archive-page .fakt-big-card--blue   { background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%) !important; color: #fff !important; }

.fakt-archive-page .fakt-big-card-num {
  font-size: 11px !important; font-weight: 800 !important; letter-spacing: 2px !important;
  text-transform: uppercase !important; opacity: 0.45; margin-bottom: 20px !important;
  display: flex !important; align-items: center; gap: 8px; color: #fff !important;
}
.fakt-archive-page .fakt-big-card-num::after {
  content: ''; flex: 1; height: 1px; background: currentColor; opacity: 0.2;
}
.fakt-archive-page .fakt-big-card-icon {
  font-size: 40px !important; margin-bottom: 20px !important; display: block !important; line-height: 1;
}
.fakt-archive-page .fakt-big-card-title {
  font-size: 22px !important; font-weight: 800 !important; line-height: 1.25 !important;
  letter-spacing: -0.4px !important; margin-bottom: 14px !important; margin-top: 0 !important;
}
.fakt-archive-page .fakt-big-card-title a { color: #fff !important; text-decoration: none !important; }
.fakt-archive-page .fakt-big-card-text { font-size: 15px !important; line-height: 1.75 !important; opacity: 0.72; color: #fff !important; }
.fakt-archive-page .fakt-big-card-bg-num {
  position: absolute !important; bottom: -20px !important; right: 16px !important;
  font-size: 120px !important; font-weight: 900 !important; opacity: 0.06 !important;
  line-height: 1; pointer-events: none; letter-spacing: -4px; color: #fff !important;
}

/* ── SMALL WHITE CARDS ── */
.fakt-small-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px;
}
.fakt-archive-page .fakt-small-card {
  border-radius: 16px !important; padding: 28px !important; background: #fff !important;
  border: 1.5px solid #f3f4f6 !important; position: relative !important; overflow: hidden !important;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fakt-archive-page .fakt-small-card:hover {
  border-color: #e0d7ff !important;
  box-shadow: 0 8px 32px rgba(139,92,246,0.1) !important;
  transform: translateY(-3px) !important;
}
.fakt-archive-page .fakt-small-card-num {
  position: absolute !important; top: 20px !important; right: 20px !important;
  font-size: 28px !important; font-weight: 900 !important; color: #f3f4f6 !important;
  letter-spacing: -1px; line-height: 1;
}
.fakt-archive-page .fakt-small-card-accent { width: 40px !important; height: 4px !important; border-radius: 2px !important; margin-bottom: 16px !important; }
.fakt-archive-page .fakt-small-card-cat {
  display: block !important; font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  color: #9ca3af !important; margin-bottom: 10px !important;
}
.fakt-archive-page .fakt-small-card-title {
  font-size: 17px !important; font-weight: 800 !important; color: #111827 !important;
  margin-bottom: 10px !important; letter-spacing: -0.3px; line-height: 1.3 !important;
}
.fakt-archive-page .fakt-small-card-title a { color: #111827 !important; text-decoration: none !important; }
.fakt-archive-page .fakt-small-card:hover .fakt-small-card-title a { color: #6d28d9 !important; }
.fakt-archive-page .fakt-small-card-text { font-size: 14px !important; color: #6b7280 !important; line-height: 1.7 !important; }

/* ── INLINE CATEGORY STRIP ── */
.fakt-inline-cats-wrap { margin-top: 48px; margin-bottom: 20px; }
.fakt-archive-page .fakt-inline-cats { margin-bottom: 0 !important; padding-bottom: 56px !important; }
.fakt-inline-cats-header {
  display: flex; align-items: center; gap: 12px;
}
.fakt-inline-cats-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #a78bfa; flex-shrink: 0;
}
.fakt-inline-cats-label {
  font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: #9ca3af; white-space: nowrap;
}
.fakt-inline-cats-line { flex: 1; height: 1px; background: #f3f4f6; }

.fakt-archive-page .fakt-inline-cats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important; margin-bottom: 0 !important;
}
.fakt-archive-page .fakt-inline-cat {
  position: relative !important; border-radius: 18px !important;
  overflow: hidden !important; height: 180px !important;
  display: flex !important; align-items: flex-end !important;
  text-decoration: none !important;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fakt-archive-page .fakt-inline-cat:hover { transform: translateY(-3px) !important; box-shadow: 0 12px 32px rgba(0,0,0,0.25) !important; }
.fakt-inline-cat-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
.fakt-archive-page .fakt-inline-cat:hover .fakt-inline-cat-bg { transform: scale(1.06); }
.fakt-inline-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 100%); }
.fakt-archive-page .fakt-inline-cat--purple .fakt-inline-cat-overlay { background: linear-gradient(to top, rgba(30,27,75,0.92) 0%, rgba(30,27,75,0.15) 100%); }
.fakt-archive-page .fakt-inline-cat--rose   .fakt-inline-cat-overlay { background: linear-gradient(to top, rgba(76,5,25,0.92) 0%, rgba(76,5,25,0.15) 100%); }
.fakt-archive-page .fakt-inline-cat--teal   .fakt-inline-cat-overlay { background: linear-gradient(to top, rgba(4,47,46,0.92) 0%, rgba(4,47,46,0.15) 100%); }
.fakt-archive-page .fakt-inline-cat--amber  .fakt-inline-cat-overlay { background: linear-gradient(to top, rgba(69,26,3,0.92) 0%, rgba(69,26,3,0.15) 100%); }
.fakt-archive-page .fakt-inline-cat--blue   .fakt-inline-cat-overlay { background: linear-gradient(to top, rgba(30,58,95,0.92) 0%, rgba(30,58,95,0.15) 100%); }
.fakt-inline-cat-body { position: relative; z-index: 1; padding: 20px; display: flex; flex-direction: column; gap: 8px; width: 100%; }
.fakt-inline-cat-icon { font-size: 28px; line-height: 1; }
.fakt-inline-cat-name { font-size: 16px !important; font-weight: 900 !important; color: #fff !important; letter-spacing: -0.3px; line-height: 1.2; }

/* ── WIDE DARK CARD ── */
.fakt-archive-page .fakt-wide-card {
  display: flex !important; align-items: center !important; gap: 36px !important;
  background: linear-gradient(135deg, #12151e 0%, #1f2937 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 20px !important; padding: 48px !important;
  margin-bottom: 24px !important; text-decoration: none !important;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25) !important;
}
.fakt-archive-page .fakt-wide-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 56px rgba(0,0,0,0.4) !important;
}
.fakt-archive-page .fakt-wide-card-emoji {
  font-size: 72px !important; line-height: 1 !important; flex-shrink: 0 !important;
  filter: drop-shadow(0 4px 24px rgba(167,139,250,0.3));
}
.fakt-archive-page .fakt-wide-card-body { flex: 1; }
.fakt-archive-page .fakt-wide-card-label {
  font-size: 11px !important; font-weight: 700 !important; letter-spacing: 2px !important;
  text-transform: uppercase !important; color: #a78bfa !important;
  opacity: 0.7; margin-bottom: 10px !important; display: block !important;
}
.fakt-archive-page .fakt-wide-card-title {
  font-size: clamp(22px, 3vw, 32px) !important; font-weight: 900 !important;
  color: #fff !important; line-height: 1.2 !important; letter-spacing: -0.8px !important;
  margin-bottom: 12px !important; margin-top: 0 !important;
}
.fakt-archive-page .fakt-wide-card-text {
  font-size: 16px !important; color: rgba(255,255,255,0.48) !important; line-height: 1.7 !important;
}

/* ── DYK STRIP ── */
.fakt-archive-page .fakt-dyk-strip {
  display: flex !important; align-items: center !important; gap: 20px !important;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  border-radius: 16px !important; padding: 24px 32px !important;
  margin-bottom: 24px !important; text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px rgba(251,191,36,0.2) !important;
}
.fakt-archive-page .fakt-dyk-strip:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(251,191,36,0.3) !important;
}
.fakt-archive-page .fakt-dyk-icon {
  font-size: 36px !important; line-height: 1 !important; flex-shrink: 0 !important;
}
.fakt-archive-page .fakt-dyk-text {
  font-size: 18px !important; color: #78350f !important; line-height: 1.6 !important;
  margin: 0 !important;
}
.fakt-archive-page .fakt-dyk-text strong {
  font-weight: 800 !important; color: #92400e !important;
  margin-right: 6px !important;
}

/* ── BOTTOM TEXT ── */
.fakt-bottom-text { background: #f9fafb; border-top: 1px solid #f3f4f6; padding: 56px 40px; }
.fakt-bottom-text-inner { max-width: 760px; margin: 0 auto; font-size: 16px; color: #6b7280; line-height: 1.8; }
.fakt-bottom-text-inner p { margin-bottom: 16px; }
.fakt-bottom-text-inner strong { color: #111; }
.fakt-bottom-text-inner a { color: #7c3aed; text-decoration: underline; }

.fakt-empty {
  text-align: center; padding: 80px 0; color: #9ca3af; font-size: 15px;
}

/* ════════════════════════════════════════
   TAXONOMY — fakt_category PAGE
════════════════════════════════════════ */
.fakt-tax-page .fakt-archive-hero { position: relative; overflow: hidden; }
.fakt-tax-page .fakt-single-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; opacity: 0.4;
}

.fakt-tax-wrap {
  max-width: 1200px; margin: 0 auto; padding: 48px 40px 64px;
}

/* 4-column grid */
.fakt-tax-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card base */
.fakt-tax-card {
  position: relative; overflow: hidden;
  border-radius: 16px; padding: 28px 24px 36px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 260px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.fakt-tax-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

/* Color variants (same as fakt-big-card) */
.fakt-tax-card--purple { background: linear-gradient(135deg,#1e1b4b 0%,#312e81 50%,#4c1d95 100%); color: #fff; }
.fakt-tax-card--blue   { background: linear-gradient(135deg,#0c1445 0%,#1e3a8a 50%,#1d4ed8 100%); color: #fff; }
.fakt-tax-card--green  { background: linear-gradient(135deg,#042f2e 0%,#134e4a 50%,#0f766e 100%); color: #fff; }
.fakt-tax-card--amber  { background: linear-gradient(135deg,#1c1007 0%,#451a03 50%,#92400e 100%); color: #fff; }
.fakt-tax-card--rose   { background: linear-gradient(135deg,#1f0010 0%,#4c0519 50%,#9f1239 100%); color: #fff; }
.fakt-tax-card--default{ background: linear-gradient(135deg,#111827 0%,#1f2937 50%,#374151 100%); color: #fff; }

/* Numbering */
.fakt-tax-card-num {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; opacity: 0.6;
}

/* Icon */
.fakt-tax-card-icon { font-size: 32px; line-height: 1; }

/* Title */
.fakt-tax-card-title {
  font-size: 16px; font-weight: 800; line-height: 1.35;
  margin: 0; flex: 1;
}
.fakt-tax-card-title a { color: inherit; text-decoration: none; }
.fakt-tax-card-title a:hover { text-decoration: underline; }

/* Lead */
.fakt-tax-card-lead {
  font-size: 13px; line-height: 1.6; opacity: 0.75;
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Big background number */
.fakt-tax-card-bg-num {
  position: absolute; bottom: -10px; right: 10px;
  font-size: 80px; font-weight: 900; opacity: 0.06;
  line-height: 1; pointer-events: none; user-select: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .fakt-tax-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .fakt-tax-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .fakt-tax-wrap { padding: 32px 20px 48px; }
  .fakt-tax-card { min-height: 220px; padding: 20px 18px 28px; }
  .fakt-tax-card-icon { font-size: 26px; }
  .fakt-tax-card-title { font-size: 14px; }
}
@media (max-width: 480px) {
  .fakt-tax-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   SINGLE FAKT PAGE
════════════════════════════════════════ */
.fakt-single-page { background: #0a0a0a; }

#fakt-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  z-index: 9999; transition: width 0.1s linear;
}
.fakt-single-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: #0a0a0a;
}
.fakt-single-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  animation: fakt-slowzoom 16s ease-out forwards;
}
@keyframes fakt-slowzoom {
  from { transform: scale(1.08); } to { transform: scale(1.0); }
}
.fakt-single-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, #0a0a0a 0%, rgba(10,10,10,0.75) 40%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 60%);
}
.fakt-single-hero-content {
  position: relative; z-index: 2; padding: 0 80px 80px; max-width: 1000px;
}
.fakt-single-hero-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.fakt-single-hero-num {
  font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: #a78bfa; background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.25); padding: 5px 14px; border-radius: 100px;
}
.fakt-single-hero-sep { color: rgba(255,255,255,0.15); }
.fakt-single-hero-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.fakt-single-hero-title {
  font-size: clamp(36px, 5vw, 68px); font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -2.5px; margin-bottom: 32px; max-width: 820px;
}
.fakt-single-hero-bottom { display: flex; align-items: center; gap: 28px; }
.fakt-single-hero-author { display: flex; align-items: center; gap: 12px; }
.fakt-single-hero-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.15); }
.fakt-single-hero-author-name { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); }
.fakt-single-hero-author-date { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.fakt-single-hero-read { font-size: 13px; color: rgba(255,255,255,0.25); }

.fakt-single-scroll-hint {
  position: absolute; bottom: 32px; right: 80px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.fakt-single-scroll-text { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.2); writing-mode: vertical-rl; }
.fakt-single-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent); animation: fakt-scrollline 2s ease-in-out infinite; }
@keyframes fakt-scrollline { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:.1;transform:scaleY(.5)} }

body.single-fakt .fakt-single-content { background: #0a0a0a !important; }
body.single-fakt .fakt-single-inner { max-width: 720px !important; margin: 0 auto !important; padding: 80px 48px !important; background: #0a0a0a !important; }

body.single-fakt .fakt-single-inner p.fakt-single-lead {
  font-size: 24px !important; font-weight: 500 !important; color: rgba(255,255,255,0.75) !important;
  line-height: 1.7 !important; margin-bottom: 40px !important; letter-spacing: -0.3px !important;
  border-left: 3px solid #a78bfa !important; padding-left: 24px !important;
}
body.single-fakt .fakt-single-inner p { font-size: 18px !important; color: rgba(255,255,255,0.5) !important; line-height: 1.9 !important; margin-bottom: 28px !important; font-family: inherit !important; }
body.single-fakt .fakt-single-inner strong { color: rgba(255,255,255,0.85) !important; font-weight: 700 !important; }
body.single-fakt .fakt-single-inner h2 { font-size: 24px !important; font-weight: 800 !important; color: #fff !important; margin: 40px 0 16px !important; letter-spacing: -0.5px !important; }

body.single-fakt .fakt-single-stats {
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 2px !important; margin: 52px 0 !important; border-radius: 20px !important; overflow: hidden !important;
}
body.single-fakt .fakt-single-stat { background: #141414 !important; padding: 36px 24px !important; text-align: center !important; border: 1px solid rgba(255,255,255,0.05) !important; }
body.single-fakt .fakt-single-stat:first-child { border-radius: 20px 0 0 20px !important; }
body.single-fakt .fakt-single-stat:last-child  { border-radius: 0 20px 20px 0 !important; }
body.single-fakt .fakt-single-stat-val { display: block !important; font-size: 52px !important; font-weight: 900 !important; color: #fff !important; letter-spacing: -2px !important; line-height: 1 !important; margin-bottom: 8px !important; }
body.single-fakt .fakt-single-stat-label { font-size: 12px !important; color: rgba(255,255,255,0.3) !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 1px !important; }

body.single-fakt .fakt-single-pullquote { margin: 52px -48px !important; padding: 48px 72px !important; background: linear-gradient(135deg, #13111f, #0f0f1a) !important; border-top: 1px solid rgba(167,139,250,0.1) !important; border-bottom: 1px solid rgba(167,139,250,0.1) !important; position: relative !important; overflow: hidden !important; }
body.single-fakt .fakt-single-pullquote::before { content: '"'; position: absolute; top: -20px; left: 40px; font-size: 160px; color: rgba(167,139,250,0.07); font-family: Georgia,serif; line-height: 1; pointer-events: none; }
body.single-fakt .fakt-single-inner .fakt-single-pullquote .fakt-single-pullquote-text { font-size: 26px !important; font-weight: 700 !important; color: rgba(255,255,255,0.88) !important; line-height: 1.5 !important; letter-spacing: -0.5px !important; position: relative !important; z-index: 1 !important; margin: 0 !important; }

.fakt-single-img-break { margin: 52px -48px; }
.fakt-single-img-break img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.fakt-single-img-cap { font-size: 12px; color: rgba(255,255,255,0.22); padding: 12px 0 0 48px; }

.fakt-single-highlight { background: #111; border: 1px solid rgba(255,255,255,0.06); border-left: 3px solid #a78bfa; border-radius: 0 16px 16px 0; padding: 24px 28px; margin: 40px 0; }
.fakt-single-highlight-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #a78bfa; margin-bottom: 10px; }
.fakt-single-highlight-text { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; }

.fakt-single-related { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.05); padding: 72px 48px; }
.fakt-single-related-inner { max-width: 1100px; margin: 0 auto; }
.fakt-single-related-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.18); margin-bottom: 32px; }
.fakt-single-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fakt-related-card { background: #111; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px; text-decoration: none; display: block; transition: background 0.2s, transform 0.2s, border-color 0.2s; }
.fakt-related-card:hover { background: #161616; border-color: rgba(167,139,250,0.2); transform: translateY(-3px); }
.fakt-related-card-num { font-size: 11px; font-weight: 700; color: #a78bfa; letter-spacing: 1px; margin-bottom: 12px; opacity: 0.6; }
.fakt-related-card-title { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.65); line-height: 1.4; letter-spacing: -0.2px; margin-bottom: 10px; }
.fakt-related-card:hover .fakt-related-card-title { color: #fff; }
.fakt-related-card-cat { font-size: 11px; color: rgba(255,255,255,0.18); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .fakt-archive-hero { min-height: 200px !important; }
  .fakt-archive-hero-content { padding: 24px 20px 24px !important; }
  .fakt-archive-hero-title { font-size: 22px !important; letter-spacing: -0.5px !important; margin-bottom: 8px !important; }
  .fakt-archive-hero-desc { font-size: 13px !important; margin-bottom: 16px !important; }
  .fakt-archive-hero-stats { gap: 16px !important; }
  .fakt-archive-hero-stat-num { font-size: 20px !important; }
  .fakt-archive-hero-divider { height: 20px !important; }
  .fakt-cat-cards-wrap { padding: 0 0 40px; }
  .fakt-cat-cards { padding: 32px 16px 8px; gap: 12px; }
  .fakt-cat-card { height: 160px; min-width: calc(50% - 6px); max-width: calc(50% - 6px); }
  .fakt-cat-card-name { font-size: 17px !important; }
  .fakt-cat-card-icon { font-size: 26px !important; }
  .fakt-archive-page .fakt-archive-inner { padding: 32px 16px 48px !important; }
  .fakt-archive-page .fakt-big-row { grid-template-columns: 1fr !important; }
  .fakt-small-row { grid-template-columns: 1fr !important; }
  .fakt-archive-page .fakt-inline-cats { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .fakt-archive-page .fakt-inline-cat { height: 140px !important; }
  .fakt-archive-page .fakt-wide-card { flex-direction: column !important; padding: 24px !important; gap: 16px !important; }
  .fakt-wide-card-emoji { font-size: 48px !important; }
  .fakt-dyk-strip { padding: 20px !important; }
  .fakt-single-hero-content { padding: 0 20px 40px !important; }
  .fakt-single-hero { min-height: 70vh !important; }
  .fakt-single-hero-title { font-size: clamp(28px, 7vw, 44px) !important; letter-spacing: -1px !important; margin-bottom: 20px !important; }
  .fakt-single-scroll-hint { display: none; }
  .fakt-single-inner { padding: 48px 24px; }
  .fakt-single-page .fakt-single-pullquote { margin: 40px -20px !important; padding: 36px 28px !important; }
  .fakt-single-page .fakt-single-pullquote-text { font-size: 20px !important; }
  .fakt-single-img-break { margin: 40px -24px; }
  .fakt-single-img-cap { padding-left: 24px; }
  body.single-fakt .fakt-single-inner { padding: 48px 20px !important; }
  body.single-fakt .fakt-single-inner p.fakt-single-lead { font-size: 20px !important; }
  body.single-fakt .fakt-single-stats { grid-template-columns: 1fr !important; border-radius: 16px !important; }
  body.single-fakt .fakt-single-stat:first-child { border-radius: 16px 16px 0 0 !important; }
  body.single-fakt .fakt-single-stat:last-child  { border-radius: 0 0 16px 16px !important; }
  body.single-fakt .fakt-single-pullquote { margin: 40px -20px !important; padding: 36px 24px !important; }
  body.single-fakt .fakt-single-inner .fakt-single-pullquote .fakt-single-pullquote-text { font-size: 20px !important; }
  .fakt-single-related { padding: 48px 24px; }
  .fakt-single-related-grid { grid-template-columns: 1fr; }
}
