/* ============================================
   LIRAFOREX.COM — Turkish Forex Authority
   Dark theme / Turkish Red accent / Bordered
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --lf-bg: #0b0b0d;
  --lf-surface: #111114;
  --lf-card: #16161a;
  --lf-card-hover: #1c1c21;
  --lf-border: #2a2a30;
  --lf-border-accent: #dc2626;
  --lf-primary: #dc2626;
  --lf-primary-dark: #b91c1c;
  --lf-primary-glow: rgba(220, 38, 38, 0.12);
  --lf-cream: #fef3c7;
  --lf-cream-muted: #d4a853;
  --lf-warm: #f5e6d3;
  --text: #eae8e4;
  --text-muted: #9c9a96;
  --text-dim: #6b6964;
  --white: #f8f6f2;
  --danger: #ef4444;
  --success: #22c55e;
  --radius: 4px;
  --radius-lg: 8px;
  --border-width: 1px;
  --border-accent-width: 2px;
  --transition: 0.22s ease;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Karla', sans-serif;
  --max-width: 1180px;
  --article-width: 800px;
}

/* --- RESET --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background-color: var(--lf-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lf-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--lf-cream-muted);
}

ul, ol {
  padding-left: 1.5rem;
}

/* --- SUBTLE GRID PATTERN --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 80px 0;
}

.section--bordered {
  padding: 48px 0;
  border-top: var(--border-width) solid var(--lf-border);
  border-bottom: var(--border-width) solid var(--lf-border);
}

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-width) solid var(--lf-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header--scrolled {
  background: rgba(11, 11, 13, 0.96);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.header__logo:hover {
  color: var(--text);
}

.header__logo .accent {
  color: var(--lf-primary);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--lf-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.04em;
}

/* --- NAV --- */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text);
  background: rgba(220, 38, 38, 0.06);
}

.nav__cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--lf-primary);
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav__cta:hover {
  background: var(--lf-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* --- NAV TOGGLE (Mobile) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* --- HERO --- */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lf-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border: var(--border-width) solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: rgba(220, 38, 38, 0.04);
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lf-primary);
  animation: heroPulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--lf-primary);
}

.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: var(--border-width) solid transparent;
  border-radius: var(--radius);
  padding: 12px 28px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--lf-card);
  color: var(--text);
  border-color: var(--lf-border);
}

.btn--primary:hover {
  background: var(--lf-card-hover);
  border-color: var(--lf-primary);
  color: var(--white);
}

.btn--accent {
  background: var(--lf-primary);
  color: #fff;
  border-color: var(--lf-primary);
}

.btn--accent:hover {
  background: var(--lf-primary-dark);
  border-color: var(--lf-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.btn--large {
  padding: 14px 32px;
  font-size: 0.92rem;
}

.btn--outline {
  background: transparent;
  color: var(--lf-primary);
  border-color: var(--lf-primary);
}

.btn--outline:hover {
  background: var(--lf-primary);
  color: #fff;
}

/* --- STATS BAR --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lf-border);
  border: var(--border-width) solid var(--lf-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: var(--lf-surface);
  padding: 28px 20px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lf-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* --- SECTION HEADERS --- */
.section__header {
  margin-bottom: 48px;
}

.section__overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lf-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 560px;
}

/* --- ARTICLE CARDS GRID --- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.article-card {
  background: var(--lf-card);
  border: var(--border-width) solid var(--lf-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lf-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.article-card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-card:hover::before {
  opacity: 1;
}

.article-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lf-primary);
  background: var(--lf-primary-glow);
  padding: 3px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  align-self: flex-start;
}

.article-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.article-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.article-card__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lf-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.article-card__link:hover {
  gap: 10px;
  color: var(--lf-cream-muted);
}

.article-card__link::after {
  content: '\2192';
}

/* --- BROKER COMPARISON TABLE --- */
.broker-table-wrap {
  overflow-x: auto;
  border: var(--border-width) solid var(--lf-border);
  border-radius: var(--radius-lg);
}

.broker-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.broker-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--lf-surface);
  padding: 14px 18px;
  text-align: left;
  border-bottom: var(--border-width) solid var(--lf-border);
}

