/* =====================================================================
   APPROACH VIEW — "גישת הלונג'ביטי" inner page
   Figma: desktop 1608:2965 / mobile 1451:2286
   Base values below are the 1920 desktop frame; laptop + mobile scale after.
   ===================================================================== */

.view-approach { background: var(--lng-white); }

/* ---- page chrome for this view (same pattern as the world pages, on navy) ---- */
body.view-approach .site-header {
  position: static;
  flex-direction: column;
  align-items: flex-start;   /* RTL start = right */
  justify-content: flex-start;
  height: auto;
  background: #1e3c95;
  box-shadow: none;
  padding: 48px 128px 0;
  gap: 40px;
}
body.view-approach .header-join { display: none; }
body.view-approach .site-logo { order: 1; }
body.view-approach .site-logo-full { display: none; }
body.view-approach .site-logo-tight { display: block; }
/* the on-disk logo is brand blue — flip it to white for the navy header */
body.view-approach .site-logo img { height: 78px; filter: brightness(0) invert(1); }
body.view-approach .back-btn {
  order: 2;
  position: static;
  transform: none;
  right: auto;
  color: #fff;
  font-size: 28px;
}
body.view-approach .back-btn svg { width: 24px; height: 24px; }
body.view-approach .main-footer { display: none; }

/* keep content clear of the fixed desktop CTA bar */
@media (min-width: 769px) {
  body.view-approach { padding-bottom: 152px; }
}

