/* ============================================================
   NoorFeed — Islamic Content Platform
   Design: Warm & Spiritual — Forest · Midnight · Cream · Mint
   by ch4.dev
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  /* Palette */
  --forest:      #2d5a3d;
  --forest-lt:   #3d7a54;
  --forest-dk:   #1a3826;
  --midnight:    #0e1a14;
  --midnight-2:  #1a2d21;
  --midnight-3:  #243b2b;
  --mint:        #7ec8a0;
  --mint-lt:     #a8dbb8;
  --mint-dim:    rgba(126,200,160,.15);
  --mint-glow:   rgba(126,200,160,.08);
  --cream:       #f5f0e8;
  --cream-2:     #ede6d8;
  --cream-3:     #e0d6c4;
  --ink:         #1a1a14;
  --ink-2:       #2a2a20;
  --ink-3:       #4a4a3a;
  --ink-4:       #7a7a68;
  --white:       #ffffff;
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,.15);

  /* Border */
  --border:      rgba(26,26,20,.08);
  --border-md:   rgba(26,26,20,.14);

  /* Typography */
  --arabic:      'Amiri', 'Scheherazade New', Georgia, serif;
  --serif:       'Lora', Georgia, 'Times New Roman', serif;
  --sans:        'DM Sans', system-ui, -apple-system, sans-serif;

  /* Shape */
  --radius:      4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.14);

  /* Layout */
  --max-w:       1200px;
  --max-w-text:  760px;
  --nav-h:       66px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
.nf-page *, .nf-page *::before, .nf-page *::after { box-sizing: border-box; }
.nf-page {
  margin: 0; padding: 0;
  font-family: var(--sans); color: var(--ink);
  background: var(--cream); line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.nf-page img { display: block; max-width: 100%; }
.nf-page a { color: inherit; }
.nf-page p { margin: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.nf-container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.nf-container--text { max-width: var(--max-w-text); margin: 0 auto; padding: 0 32px; }
.nf-section { padding: 80px 0; }
.nf-section--sm { padding: 52px 0; }
.nf-section--dark { background: var(--midnight); color: var(--cream); }

/* ── Navigation ─────────────────────────────────────────────── */
.nf-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(245,240,232,.94);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nf-nav__inner {
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nf-nav__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nf-nav__crescent { font-size: 22px; line-height: 1; }
.nf-nav__name {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  letter-spacing: .01em; line-height: 1; color: var(--forest);
}
.nf-nav__links { display: flex; align-items: center; gap: 2px; }
.nf-nav__link {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 400; letter-spacing: .02em;
  color: var(--ink-3); text-decoration: none;
  transition: color .18s, background .18s;
}
.nf-nav__link:hover { color: var(--forest); background: var(--mint-dim); }
.nf-nav__link--active { color: var(--forest); font-weight: 500; }
.nf-nav__link--cta {
  background: var(--forest); color: var(--cream) !important;
  padding: 8px 18px; margin-left: 6px; border-radius: var(--radius);
  transition: background .18s;
}
.nf-nav__link--cta:hover { background: var(--forest-lt); }
.nf-nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nf-nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .2s; }

/* ── Page Wrapper ───────────────────────────────────────────── */
.nf-page-body { padding-top: var(--nav-h); min-height: 100vh; }

/* ── Hero ───────────────────────────────────────────────────── */
.nf-hero {
  position: relative; overflow: hidden;
  background: var(--midnight); color: var(--cream);
  padding: 110px 0 90px;
}
.nf-hero__pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    repeating-linear-gradient(45deg, var(--mint) 0, var(--mint) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.nf-hero__glow {
  position: absolute; top: -100px; right: -60px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,200,160,.1) 0%, transparent 70%);
  pointer-events: none;
}
.nf-hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center;
}
.nf-hero__eyebrow {
  font-family: var(--arabic); font-size: 16px;
  color: var(--mint); margin-bottom: 20px; display: block;
  letter-spacing: .02em;
}
.nf-hero__h1 {
  font-family: var(--serif); font-size: clamp(40px,5.5vw,70px);
  font-weight: 600; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 24px;
}
.nf-hero__h1 em { font-style: italic; color: var(--mint); }
.nf-hero__sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(245,240,232,.6); max-width: 460px; margin-bottom: 36px;
}
.nf-hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.nf-hero__cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint); color: var(--midnight); text-decoration: none;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.nf-hero__cta-primary:hover { background: var(--mint-lt); transform: translateY(-2px); }
.nf-hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(245,240,232,.2); color: var(--cream); text-decoration: none;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 13px; font-weight: 400;
  transition: border-color .2s, background .2s;
}
.nf-hero__cta-secondary:hover { border-color: rgba(245,240,232,.4); background: rgba(245,240,232,.05); }
.nf-hero__channels { margin-top: 28px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nf-hero__channels-label {
  font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,240,232,.4);
}
.nf-hero__channel {
  padding: 6px 14px; border: 1px solid rgba(245,240,232,.15);
  border-radius: 20px; font-size: 12px; color: rgba(245,240,232,.7);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.nf-hero__channel:hover { border-color: var(--pc, var(--mint)); color: var(--pc, var(--mint)); }

/* Decorative dua card */
.nf-hero__deco { position: relative; }
.nf-hero__deco-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(126,200,160,.2);
  border-radius: var(--radius-md); padding: 28px 24px;
  backdrop-filter: blur(6px);
}
.nf-hero__deco-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 18px;
}
.nf-hero__deco-arabic {
  font-family: var(--arabic); font-size: 22px; line-height: 2;
  color: var(--cream); margin-bottom: 16px; text-align: right;
}
.nf-hero__deco-trans {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,.6); font-style: italic; margin-bottom: 12px;
}
.nf-hero__deco-source {
  font-size: 11px; color: var(--mint); font-weight: 500; letter-spacing: .04em;
}

