/* ==========================================================================
   Mebo Habits — Healthline Authentic Design System 🌿
   Authoritative Editorial Layout, Evidence-Based Styling, 100% SVG Icons, RTL-First
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Readex+Pro:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-arabic: 'Readex Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Mebo Habits Official Orange Palette 🧡 */
  --color-primary: #ea580c;          /* Deep rich Healthline orange */
  --color-primary-hover: #c2410c;    /* Orange 700 */
  --color-primary-active: #9a3412;   /* Orange 800 */
  --color-primary-light: #fff7ed;    /* Warm peach / orange-50 surface */
  --color-primary-soft: #ffedd5;     /* Orange-100 */
  --color-primary-border: #fed7aa;   /* Orange-200 */
  --color-primary-glow: rgba(234, 88, 12, 0.22);

  --color-amber: #f59e0b;            /* Secondary gold amber */
  --color-coral: #e65c4f;            /* Accent */
  --color-emerald: #059669;          /* Evidence checkmark green */
  --color-emerald-light: #ecfdf5;
  --color-emerald-border: #a7f3d0;

  /* Healthline Editorial Surfaces */
  --bg-page: #f8fafc;                /* Crisp clean off-white editorial background */
  --bg-surface: #ffffff;             /* Pure white cards and containers */
  --bg-subtle: #fff7ed;              /* Soft warm peach container */
  --bg-header: #000000;              /* Healthline signature jet black header */
  --bg-footer: #000000;              /* Healthline signature black footer */

  /* Typography Colors */
  --text-main: #111827;              /* High-contrast deep slate/charcoal */
  --text-secondary: #374151;         /* Body copy */
  --text-muted: #6b7280;             /* Secondary metadata */
  --text-light: #9ca3af;             /* Subtle labels */
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #cbd5e1;

  /* Borders & Dividers */
  --border-color: #e5e7eb;           /* Clean editorial border */
  --border-subtle: #ffedd5;
  --border-dark: #1e293b;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  --gradient-orange: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  --gradient-sunset: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  --gradient-hero: linear-gradient(135deg, #ea580c 0%, #1e293b 100%);
  --gradient-soft: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 4px 12px -2px rgba(17, 24, 39, 0.08), 0 2px 4px -2px rgba(17, 24, 39, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(17, 24, 39, 0.1), 0 4px 6px -2px rgba(17, 24, 39, 0.05);
  --shadow-primary: 0 8px 20px -3px rgba(234, 88, 12, 0.28);
  --shadow-orange: 0 8px 20px -3px rgba(234, 88, 12, 0.28);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* SVG Icon Base Styling */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.svg-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}


/* ==========================================================================
   2. Authoritative Black Header (Healthline Style)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  color: var(--text-on-dark);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text-on-dark);
}

.brand-logo-emblem {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.brand-logo-emblem .svg-icon {
  width: 22px;
  height: 22px;
}

.brand-logo span {
  font-family: var(--font-sans);
  font-weight: 800;
}

.brand-logo span b {
  color: var(--color-primary);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--text-on-dark-muted);
  font-size: 15px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-amber);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(234, 88, 12, 0.2);
  border-bottom: 2px solid var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-switch-btn:hover {
  background: rgba(234, 88, 12, 0.22);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.lang-switch-btn .svg-icon {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   3. Buttons & Badges (Healthline Orange Aesthetics)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-normal);
  white-space: nowrap;
  font-family: var(--font-arabic);
}

.btn .svg-icon {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: #ffffff;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -4px rgba(2, 131, 141, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.badge .svg-icon {
  width: 14px;
  height: 14px;
}

.badge-orange {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-border);
}

.badge-emerald {
  background: var(--color-emerald-light);
  color: var(--color-emerald);
  border: 1px solid var(--color-emerald-border);
}

.badge-dark {
  background: #1e293b;
  color: #ffffff;
}

/* ==========================================================================
   4. Healthline Secondary Topic Bar (Sub-Nav Pills)
   ========================================================================== */
.hl-topic-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  position: relative;
}

.hl-topic-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.hl-topic-bar-inner::-webkit-scrollbar {
  display: none;
}

.hl-topic-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hl-topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: var(--transition-fast);
}

.hl-topic-pill .svg-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hl-topic-pill:hover,
.hl-topic-pill.active {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hl-topic-pill.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(2, 131, 141, 0.3);
}

.hl-topic-pill.active .svg-icon {
  color: #ffffff;
}

/* ==========================================================================
   5. Healthline Medical Credibility & E-E-A-T Bar
   ========================================================================== */
.hl-trust-bar {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 30px 0;
  box-shadow: var(--shadow-sm);
}

.hl-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.hl-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hl-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--color-primary-light);
  border: 1px solid var(--color-primary-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hl-trust-icon .svg-icon {
  width: 22px;
  height: 22px;
}

.hl-trust-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

.hl-trust-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   6. Healthline Split Hero Section (Featured Lead Story + Trending)
   ========================================================================== */
.hl-hero-section {
  padding: 40px 0 20px;
}

.hl-lead-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .hl-lead-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured Story Card */
.hl-featured-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.hl-featured-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-border);
}