/* ===================== HERO (navy) ===================== */
.approach-hero { background: #1e3c95; padding: 32px 0 100px; }
.approach-hero-inner {
  display: flex;
  align-items: center;
  /* text pinned to the RTL start (same right edge as every other section),
     orbit pushed to the far left */
  justify-content: space-between;
  gap: 148px;
}
.approach-hero-text { flex: 0 1 986px; min-width: 0; }
.approach-title {
  font-family: "PloniMLv2AAA-U-Bold", "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0.03em;   /* the ultra-bold cut sets very tight by default */
  color: var(--primary-pink-2);
  margin-bottom: 12px;
}
.approach-title-mobile { display: none; }
.approach-hero-sub {
  font-family: "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 36px;
}
.approach-hero-p { font-size: 36px; line-height: 1.2; color: #fff; }
.approach-orbit { flex: 0 0 420px; width: 420px; height: 420px; }

/* ===================== INTRO + CONCEPTS (white) ===================== */
.approach-txt { background: var(--lng-white); padding: 128px 0; }
.approach-intro { max-width: 1100px; margin-bottom: 128px; }
.approach-intro .section-title,
.approach-concepts .section-title { margin-bottom: 32px; }
.approach-p { font-size: 28px; line-height: 1.2; color: var(--lng-blue); }

.approach-cards { display: flex; align-items: stretch; gap: 24px; }
.approach-card {
  flex: 1 1 0;
  min-width: 0;
  background: #f4dcd9;
  border-radius: 24px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.approach-card-icon { height: 73px; width: auto; margin-bottom: 24px; }
.approach-card-rule {
  display: block;
  width: 104px; height: 2px;
  border-radius: 1px;
  background: #be6090;
  margin-bottom: 24px;
}
.approach-card-title {
  font-family: "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  color: var(--lng-blue);
  margin-bottom: 20px;
}
.approach-card-en { display: block; }
.approach-card-desc { font-size: 22px; line-height: 1.2; color: var(--lng-blue); }

/* ===================== CLOSING BAND (navy card) ===================== */
.approach-closing { background: var(--lng-white); }
.approach-closing-box {
  background: #1e3c95;
  border-radius: 20px;
  padding: 120px 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.approach-closing-txt { flex: 0 1 838px; min-width: 0; }
.approach-closing-title {
  font-family: "PloniMaccabiMLv2AAA-Bold", sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 32px;
}
.approach-closing .approach-p { color: #fff; }
.approach-closing-illu { flex: 0 0 auto; }
.approach-closing-illu img { width: 415.8px; height: 176px; }

/* ===================== ARTICLES / WORLDS (shared cards) ===================== */
.world-articles.approach-articles { padding-top: 128px; }
@media (min-width: 769px) {
  /* 4 cards fill the row (Figma 398px each at 1920) */
  .approach-articles .article-card { flex: 1 1 0; max-width: 398px; height: auto; }
  .approach-articles .article-card-img { flex: 0 0 auto; height: auto; aspect-ratio: 398 / 240; }
  .approach-articles .article-card-title { font-size: 24px; }
}
@media (min-width: 1920px) {
  .approach-articles .article-card-title { font-size: 28px; }
}
/* this view shows all five worlds (the world pages show four) — keep them on
   one row instead of letting the 5th wrap onto a second line */
@media (min-width: 769px) {
  .approach-worlds .more-worlds-row { flex-wrap: nowrap; }
  .approach-worlds .more-world-card { flex: 1 1 0; width: auto; min-width: 0; max-width: 300px; }
}

/* ===================== LAPTOP ===================== */
@media (min-width: 769px) and (max-width: 1919px) {
  body.view-approach .site-header { padding: 32px 64px 0; gap: 28px; }
  body.view-approach .site-logo img { height: 60px; }
  body.view-approach .back-btn { font-size: 22px; }
  body.view-approach .back-btn svg { width: 20px; height: 20px; }

  .approach-hero { padding: 24px 0 72px; }
  .approach-hero-inner { gap: 64px; }
  .approach-title { font-size: 64px; }
  .approach-hero-sub { font-size: 28px; margin-bottom: 28px; }
  .approach-hero-p { font-size: 26px; }
  .approach-orbit { flex: 0 0 340px; width: 340px; height: 340px; }

  .approach-txt { padding: 72px 0; }
  .approach-intro { margin-bottom: 72px; }
  .approach-p { font-size: 24px; }
  .approach-card { padding: 36px 24px; }
  .approach-card-icon { height: 60px; }
  .approach-card-title { font-size: 24px; }
  .approach-card-desc { font-size: 20px; }

  .approach-closing-box { padding: 72px 64px; gap: 40px; }
  .approach-closing-title { font-size: 34px; }
  .approach-closing-illu img { width: 320px; height: 135px; }

  .world-articles.approach-articles { padding-top: 72px; }
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
  body.view-approach .site-header { height: auto; padding: 24px 20px 0; gap: 20px; }
  body.view-approach .site-logo img { height: 50px; }
  body.view-approach .back-btn { font-size: 18px; }
  body.view-approach .back-btn svg { width: 18px; height: 18px; }

  .approach-hero { padding: 16px 0 20px; }
  .approach-hero-inner { flex-direction: column; align-items: center; gap: 16px; }
  .approach-hero-text { flex: none; width: 100%; text-align: center; }
  .approach-title-desktop { display: none; }
  .approach-title-mobile { display: inline; }
  /* the title ("מה זה לונג׳ביטי?") must stay on one line — cap at 46px and
     scale down with the viewport on narrow phones, with nowrap as a guard */
  .approach-title {
    font-size: min(46px, 12vw);
    white-space: nowrap;
    margin-bottom: 8px;
  }
  .approach-hero-sub { font-size: 25px; line-height: 1; margin-bottom: 16px; }
  .approach-hero-p { font-size: 18px; }
  .approach-orbit { flex: none; width: 200px; height: 200px; }

  .approach-txt { padding: 40px 0; }
  .approach-intro { margin-bottom: 40px; }
  .approach-intro .section-title,
  .approach-concepts .section-title { text-align: center; margin-bottom: 24px; }
  .approach-intro .approach-p { text-align: center; }
  .approach-p { font-size: 18px; }
  .approach-cards { flex-direction: column; gap: 16px; }
  .approach-card { padding: 32px 20px; border-radius: 18px; }
  .approach-card-icon { height: 52px; margin-bottom: 20px; }
  .approach-card-rule { width: 78px; margin-bottom: 20px; }
  .approach-card-title { font-size: 25px; margin-bottom: 16px; }
  .approach-card-en { display: inline; }
  .approach-card-desc { font-size: 18px; }

  /* full-bleed navy band on mobile */
  .approach-closing .section-inner { padding: 0; }
  .approach-closing-box {
    flex-direction: column-reverse;
    align-items: center;
    padding: 40px 20px;
    gap: 28px;
    border-radius: 0;
  }
  .approach-closing-txt { flex: none; width: 100%; text-align: center; }
  .approach-closing-title { font-size: 25px; line-height: 1; margin-bottom: 24px; }
  .approach-closing-illu { width: 100%; }
  .approach-closing-illu img { width: 212px; height: 90px; margin: 0 auto; }

  .world-articles.approach-articles { padding: 40px 0; }
  .world-more.approach-worlds { padding: 20px 0 40px; }
}