.broker-table td {
  padding: 16px 18px;
  border-bottom: var(--border-width) solid rgba(42, 42, 48, 0.5);
  color: var(--text);
  background: var(--lf-card);
}

.broker-table tr:last-child td {
  border-bottom: none;
}

.broker-table tr:hover td {
  background: var(--lf-card-hover);
}

.broker-table .broker-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.broker-table .cta-cell a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: var(--lf-primary);
  padding: 7px 16px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition);
  white-space: nowrap;
}

.broker-table .cta-cell a:hover {
  background: var(--lf-primary-dark);
  color: #fff;
}

/* --- REGULATORY NOTICE --- */
.reg-notice {
  background: var(--lf-surface);
  border: var(--border-width) solid var(--lf-border);
  border-left: var(--border-accent-width) solid var(--lf-cream-muted);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 40px 0;
}

.reg-notice__title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lf-cream-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.reg-notice__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- RISK DISCLAIMER --- */
.risk-disclaimer {
  background: var(--lf-surface);
  border: var(--border-width) solid var(--lf-border);
  border-top: var(--border-accent-width) solid var(--lf-primary);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  margin: 0;
}

.risk-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lf-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.risk-disclaimer__title::before {
  content: '\26A0';
}

.risk-disclaimer__text {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: var(--border-width) solid var(--lf-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--lf-card);
}

.faq-question {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}

.faq-question:hover {
  color: var(--white);
  background: rgba(220, 38, 38, 0.03);
}

.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform var(--transition), color var(--transition);
}

.faq-item.active .faq-question::after {
  content: '\2212';
  color: var(--lf-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- FOOTER --- */
.footer {
  background: var(--lf-surface);
  border-top: var(--border-width) solid var(--lf-border);
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__brand-name .accent {
  color: var(--lf-primary);
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 280px;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--lf-primary);
}

.footer__bottom {
  border-top: var(--border-width) solid var(--lf-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer__regulatory {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__regulatory a {
  color: var(--text-dim);
  text-decoration: underline;
  text-decoration-color: rgba(107, 105, 100, 0.3);
  text-underline-offset: 2px;
}

.footer__regulatory a:hover {
  color: var(--text-muted);
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--lf-card);
  border: var(--border-width) solid var(--lf-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  z-index: 900;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--lf-primary);
  color: #fff;
  border-color: var(--lf-primary);
}

/* --- REVEAL ANIMATION --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- RATE PULSE --- */
.rate-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

.rate-pulse.pulse-active {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

/* --- CROSSLINKS (Empire Network) --- */
.crosslinks {
  padding: 20px 0;
  border-top: var(--border-width) solid var(--lf-border);
  text-align: center;
}

.crosslinks__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  list-style: none;
  padding: 0;
}

.crosslinks__list a {
  font-size: 0.72rem;
  color: var(--text-dim);
  transition: color var(--transition);
}

.crosslinks__list a:hover {
  color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 13, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-width) solid var(--lf-border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius);
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__regulatory {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    padding: 20px 12px;
  }

  .stat__number {
    font-size: 1.4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .broker-table {
    font-size: 0.8rem;
  }

  .broker-table th,
  .broker-table td {
    padding: 10px 12px;
  }
}

/* --- ARTICLE PAGE STYLES --- */
.article-page {
  padding: 120px 0 60px;
}

.article-page .container {
  max-width: var(--article-width);
}

.article-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.article-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: var(--border-width) solid var(--lf-border);
  letter-spacing: -0.01em;
}

.article-page h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 12px;
}

.article-page p {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.article-page ul, .article-page ol {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.article-page li {
  margin-bottom: 6px;
}

.article-page .article-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: var(--border-width) solid var(--lf-border);
}

/* --- CTA BOX (Article) --- */
.cta-box {
  background: var(--lf-card);
  border: var(--border-width) solid var(--lf-border);
  border-left: 3px solid var(--lf-primary);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 32px 0;
}

.cta-box__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-box__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.cta-box .btn {
  font-size: 0.82rem;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 80px 0 0;
}

.breadcrumb__list {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.breadcrumb__list a {
  color: var(--text-dim);
}

.breadcrumb__list a:hover {
  color: var(--text-muted);
}

.breadcrumb__list li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--lf-border);
}