/* ── Content Type Strip ─────────────────────────────────────── */
.nf-type-strip {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 1px;
  background: var(--border);
}
.nf-type-strip__item {
  background: var(--cream); padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  transition: background .2s, color .2s;
  border-bottom: 2px solid transparent;
}
.nf-type-strip__item:hover {
  background: var(--white);
  border-bottom-color: var(--accent, var(--forest));
  color: var(--accent, var(--forest));
}
.nf-type-strip__emoji { font-size: 26px; line-height: 1; }
.nf-type-strip__label { font-size: 12px; font-weight: 500; letter-spacing: .04em; }
.nf-type-strip__label-ar {
  font-family: var(--arabic); font-size: 13px; color: var(--ink-4);
  direction: rtl;
}

/* ── Today's Reminder ───────────────────────────────────────── */
.nf-today { padding: 72px 0; background: var(--cream-2); }
.nf-today__card {
  max-width: 780px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--accent, var(--forest));
  border-radius: var(--radius-md); padding: 36px 40px;
  box-shadow: var(--shadow);
}
.nf-today__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent, var(--forest)); margin-bottom: 20px;
}
.nf-today__badge-ar { font-family: var(--arabic); font-size: 14px; letter-spacing: 0; text-transform: none; }
.nf-today__arabic {
  font-family: var(--arabic); font-size: 28px; line-height: 2;
  color: var(--ink); margin-bottom: 20px; text-align: right;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.nf-today__title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  line-height: 1.3; margin-bottom: 10px;
}
.nf-today__title a { text-decoration: none; color: var(--ink); transition: color .2s; }
.nf-today__title a:hover { color: var(--forest); }
.nf-today__source {
  font-size: 13px; color: var(--ink-4); font-style: italic; margin-bottom: 24px;
}
.nf-today__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent, var(--forest)); color: var(--cream);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, transform .18s;
}
.nf-today__cta:hover { opacity: .9; transform: translateX(3px); }

/* ── Section Header ─────────────────────────────────────────── */
.nf-section-header { margin-bottom: 40px; }
.nf-section-header--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.nf-section-eyebrow {
  font-size: 10.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 8px;
}
.nf-section-title {
  font-family: var(--serif); font-size: clamp(26px,4vw,40px);
  font-weight: 600; letter-spacing: -.01em; line-height: 1.1;
  margin-bottom: 8px; color: inherit;
}
.nf-section-sub {
  font-size: 15px; font-weight: 300; color: var(--ink-3); line-height: 1.65;
}
.nf-divider {
  width: 36px; height: 2px; background: var(--forest); margin-bottom: 14px;
}
.nf-view-all {
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s;
}
.nf-view-all:hover { gap: 10px; }

/* ── Card Grid ──────────────────────────────────────────────── */
.nf-grid { display: grid; gap: 24px; grid-template-columns: repeat(3,1fr); }
.nf-grid.nf-cols-1 { grid-template-columns: 1fr; }
.nf-grid.nf-cols-2 { grid-template-columns: repeat(2,1fr); }
.nf-grid.nf-cols-3 { grid-template-columns: repeat(3,1fr); }

/* ── Card ───────────────────────────────────────────────────── */
.nf-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .22s;
  border-top: 3px solid var(--accent, var(--forest));
}
.nf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Story card has thumbnail */
.nf-card--story .nf-card__thumb-wrap {
  display: block; overflow: hidden; aspect-ratio: 16/9;
}
.nf-card--story .nf-card__thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.nf-card--story:hover .nf-card__thumb { transform: scale(1.04); }

.nf-card__type-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 0; gap: 8px;
}
.nf-card__type-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent, var(--forest));
}
.nf-card__type-emoji { font-size: 14px; }
.nf-card__type-label { }
.nf-card__type-label-ar {
  font-family: var(--arabic); font-size: 12px; letter-spacing: 0; text-transform: none;
  color: var(--ink-4); border-left: 1px solid var(--border-md); padding-left: 6px; margin-left: 2px;
}
.nf-card__read-time { font-size: 10px; color: var(--ink-4); white-space: nowrap; }

