:root {
      --bg: #0f0f0f;
      --bg2: #1a1a1a;
      --bg3: #242424;
      --border: #2e2e2e;
      --text: #e8e8e8;
      --text2: #9a9a9a;
      --accent: #e8a020;
      --accent2: #c47d10;
      --radius: 8px;
      --font: 'Inter', -apple-system, system-ui, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      font-size: 16px;
      padding-top: 60px;
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { color: var(--accent2); }

    /* ── HEADER ── */
    .site-header {
      background: var(--bg2);
      border-bottom: 1px solid var(--border);
      padding: 0 20px;
    }
    .site-header__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: 20px;
    }
    .site-logo {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      white-space: nowrap;
    }
    .site-logo span { color: var(--accent); }
    .site-nav {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .site-nav a {
      color: var(--text2);
      font-size: 14px;
      font-weight: 500;
      transition: color .2s;
    }
    .site-nav a:hover { color: var(--accent); }
    .header-cta {
      background: var(--accent);
      color: #000;
      padding: 8px 18px;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
      transition: background .2s;
    }
    .header-cta:hover { background: var(--accent2); color: #000; }

    /* ── CONTAINER ── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (max-width: 600px) {
      .site-nav { display: none; }
    }

.article-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 300px;
    gap: 48px;
    align-items: start;
  }
  /* ── BREADCRUMB ── */
  .breadcrumb {
    font-size: 12.5px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    position: static;
  }
  .breadcrumb a { color: #666; }
  .breadcrumb a:hover { color: #e8a020; }
  .breadcrumb__sep { color: #3a3a3a; }

  /* ── ARTICLE HEADER ── */
  .article-header {
    margin-bottom: 28px;
  }
  .article-date {
    font-size: 12px;
    color: #555;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
  }
  .article-title {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 700;
    color: #e8e8e8;
    line-height: 1.3;
    margin-bottom: 0;
  }

  /* ── HERO IMAGE ── */
  .article-hero {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 32px;
    object-fit: cover;
    max-height: 400px;
  }
  .article-hero-placeholder {
    width: 100%;
    height: 260px;
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #2e2e2e;
  }

  /* ── ARTICLE BODY ── */
  .article-body {
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.75;
  }
  .article-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: #e8e8e8;
    margin: 36px 0 12px;
    line-height: 1.35;
  }
  .article-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #d8d8d8;
    margin: 24px 0 8px;
  }
  .article-body p {
    margin-bottom: 16px;
  }
  .article-body strong { color: #e8e8e8; }
  .article-body ul, .article-body ol {
    padding-left: 22px;
    margin-bottom: 16px;
  }
  .article-body li { margin-bottom: 6px; }
  .article-body a { color: #e8a020; }
  .article-body a:hover { color: #c47d10; }

  /* ── INLINE ARTICLE IMAGES ── */
  .article-img-block {
    margin: 28px 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2e2e2e;
    background: #1a1a1a;
  }
  .article-img-block img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
  .article-img-block figcaption {
    font-size: 12px;
    color: #555;
    padding: 8px 12px;
    text-align: center;
  }

  /* ── IMAGES GALLERY (from images[]) ── */
  .article-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px 0;
  }
  .article-gallery img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border: 1px solid #2e2e2e;
    background: #1a1a1a;
    display: block;
  }

  /* ── CTA BOX ── */
  .article-cta {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-left: 3px solid #e8a020;
    border-radius: 0 10px 10px 0;
    padding: 20px 24px;
    margin: 36px 0;
  }
  .article-cta__title {
    font-size: 15px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 8px;
  }
  .article-cta__text {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .article-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8a020;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background .15s;
  }
  .article-cta__btn:hover { background: #c47d10; color: #000; }

  /* ── FAQ ── */
  .article-faq {
    margin-top: 48px;
    border-top: 1px solid #2e2e2e;
    padding-top: 36px;
  }
  .article-faq__title {
    font-size: 20px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 20px;
  }
  .faq-item {
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: #1a1a1a;
    border: none;
    padding: 16px 18px;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #e8e8e8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .15s;
  }
  .faq-question:hover { background: #222; }
  .faq-question .faq-icon {
    flex-shrink: 0;
    color: #e8a020;
    transition: transform .25s;
  }
  .faq-item.open .faq-question { background: #222; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    display: none;
    padding: 0 18px 16px;
    font-size: 14.5px;
    color: #9a9a9a;
    line-height: 1.65;
    background: #1a1a1a;
  }
  .faq-item.open .faq-answer { display: block; }

  /* ── SIDEBAR ── */
  .article-sidebar {
    position: sticky;
    top: 24px;
  }
  .sidebar-card {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .sidebar-card__title {
    font-size: 13px;
    font-weight: 700;
    color: #9a9a9a;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
  }
  .sidebar-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e8a020;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    padding: 14px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background .15s;
  }
  .sidebar-call-btn:hover { background: #c47d10; color: #000; }
  .sidebar-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a3a1e;
    border: 1px solid #25d366;
    color: #25d366;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: background .15s;
  }
  .sidebar-wa-btn:hover { background: #243a26; color: #25d366; }
  .sidebar-tg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #152840;
    border: 1px solid #2aabee;
    color: #2aabee;
    font-weight: 600;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    transition: background .15s;
  }
  .sidebar-tg-btn:hover { background: #1a3250; color: #2aabee; }
  .sidebar-note {
    font-size: 12px;
    color: #555;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
  }

  /* Related links */
  .sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .sidebar-links a {
    font-size: 13px;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
    line-height: 1.4;
  }
  .sidebar-links a:hover { color: #e8a020; }
  .sidebar-links a::before {
    content: '→';
    font-size: 11px;
    color: #555;
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .article-wrap {
      grid-template-columns: 1fr;
    }
    .article-sidebar {
      position: static;
      order: 1;
    }
    .article-gallery { grid-template-columns: 1fr; }
    .article-hero {
      height: auto;
      max-height: none;
      object-fit: contain;
    }
  }

.blog-listing {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
  }
  .blog-listing__heading {
    font-size: 26px;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 8px;
  }
  .blog-listing__sub {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 36px;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .blog-card {
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
  }
  .blog-card:hover {
    border-color: #e8a020;
    transform: translateY(-2px);
  }
  .blog-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #242424;
    object-fit: cover;
    display: block;
  }
  .blog-card__img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 32px;
  }
  .blog-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
  }
  .blog-card__date {
    font-size: 11px;
    color: #555;
    font-variant-numeric: tabular-nums;
  }
  .blog-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #e8e8e8;
    line-height: 1.4;
    flex: 1;
  }
  .blog-card__title a { color: inherit; }
  .blog-card__title a:hover { color: #e8a020; }
  .blog-card__desc {
    font-size: 13.5px;
    color: #9a9a9a;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #e8a020;
    margin-top: 4px;
  }
  .blog-card__more:hover { color: #c47d10; }
  .blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .blog-pagination a,
  .blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
    color: #9a9a9a;
    background: #1a1a1a;
    border: 1px solid #2e2e2e;
  }
  .blog-pagination a:hover {
    background: #242424;
    color: #e8e8e8;
    border-color: #555;
  }
  .blog-pagination span.current {
    background: #e8a020;
    color: #000;
    border-color: #e8a020;
    font-weight: 700;
  }
  .blog-pagination .prev-next {
    width: auto;
    padding: 0 14px;
    gap: 6px;
  }
  @media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
  }

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.legal-page h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1.3;
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}
.legal-langs {
  font-size: 14px;
  color: #9a9a9a;
  margin-bottom: 28px;
}
.legal-he {
  font-family: Tahoma, 'Arial Hebrew', 'Segoe UI', sans-serif;
}
.legal-page hr {
  border: none;
  border-top: 1px solid #2e2e2e;
  margin: 48px 0;
}