.hl-featured-thumb {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ea580c 0%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hl-featured-thumb-icon {
  width: 80px;
  height: 80px;
  color: rgba(255, 255, 255, 0.9);
}

.hl-featured-thumb-badge {
  position: absolute;
  top: 18px;
  right: 18px;
}

.hl-featured-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}

.hl-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hl-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hl-meta-item .svg-icon {
  width: 15px;
  height: 15px;
  color: var(--color-primary);
}

.hl-featured-title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.4;
  color: var(--text-main);
}

.hl-featured-title a:hover {
  color: var(--color-primary);
}

.hl-featured-excerpt {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.hl-featured-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hl-author-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hl-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary-light);
  border: 1.5px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.hl-author-avatar .svg-icon {
  width: 18px;
  height: 18px;
}

.hl-author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
}

.hl-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-emerald);
  background: var(--color-emerald-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-emerald-border);
}

.hl-verified-badge .svg-icon {
  width: 14px;
  height: 14px;
}

/* Trending Stories Column */
.hl-trending-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.hl-trending-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: 20px;
}

.hl-trending-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
}

.hl-trending-header .svg-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.hl-trending-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hl-trending-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

.hl-trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hl-trending-number {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 32px;
}

.hl-trending-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hl-trending-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.hl-trending-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}

.hl-trending-title a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   7. Healthline Articles Grid
   ========================================================================== */
.hl-articles-section {
  padding: 40px 0 80px;
}

.hl-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-color);
}

.hl-section-heading h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hl-section-heading h2 .svg-icon {
  color: var(--color-primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-border);
}

.article-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-thumb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.article-thumb-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.article-thumb-svg {
  width: 64px;
  height: 64px;
  z-index: 1;
  color: #ffffff;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.article-meta .svg-icon {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.article-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
}

.article-card-title a {
  color: inherit;
}

.article-card-title a:hover {
  color: var(--color-primary);
}

.article-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-footer-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.article-read-more .svg-icon {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.article-card:hover .article-read-more .svg-icon {
  transform: translateX(-4px);
}

/* ==========================================================================
   8. Healthline Newsletter / Free Trial Callout
   ========================================================================== */
.hl-cta-section {
  margin: 40px 0 80px;
}

.hl-cta-box {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 20px 40px -8px rgba(234, 88, 12, 0.4);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 840px) {
  .hl-cta-box {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

.hl-cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hl-cta-content h3 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}

.hl-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
  line-height: 1.7;
}

.hl-cta-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hl-cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.hl-cta-feature-item .svg-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.hl-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  color: #0f172a;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

.store-badge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.store-badge-btn svg {
  width: 28px;
  height: 28px;
}

.store-badge-text {
  text-align: right;
  line-height: 1.25;
}

.store-badge-text small {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

.store-badge-text strong {
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 800;
}

/* ==========================================================================
   9. Healthline Editorial Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-footer);
  color: var(--text-on-dark-muted);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 840px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h4 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--color-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a:hover {
  color: var(--color-primary);
  padding-right: 4px;
}

.footer-disclaimer {
  background: #1e293b;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-size: 12.5px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 30px;
  border-right: 3px solid var(--color-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.footer-social-link .svg-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   10. Bilingual LTR Support (English Mode)
   ========================================================================== */
html[dir="ltr"],
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
  font-family: var(--font-sans);
}

html[dir="ltr"] .hero-content,
html[dir="ltr"] .hl-featured-title,
html[dir="ltr"] .hl-featured-excerpt,
html[dir="ltr"] .hl-trust-info,
html[dir="ltr"] .article-card,
html[dir="ltr"] .hl-section-heading,
html[dir="ltr"] .hl-cta-content,
html[dir="ltr"] .footer-brand,
html[dir="ltr"] .footer-col,
html[dir="ltr"] .article-body,
html[dir="ltr"] .article-content,
html[dir="ltr"] .article-header,
html[dir="ltr"] .blog-header-section {
  direction: ltr !important;
  text-align: left !important;
}

html[dir="ltr"] .article-read-more .svg-icon,
html[dir="ltr"] .btn-secondary .svg-icon,
html[dir="ltr"] .btn-primary .svg-icon {
  transform: scaleX(-1);
}

html[dir="ltr"] .article-card:hover .article-read-more .svg-icon {
  transform: scaleX(-1) translateX(4px);
}

html[dir="ltr"] .footer-col h4::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .footer-disclaimer {
  border-right: none;
  border-left: 3px solid var(--color-primary);
}

html[dir="ltr"] .store-badge-text {
  text-align: left;
}

html[dir="ltr"] .hl-topic-label {
  margin-left: 0;
  margin-right: 8px;
}

html[dir="ltr"] .article-callout {
  border-right: 1px solid var(--border-color);
  border-left: 4px solid var(--color-primary);
}

html[dir="ltr"] .article-content ul,
html[dir="ltr"] .article-content ol {
  margin: 0 0 24px 24px;
}

html[dir="ltr"] .article-content h2::after {
  right: auto;
  left: 0;
}