.nf-card__arabic {
  font-family: var(--arabic); font-size: 18px; line-height: 1.9;
  color: var(--ink); padding: 16px 18px 0; text-align: right;
  border-bottom: 1px solid var(--border); padding-bottom: 14px; margin: 8px 16px 0;
}
.nf-card__body {
  padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.nf-card__title {
  font-family: var(--serif); font-size: 17px; font-weight: 600; line-height: 1.3; margin: 0;
}
.nf-card__title a { text-decoration: none; color: var(--ink); transition: color .2s; }
.nf-card__title a:hover { color: var(--forest); }
.nf-card__excerpt {
  font-size: 13.5px; font-weight: 300; line-height: 1.65; color: var(--ink-3); flex: 1;
}
.nf-card__source {
  font-size: 11.5px; color: var(--ink-4); font-style: italic;
}
.nf-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-top: 4px; flex-wrap: wrap;
}
.nf-card__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.nf-card__cta {
  font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: var(--forest); text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .18s;
}
.nf-card__cta:hover { gap: 8px; }

/* ── Tags ───────────────────────────────────────────────────── */
.nf-tag {
  font-size: 10.5px; color: var(--ink-4); text-decoration: none;
  border: 1px solid var(--border-md); border-radius: 20px;
  padding: 2px 8px; transition: border-color .2s, color .2s;
}
.nf-tag:hover { border-color: var(--forest); color: var(--forest); }

/* ── Type Filter Nav (Feed page) ────────────────────────────── */
.nf-type-nav {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border-md); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 20px;
}
.nf-type-nav__item {
  padding: 10px 16px; font-size: 12.5px; font-weight: 400;
  color: var(--ink-3); text-decoration: none;
  border-right: 1px solid var(--border);
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nf-type-nav__item:last-child { border-right: none; }
.nf-type-nav__item:hover { background: var(--cream-2); color: var(--forest); }
.nf-type-nav__item--active { background: var(--forest); color: var(--cream); font-weight: 500; }

/* ── Theme Filter ───────────────────────────────────────────── */
.nf-theme-filter {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.nf-theme-filter__label {
  font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-4); padding-top: 7px; flex-shrink: 0;
}
.nf-theme-filter__pills { display: flex; gap: 6px; flex-wrap: wrap; }
.nf-pill {
  padding: 5px 12px; border: 1px solid var(--border-md); border-radius: 20px;
  font-size: 12px; color: var(--ink-3); text-decoration: none;
  transition: all .18s; white-space: nowrap;
}
.nf-pill:hover { border-color: var(--forest); color: var(--forest); }
.nf-pill--active { background: var(--forest); color: var(--cream); border-color: var(--forest); font-weight: 500; }

/* ── Themes Grid (home page) ────────────────────────────────── */
.nf-themes-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px,1fr)); gap: 10px;
}
.nf-theme-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: var(--ink);
  font-size: 13.5px; font-weight: 400;
  transition: border-color .2s, background .2s, color .2s;
}
.nf-theme-chip:hover { border-color: var(--forest); color: var(--forest); background: var(--mint-glow); }
.nf-theme-chip__count { font-size: 11px; color: var(--ink-4); }

/* ── Stats Bar ──────────────────────────────────────────────── */
.nf-stats {
  background: var(--midnight-2); color: var(--cream);
  padding: 44px 0; border-top: 1px solid rgba(255,255,255,.04);
}
.nf-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.nf-stats__num {
  font-family: var(--serif); font-size: 48px; font-weight: 600;
  color: var(--mint); line-height: 1; margin-bottom: 8px;
}
.nf-stats__label {
  font-size: 11px; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,240,232,.4);
}

/* ── Page Hero ──────────────────────────────────────────────── */
.nf-page-hero {
  background: var(--midnight); color: var(--cream);
  padding: 76px 0 56px; position: relative; overflow: hidden;
}
.nf-page-hero--stories { background: var(--forest-dk); }
.nf-page-hero__pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(45deg, var(--mint) 0, var(--mint) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.nf-page-hero__inner { position: relative; }
.nf-page-hero__eyebrow {
  font-family: var(--arabic); font-size: 15px; color: var(--mint);
  margin-bottom: 14px; display: block;
}
.nf-page-hero__title {
  font-family: var(--serif); font-size: clamp(32px,5vw,54px); font-weight: 600; line-height: 1.1;
  margin-bottom: 14px;
}
.nf-page-hero__sub {
  font-size: 15px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,.6); max-width: 560px; margin-bottom: 20px;
}
.nf-page-hero__clear {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(245,240,232,.45); text-decoration: none;
  border: 1px solid rgba(245,240,232,.15); padding: 5px 12px; border-radius: 2px;
  transition: color .18s, border-color .18s;
}
.nf-page-hero__clear:hover { color: var(--mint); border-color: var(--mint); }

/* ── Arabic Block (single post) ─────────────────────────────── */
.nf-arabic-block {
  background: linear-gradient(135deg, rgba(45,90,61,.06), rgba(126,200,160,.04));
  border: 1px solid rgba(45,90,61,.15);
  border-left: 4px solid var(--accent, var(--forest));
  border-radius: var(--radius-md); padding: 28px 32px;
  margin-bottom: 28px;
}
.nf-arabic-block__text {
  font-family: var(--arabic); font-size: 26px; line-height: 2.1;
  color: var(--ink); text-align: right; margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.nf-arabic-block__translit {
  font-size: 14px; font-style: italic; color: var(--ink-3); line-height: 1.7;
  margin-bottom: 12px;
}
.nf-arabic-block__citation {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.nf-arabic-block__narrator {
  font-size: 12.5px; color: var(--ink-3); font-weight: 400;
}
.nf-arabic-block__source {
  font-size: 12px; color: var(--accent, var(--forest)); font-weight: 500;
  background: var(--mint-dim); padding: 3px 10px; border-radius: 3px;
}

/* ── Content Type Badge ─────────────────────────────────────── */
.nf-content-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent, var(--forest)); margin-bottom: 14px;
  padding: 5px 12px; border: 1px solid rgba(45,90,61,.2);
  border-radius: 20px; background: var(--mint-glow);
}
.nf-content-badge__label-ar {
  font-family: var(--arabic); font-size: 14px; letter-spacing: 0;
  text-transform: none; color: var(--ink-4);
  border-left: 1px solid var(--border-md); padding-left: 8px; margin-left: 2px;
}
.nf-content-badge--hero { font-size: 11px; margin-bottom: 0; }

/* ── Story Moral ────────────────────────────────────────────── */
.nf-story-moral {
  background: var(--cream-2); border: 1px solid var(--border);
  border-left: 4px solid var(--accent, var(--forest));
  border-radius: var(--radius-md); padding: 24px 28px; margin: 32px 0;
}
.nf-story-moral__label {
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent, var(--forest)); margin-bottom: 10px;
}
.nf-story-moral__text {
  font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.75;
  color: var(--ink-2); font-style: italic;
}

/* ── Source Box ─────────────────────────────────────────────── */
.nf-source-box {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--mint-glow);
  border: 1px solid rgba(45,90,61,.15); border-radius: var(--radius);
  margin-bottom: 24px;
}
.nf-source-box__label {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); flex-shrink: 0;
}
.nf-source-box__value { font-size: 13.5px; color: var(--ink-2); }

/* ── Share Bar ──────────────────────────────────────────────── */
.nf-share-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px; background: var(--midnight);
  border-radius: var(--radius-md); margin: 28px 0; flex-wrap: wrap;
}
.nf-share-bar__label {
  font-size: 9.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--mint); flex-shrink: 0;
}
.nf-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); color: rgba(245,240,232,.75); text-decoration: none;
  font-size: 12.5px; font-weight: 400; background: none; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  font-family: var(--sans);
}
.nf-share-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.nf-share-btn:hover { border-color: var(--pc, var(--mint)); color: #fff; background: rgba(255,255,255,.04); }
.nf-share-btn--whatsapp { --pc: #25D366; }
.nf-share-btn--telegram { --pc: #2AABEE; }
.nf-share-btn--twitter  { --pc: #e5e5e5; }
.nf-share-btn--facebook { --pc: #1877F2; }
.nf-share-btn--copy     { --pc: var(--mint); }

/* Quick share in hero */
.nf-hero-share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); color: rgba(245,240,232,.4); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.nf-hero-share-btn svg { width: 14px; height: 14px; }
.nf-hero-share-btn:hover { border-color: var(--pc); color: var(--pc); }

/* ── Related Content ────────────────────────────────────────── */
.nf-related { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border); }
.nf-related__title {
  font-family: var(--serif); font-size: 26px; font-weight: 600; margin-bottom: 24px;
}

/* ── Single Post ────────────────────────────────────────────── */
.nf-single-hero {
  background: var(--midnight); color: var(--cream);
  padding: 64px 0 48px; position: relative; overflow: hidden;
}
.nf-single-hero__pattern {
  position: absolute; inset: 0; opacity: .03;
  background-image: repeating-linear-gradient(45deg, var(--mint) 0, var(--mint) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.nf-single-hero__inner { position: relative; max-width: 840px; }
.nf-single-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(245,240,232,.4); text-decoration: none;
  margin-bottom: 22px; transition: color .18s;
}
.nf-single-hero__back:hover { color: var(--mint); }
.nf-single-hero__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.nf-single-hero__read-time {
  font-size: 11.5px; color: rgba(245,240,232,.5);
}
.nf-single-hero__theme-tag {
  font-size: 11px; color: rgba(245,240,232,.45); text-decoration: none;
  padding: 2px 8px; border: 1px solid rgba(245,240,232,.12); border-radius: 2px;
  transition: color .18s, border-color .18s;
}
.nf-single-hero__theme-tag:hover { color: var(--mint); border-color: var(--mint); }
.nf-single-hero__title {
  font-family: var(--serif); font-size: clamp(28px,5vw,50px); font-weight: 600;
  line-height: 1.1; letter-spacing: -.01em; margin-bottom: 16px;
}
.nf-single-hero__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.nf-single-hero__date { font-size: 12px; color: rgba(245,240,232,.3); }
.nf-single-hero__share { display: flex; gap: 8px; }

.nf-single-body {
  max-width: 840px; margin: 0 auto; padding: 44px 32px 88px;
}
.nf-single-thumb { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 28px; }
.nf-single-thumb__img { width: 100%; height: auto; }
.nf-single-content {
  font-family: var(--sans); font-size: 16.5px; font-weight: 300;
  line-height: 1.85; color: var(--ink-2);
}
.nf-single-content p  { margin-bottom: 1.5em; }
.nf-single-content h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; margin: 2em 0 .75em; color: var(--ink); }
.nf-single-content h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 2em 0 .75em; color: var(--ink); }
.nf-single-content blockquote {
  border-left: 3px solid var(--forest); margin: 1.5em 0;
  padding: 10px 20px; color: var(--ink-3); font-style: italic;
  background: var(--mint-glow); border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Buttons ────────────────────────────────────────────────── */
.nf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border: none; border-radius: var(--radius);
  font-family: var(--sans); font-size: 12.5px; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .18s;
}
.nf-btn--primary { background: var(--midnight); color: var(--cream); }
.nf-btn--primary:hover { background: var(--midnight-2); transform: translateY(-1px); }
.nf-btn--forest { background: var(--forest); color: var(--cream); }
.nf-btn--forest:hover { background: var(--forest-lt); transform: translateY(-1px); }

/* ── Empty state ────────────────────────────────────────────── */
.nf-empty-state { text-align: center; padding: 80px 0; }
.nf-empty-state__icon { font-size: 52px; margin-bottom: 18px; opacity: .35; }
.nf-empty-state__title {
  font-family: var(--serif); font-size: 24px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}
.nf-empty-state__sub { font-size: 14px; color: var(--ink-4); }
.nf-empty-state__sub a { color: var(--forest); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.nf-cta-banner {
  background: var(--forest-dk); color: var(--cream);
  padding: 60px 0; text-align: center;
}
.nf-cta-banner__arabic {
  font-family: var(--arabic); font-size: 22px; line-height: 2;
  color: var(--mint-lt); margin-bottom: 16px;
}
.nf-cta-banner__trans {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(245,240,232,.55); max-width: 580px; margin: 0 auto;
  font-style: italic;
}

/* ── Features Grid ──────────────────────────────────────────── */
.nf-features {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius-md); overflow: hidden;
}
.nf-feature { background: var(--white); padding: 32px 28px; }
.nf-feature__icon { font-size: 28px; margin-bottom: 14px; }
.nf-feature__title {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--forest); margin-bottom: 10px;
}
.nf-feature__text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--ink-3); }

/* ── About Page ─────────────────────────────────────────────── */
.nf-about-hero {
  padding: 100px 0 72px; background: var(--midnight); color: var(--cream);
  text-align: center; position: relative; overflow: hidden;
}
.nf-about-hero__bg {
  position: absolute; font-size: 280px; opacity: .04;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; line-height: 1;
}
.nf-about-hero__crescent { font-size: 52px; margin-bottom: 16px; }
.nf-about-hero__name {
  font-family: var(--serif); font-size: clamp(36px,6vw,60px); font-weight: 600;
  color: var(--mint); margin-bottom: 10px;
}
.nf-about-hero__tagline-ar {
  font-family: var(--arabic); font-size: 22px; line-height: 1.8;
  color: rgba(245,240,232,.7); margin-bottom: 8px;
}
.nf-about-hero__role {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,240,232,.35);
}
.nf-about-bio {
  font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--ink-2);
  text-align: center;
}
.nf-about-socials { display: flex; justify-content: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.nf-about-social {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--border-md);
  border-radius: var(--radius); font-size: 13px; font-weight: 400;
  color: var(--ink-2); text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.nf-about-social svg { width: 15px; height: 15px; }
.nf-about-social:hover { border-color: var(--pc, var(--forest)); color: var(--pc, var(--forest)); background: rgba(0,0,0,.02); }

/* ── Pagination ─────────────────────────────────────────────── */
.nf-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 52px; }
.nf-pagination a, .nf-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border: 1px solid var(--border-md); border-radius: var(--radius);
  font-size: 13px; color: var(--ink-3); text-decoration: none;
  transition: background .18s, border-color .18s, color .18s;
}
.nf-pagination a:hover { border-color: var(--forest); color: var(--forest); }
.nf-pagination .current { background: var(--forest); border-color: var(--forest); color: var(--cream); }

/* ── Footer ─────────────────────────────────────────────────── */
.nf-footer {
  background: var(--midnight); color: var(--cream);
  padding: 52px 0 28px; border-top: 1px solid rgba(255,255,255,.05);
}
.nf-footer__grid {
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center; margin-bottom: 32px;
}
.nf-footer__brand { display: flex; align-items: center; gap: 10px; }
.nf-footer__brand-name {
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--mint);
}
.nf-footer__tagline { font-size: 12px; color: rgba(245,240,232,.3); margin-top: 4px; }
.nf-footer__tagline-ar {
  font-family: var(--arabic); font-size: 14px;
  color: rgba(245,240,232,.25); margin-top: 2px;
}
.nf-footer__socials { display: flex; gap: 10px; }
.nf-footer__social {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); color: rgba(245,240,232,.45); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.nf-footer__social svg { width: 15px; height: 15px; }
.nf-footer__social:hover { border-color: var(--pc, var(--mint)); color: var(--pc, var(--mint)); }
.nf-footer__bottom {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.nf-footer__copy { font-size: 12px; color: rgba(245,240,232,.25); }
.nf-footer__credit { font-size: 12px; color: rgba(245,240,232,.25); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes nf-fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nf-page-body > * { animation: nf-fade-up .5s ease both; }
.nf-hero__eyebrow { animation: nf-fade-up .5s .1s ease both; }
.nf-hero__h1      { animation: nf-fade-up .5s .2s ease both; }
.nf-hero__sub     { animation: nf-fade-up .5s .3s ease both; }
.nf-hero__actions { animation: nf-fade-up .5s .4s ease both; }
.nf-hero__deco    { animation: nf-fade-up .5s .3s ease both; }
.nf-card          { animation: nf-fade-up .4s ease both; }
.nf-card:nth-child(2) { animation-delay: .07s; }
.nf-card:nth-child(3) { animation-delay: .14s; }
.nf-card:nth-child(4) { animation-delay: .07s; }
.nf-card:nth-child(5) { animation-delay: .14s; }
.nf-card:nth-child(6) { animation-delay: .21s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .nf-grid.nf-cols-3 { grid-template-columns: repeat(2,1fr); }
  .nf-hero__inner { grid-template-columns: 1fr; }
  .nf-hero__deco { display: none; }
  .nf-stats__grid { grid-template-columns: repeat(2,1fr); }
  .nf-type-strip { grid-template-columns: repeat(3,1fr); }
  .nf-features { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nf-container, .nf-container--text { padding: 0 20px; }
  .nf-section { padding: 56px 0; }
  .nf-grid.nf-cols-2, .nf-grid.nf-cols-3 { grid-template-columns: 1fr; }
  .nf-type-strip { grid-template-columns: repeat(3,1fr); }
  .nf-features { grid-template-columns: 1fr; }
  .nf-footer__grid { grid-template-columns: 1fr; }
  .nf-today__card { padding: 24px 20px; }
  .nf-today__arabic { font-size: 22px; }
  .nf-arabic-block__text { font-size: 22px; }
  .nf-single-body { padding: 28px 20px 60px; }
  .nf-contact-grid { grid-template-columns: 1fr; }
  /* Mobile nav */
  .nf-nav__links {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 12px 20px; gap: 4px;
  }
  .nf-nav__links.is-open { display: flex; }
  .nf-nav__hamburger { display: flex; }
}
@media (max-width: 500px) {
  .nf-stats__grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .nf-type-strip { grid-template-columns: repeat(2,1fr); }
  .nf-about-socials { flex-direction: column; align-items: center; }
  .nf-hero__h1 { font-size: 36px; }
}


/* ============================================================
   BILINGUAL SYSTEM — RTL (Arabic default) / LTR (English)
   Root selector: html[dir="rtl"] cascades everywhere.
   Arabic text elements always stay RTL regardless of page dir.
   ============================================================ */

/* ── Language Toggle ─────────────────────────────────────────── */
/* Lang toggle is an <a> tag — works without JS */
.nf-lang-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border: 1px solid var(--border-md);
  border-radius: 20px; background: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; color: var(--ink-3);
  text-decoration: none;
  transition: border-color .2s, background .2s; flex-shrink: 0;
  line-height: 1;
}
.nf-lang-toggle:hover { border-color: var(--forest); background: var(--mint-glow); }
.nf-lang-toggle__label {
  font-weight: 400; color: var(--ink-4); transition: color .18s, font-weight .18s;
  line-height: 1;
}
.nf-lang-toggle__label--ar { font-family: var(--arabic); font-size: 15px; }
.nf-lang-toggle__label--en { font-size: 11px; letter-spacing: .04em; }
.nf-lang-toggle__label--active { color: var(--forest); font-weight: 700; }
.nf-lang-toggle__sep { color: var(--border-md); font-size: 11px; line-height: 1; }

/* ── Nav right side wrapper ──────────────────────────────────── */
.nf-nav__right {
  display: flex; align-items: center; gap: 8px;
}

/* ── RTL root: flip the whole layout ────────────────────────── */

/* Nav */
html[dir="rtl"] .nf-nav__inner { flex-direction: row-reverse; }
html[dir="rtl"] .nf-nav__right { flex-direction: row-reverse; }
html[dir="rtl"] .nf-nav__links { flex-direction: row-reverse; }

/* Section headers */
html[dir="rtl"] .nf-section-header { text-align: right; }
html[dir="rtl"] .nf-section-header--row { flex-direction: row-reverse; }
html[dir="rtl"] .nf-section-eyebrow,
html[dir="rtl"] .nf-section-title,
html[dir="rtl"] .nf-section-sub { text-align: right; }
html[dir="rtl"] .nf-divider { margin-left: 0; margin-right: 0; }
html[dir="rtl"] .nf-view-all { flex-direction: row-reverse; }
html[dir="rtl"] .nf-hero__eyebrow::before { display: none; }

/* Hero */
html[dir="rtl"] .nf-hero__inner { direction: rtl; }
html[dir="rtl"] .nf-hero__content { text-align: right; }
html[dir="rtl"] .nf-hero__sub { text-align: right; }
html[dir="rtl"] .nf-hero__actions { flex-direction: row-reverse; justify-content: flex-end; }
html[dir="rtl"] .nf-hero__channels { flex-direction: row-reverse; }

/* Type strip */
html[dir="rtl"] .nf-type-strip { flex-direction: row-reverse; }
html[dir="rtl"] .nf-type-strip__item { text-align: center; }

/* Cards */
html[dir="rtl"] .nf-card { text-align: right; }
html[dir="rtl"] .nf-card__type-bar { flex-direction: row-reverse; }
html[dir="rtl"] .nf-card__type-badge { flex-direction: row-reverse; }
html[dir="rtl"] .nf-card__body { text-align: right; }
html[dir="rtl"] .nf-card__footer { flex-direction: row-reverse; }
html[dir="rtl"] .nf-card__tags { flex-direction: row-reverse; }

/* Today */
html[dir="rtl"] .nf-today__card { text-align: right; }
html[dir="rtl"] .nf-today__badge { flex-direction: row-reverse; justify-content: flex-end; }

/* Page hero */
html[dir="rtl"] .nf-page-hero__inner { text-align: right; }
html[dir="rtl"] .nf-page-hero__eyebrow { text-align: right; }
html[dir="rtl"] .nf-page-hero__sub { text-align: right; }

/* Filter nav */
html[dir="rtl"] .nf-type-nav { flex-direction: row-reverse; }
html[dir="rtl"] .nf-type-nav__item {
  border-right: none; border-left: 1px solid var(--border);
}
html[dir="rtl"] .nf-type-nav__item:last-child { border-left: none; }
html[dir="rtl"] .nf-theme-filter { flex-direction: row-reverse; }
html[dir="rtl"] .nf-theme-filter__pills { flex-direction: row-reverse; flex-wrap: wrap; }

/* Stats */
html[dir="rtl"] .nf-stats__grid { direction: rtl; }

/* About */
html[dir="rtl"] .nf-about-hero__name,
html[dir="rtl"] .nf-about-hero__role { text-align: center; }
html[dir="rtl"] .nf-about-bio { text-align: right; font-family: var(--arabic), var(--sans); font-size: 17px; line-height: 2.1; }
html[dir="rtl"] .nf-about-socials { flex-direction: row-reverse; }
html[dir="rtl"] .nf-feature { text-align: right; }

/* Single post */
html[dir="rtl"] .nf-single-hero__inner { text-align: right; }
html[dir="rtl"] .nf-single-hero__meta { flex-direction: row-reverse; }
html[dir="rtl"] .nf-single-hero__bottom { flex-direction: row-reverse; }
html[dir="rtl"] .nf-single-hero__share { flex-direction: row-reverse; }
html[dir="rtl"] .nf-single-body { text-align: right; }
html[dir="rtl"] .nf-single-content { text-align: right; }
html[dir="rtl"] .nf-single-content blockquote { border-left: none; border-right: 3px solid var(--forest); }
html[dir="rtl"] .nf-arabic-block__citation { flex-direction: row-reverse; }
html[dir="rtl"] .nf-source-box { flex-direction: row-reverse; }
html[dir="rtl"] .nf-story-moral { text-align: right; }
html[dir="rtl"] .nf-share-bar { flex-direction: row-reverse; }
html[dir="rtl"] .nf-related { text-align: right; }

/* Footer */
html[dir="rtl"] .nf-footer__grid { flex-direction: row-reverse; }
html[dir="rtl"] .nf-footer__brand { flex-direction: row-reverse; }
html[dir="rtl"] .nf-footer__tagline { text-align: right; }
html[dir="rtl"] .nf-footer__bottom { flex-direction: row-reverse; }
html[dir="rtl"] .nf-footer__socials { flex-direction: row-reverse; }

/* Empty state + pagination: always neutral */
.nf-empty-state { text-align: center !important; }
.nf-pagination { direction: ltr; justify-content: center; }

/* ── Arabic text: ALWAYS RTL regardless of page direction ───── */
.nf-card__arabic,
.nf-today__arabic,
.nf-arabic-block__text,
.nf-hero__deco-arabic,
.nf-cta-banner__arabic,
.nf-about-hero__tagline-ar,
.nf-footer__tagline-ar {
  direction: rtl !important;
  text-align: right !important;
  font-family: var(--arabic) !important;
}

/* ── Arabic body: use Amiri as primary font ──────────────────── */
html[dir="rtl"] body,
html[dir="rtl"] .nf-page {
  font-family: var(--arabic), var(--sans);
}
html[dir="rtl"] .nf-nav__link,
html[dir="rtl"] .nf-card__excerpt,
html[dir="rtl"] .nf-card__cta,
html[dir="rtl"] .nf-section-sub,
html[dir="rtl"] .nf-hero__sub,
html[dir="rtl"] .nf-pill,
html[dir="rtl"] .nf-type-nav__item,
html[dir="rtl"] .nf-theme-chip__name,
html[dir="rtl"] .nf-share-btn span,
html[dir="rtl"] .nf-footer__copy,
html[dir="rtl"] .nf-footer__credit {
  font-family: var(--arabic), var(--sans);
}
/* Keep serif titles using Amiri for Arabic */
html[dir="rtl"] .nf-section-title,
html[dir="rtl"] .nf-card__title,
html[dir="rtl"] .nf-today__title,
html[dir="rtl"] .nf-single-hero__title,
html[dir="rtl"] .nf-related__title,
html[dir="rtl"] .nf-feature__title,
html[dir="rtl"] .nf-about-hero__name {
  font-family: var(--arabic), var(--serif);
  letter-spacing: 0;
}

/* ── Card entrance animation ─────────────────────────────────── */
.nf-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .42s ease, transform .42s ease, box-shadow .25s;
}
.nf-card--visible { opacity: 1; transform: translateY(0); }
.nf-card:nth-child(2) { transition-delay: .07s; }
.nf-card:nth-child(3) { transition-delay: .14s; }
.nf-card:nth-child(4) { transition-delay: .07s; }
.nf-card:nth-child(5) { transition-delay: .14s; }
.nf-card:nth-child(6) { transition-delay: .21s; }
.nf-card:nth-child(7) { transition-delay: .07s; }
.nf-card:nth-child(8) { transition-delay: .14s; }
.nf-card:nth-child(9) { transition-delay: .21s; }

/* ── Responsive RTL fixes ────────────────────────────────────── */
@media (max-width: 760px) {
  html[dir="rtl"] .nf-nav__links {
    left: 0; right: 0;
    align-items: flex-end;
  }
  html[dir="rtl"] .nf-nav__inner { flex-direction: row; }
  html[dir="rtl"] .nf-nav__right { flex-direction: row; }
  html[dir="rtl"] .nf-type-strip { direction: rtl; }
  html[dir="rtl"] .nf-hero__actions { flex-direction: column; align-items: flex-end; }
}

/* ── Nav active state — extra specificity for combined classes ── */
.nf-nav__link--active:not(.nf-nav__link--cta) {
  color: var(--forest);
  font-weight: 600;
  background: var(--mint-glow);
}
.nf-nav__link--cta.nf-nav__link--active,
.nf-nav__link--cta:not(.nf-nav__link--active) {
  background: var(--forest);
  color: var(--cream) !important;
}
/* Underline indicator for active non-CTA links */
.nf-nav__link--active:not(.nf-nav__link--cta) {
  position: relative;
}
.nf-nav__link--active:not(.nf-nav__link--cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

/* ── Footer credit row ───────────────────────────────────────── */
.nf-footer__meta {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.nf-footer__sep { color: rgba(245,240,232,.2); font-size: 11px; }
.nf-footer__built-by { font-size: 12px; color: rgba(245,240,232,.3); }
.nf-footer__built-by a {
  color: var(--mint); text-decoration: none;
  transition: color .18s;
}
.nf-footer__built-by a:hover { color: var(--mint-lt); }

/* RTL footer meta */
html[dir="rtl"] .nf-footer__meta { flex-direction: row-reverse; }
html[dir="rtl"] .nf-footer__bottom { flex-direction: row-reverse; }
