/* REATS · BUYZ-style 3-column shell (site-wide) — mobile-first, green brand */

body.bz-pilot-layout {
  --bz-nav-w: clamp(200px, 14vw, 260px);
  --bz-widget-w: clamp(200px, 15vw, 280px);
  --bz-gap: clamp(12px, 2vw, 20px);
  --bz-pad-x: clamp(12px, 2.5vw, 28px);
  --bz-content-width: 95%;
  --bz-hub-content-width: 95%;
  --bz-accent: var(--accent, #0c3c1e);
  --bz-accent-2: var(--accent-2, #2f7d3f);
  --bz-accent-soft: #f1f7e9;
  --bz-radius: 14px;
  overflow-x: hidden;
}

body.bz-pilot-layout .ambient {
  opacity: 0.2;
}

body.bz-pilot-layout .header-inner {
  max-width: none;
  width: 100%;
  padding-inline: var(--bz-pad-x);
}

body.bz-pilot-layout main {
  padding-top: 0;
  width: 100%;
  max-width: none;
}

body.bz-pilot-layout .site-footer .container {
  max-width: none;
  width: 100%;
  padding-inline: var(--bz-pad-x);
}

.bz-app {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: var(--bz-gap) var(--bz-pad-x) calc(56px + env(safe-area-inset-bottom, 0px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "main";
  gap: var(--bz-gap);
  align-items: stretch;
  box-sizing: border-box;
}

/* Tablet: main full width, side rails in drawers */
@media (min-width: 768px) and (max-width: 1099px) {
  .bz-app {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .bz-vouchers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Desktop: rails flush to screen edges, main column between them */
@media (min-width: 1100px) {
  .bz-app {
    grid-template-columns: var(--bz-nav-w) minmax(0, 1fr) var(--bz-widget-w);
    grid-template-areas: "nav main widgets";
    gap: 0;
    padding: 0 0 var(--bz-gap);
    min-height: calc(100vh - 72px);
  }

  .bz-rail--nav .bz-rail__inner,
  .bz-rail--widgets .bz-rail__inner {
    border-radius: 0;
    min-height: calc(100vh - 72px);
    border-top: 0;
    border-bottom: 0;
  }

  .bz-rail--nav .bz-rail__inner {
    border-inline-start: 1px solid rgba(12, 60, 30, 0.1);
    border-inline-end: 0;
  }

  .bz-rail--widgets .bz-rail__inner {
    border-inline-end: 1px solid rgba(12, 60, 30, 0.1);
    border-inline-start: 0;
  }

  .bz-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
  }
}

/* Rails */
.bz-rail {
  min-width: 0;
}

.bz-rail--nav {
  grid-area: nav;
}

.bz-rail--widgets {
  grid-area: widgets;
}

.bz-rail__inner {
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
  border-radius: var(--bz-radius);
  padding: 14px 12px;
  position: relative;
}

@media (min-width: 1100px) {
  .bz-rail__inner {
    position: sticky;
    top: 72px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1099px) {
  .bz-rail {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 220;
    width: min(340px, min(92vw, 400px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: env(safe-area-inset-top, 0px);
  }
  .bz-rail.is-open {
    display: block;
  }
  .bz-rail--nav {
    right: 0;
  }
  .bz-rail--widgets {
    left: 0;
  }
  .bz-rail__close {
    display: inline-flex !important;
    position: absolute;
    top: 8px;
    left: 8px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(12, 60, 30, 0.15);
    border-radius: 10px;
    background: #fff;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
  }
}

.bz-rail__close {
  display: none;
}

/* Logo */
.bz-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--bz-accent);
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(12, 60, 30, 0.08);
  min-height: 44px;
}

/* פרופיל אורח/משתמש — מעל «ראשי» (לוגו REATS רק ב-header) */
.bz-rail-profile {
  margin: 0 0 clamp(12px, 2.8vw, 16px);
  padding: 0 0 clamp(12px, 2.8vw, 16px);
  border-bottom: 1px solid rgba(12, 60, 30, 0.1);
}

.bz-rail-profile__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 6px 4px;
  margin: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: start;
  border-radius: 12px;
  transition: background 0.15s ease;
  box-sizing: border-box;
}

.bz-rail-profile__btn:hover,
.bz-rail-profile__btn:focus-visible {
  background: rgba(241, 247, 233, 0.85);
  outline: none;
}

.bz-rail-profile__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--bz-accent-2, #2f7d3f) 0%, var(--bz-accent, #0c3c1e) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(12, 60, 30, 0.14);
}

.bz-rail-profile__copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.bz-rail-profile__status {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(12, 60, 30, 0.14);
  background: #fff;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.bz-rail-profile__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ecf6e;
  box-shadow: 0 0 0 1px rgba(62, 207, 110, 0.4);
}

.bz-rail-profile__name {
  font-size: clamp(0.9rem, 2.4vw, 0.98rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-2, #4a5f52);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-rail-profile__btn--member {
  gap: 12px;
}

.bz-rail-profile__name--member {
  color: var(--bz-accent, #0c3c1e);
  font-weight: 700;
  flex: 1;
  min-width: 0;
}

.bz-logo .logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bz-accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.bz-logo__pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bz-accent-soft);
  color: var(--bz-accent-2);
}

/* Nav */
.bz-nav__heading {
  margin: 14px 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3, #6b7c72);
}

.bz-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bz-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink-1, #2a3d32);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.bz-nav__link:hover {
  background: var(--bz-accent-soft);
  color: var(--bz-accent);
}

.bz-nav__link--disabled {
  cursor: default;
  opacity: 0.72;
}

.bz-nav__link--disabled:hover {
  background: transparent;
  color: var(--ink-1, #2a3d32);
}

.bz-nav__link.is-active,
.bz-nav__link.is-active:visited,
body.bz-listing-all .bz-nav__link[data-bz-nav="home"],
body.bz-listing-retreats .bz-nav__link[data-bz-nav="retreats"],
body.bz-listing-workshops .bz-nav__link[data-bz-nav="workshops"] {
  background: var(--bz-accent-soft);
  color: var(--bz-accent);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--bz-accent-2);
}

.bz-nav__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--bz-accent-2);
}

.bz-nav__icon svg {
  width: 20px;
  height: 20px;
}

.bz-nav__cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bz-accent-soft);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.bz-nav__link--more {
  font-size: 0.82rem;
  color: var(--bz-accent-2);
  font-weight: 600;
}

/* Widgets rail */
.bz-widget {
  margin-bottom: 18px;
}

.bz-widget__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.bz-widget__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.bz-widget__head a {
  font-size: 0.82rem;
  color: var(--bz-accent-2);
  text-decoration: none;
  font-weight: 600;
}

.bz-widget__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bz-widget__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 6px;
  border-radius: 10px;
  transition: background 0.15s;
}

.bz-widget__item:hover {
  background: var(--bz-accent-soft);
}

.bz-widget__item img,
.bz-widget__ph {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bz-accent-soft);
  display: grid;
  place-items: center;
}

.bz-widget__text strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--ink-0);
}

.bz-widget__text span {
  font-size: 0.78rem;
  color: var(--ink-2);
}

.bz-widget__empty {
  font-size: 0.84rem;
  color: var(--ink-2);
  padding: 8px;
  line-height: 1.45;
}

/* Main */
.bz-main {
  grid-area: main;
  min-width: 0;
}

/* Home hero + search — only in center column, flush with side rails */
.bz-pilot-intro {
  --bz-intro-content-width: calc(100% - 2 * var(--bz-pad-x));
  width: 100%;
  max-width: 100%;
  margin: 0;
  flex-shrink: 0;
  overflow: hidden;
}

body.bz-pilot-layout .bz-pilot-intro .container {
  max-width: none;
  width: 100%;
  padding-inline: var(--bz-pad-x);
}

body.bz-pilot-layout .bz-pilot-intro .hero {
  border-radius: clamp(16px, 3vw, var(--radius-xl, 22px));
}

body.bz-pilot-layout .bz-pilot-intro .search-section {
  position: relative;
  z-index: 3;
}

.bz-main__content {
  padding: var(--bz-gap) var(--bz-pad-x) 0;
  min-width: 0;
}

/* Inner pages inside center column */
.bz-page-content {
  min-width: 0;
}

body.bz-pilot-layout .bz-page-content .container {
  max-width: none;
  width: 100%;
  padding-inline: 0;
}

body.bz-pilot-layout .bz-page-content .ad-page,
body.bz-pilot-layout .bz-page-content .archive-hero,
body.bz-pilot-layout .bz-page-content .glass-section {
  margin-inline: 0;
}

@media (min-width: 1100px) {
  body.bz-pilot-layout .bz-pilot-intro .hero-content {
    padding-inline: clamp(16px, 2vw, 28px);
  }
}

/* Homepage cards: always visible (reveal animation can leave opacity:0 if script loads late) */
body.bz-pilot-layout .bz-pilot-grid .retreat-card.reveal {
  opacity: 1;
  transform: none;
}

/* Homepage retreat cards — 6 per row on wide desktop */
.bz-pilot-grid.retreats-grid {
  gap: clamp(10px, 1.1vw, 18px);
}

@media (min-width: 1280px) {
  .bz-pilot-grid.retreats-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) and (max-width: 1279px) {
  .bz-pilot-grid.retreats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .bz-pilot-grid.retreats-grid,
  .bz-listing-hub-grid .bz-pilot-grid.retreats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 581px) and (max-width: 899px) {
  .bz-pilot-grid.retreats-grid,
  .bz-listing-hub-grid .bz-pilot-grid.retreats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .bz-pilot-grid.retreats-grid,
  .bz-listing-hub-grid .bz-pilot-grid.retreats-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* כרטיסים בגריד — טקסט גמיש במסכים צרים */
.bz-pilot-grid .retreat-card {
  min-width: 0;
}

.bz-pilot-grid .retreat-head {
  align-items: flex-start;
  gap: clamp(6px, 2vw, 12px);
}

.bz-pilot-grid .retreat-title {
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.bz-pilot-grid .retreat-title a {
  min-width: 0;
}

.bz-pilot-grid .retreat-rating {
  flex-shrink: 0;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
}

@media (max-width: 580px) {
  .bz-pilot-grid .retreat-rating {
    white-space: normal;
    text-align: end;
  }
}

/* Compact cards when 6 columns */
@media (min-width: 1280px) {
  .bz-pilot-grid .retreat-card .retreat-title {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .bz-pilot-grid .retreat-facts {
    padding: 8px 10px;
    gap: 4px;
  }

  .bz-pilot-grid .retreat-fact__text {
    font-size: 0.72rem;
  }

  .bz-pilot-grid .retreat-fact__icon svg {
    width: 14px;
    height: 14px;
  }

  .bz-pilot-grid .retreat-footer {
    flex-wrap: wrap;
    gap: 6px;
  }

  .bz-pilot-grid .retreat-price strong {
    font-size: 1rem;
  }

  .bz-pilot-grid .retreat-host__name {
    font-size: 0.72rem;
  }

  .bz-pilot-grid .host-avatar {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }
}

.bz-block--cards {
  padding-top: 4px;
}

.bz-main__search {
  margin-bottom: var(--bz-gap);
}

.bz-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.14);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  box-shadow: 0 4px 16px -8px rgba(12, 60, 30, 0.15);
}

.bz-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.bz-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  min-height: 44px;
}

.bz-search__btn {
  min-width: 48px;
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--bz-accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Hero */
.bz-hero {
  margin-bottom: var(--bz-gap);
}

.bz-hero__card {
  position: relative;
  display: block;
  border-radius: var(--bz-radius);
  overflow: hidden;
  min-height: clamp(200px, 35vw, 280px);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 40px -20px rgba(12, 60, 30, 0.35);
}

.bz-hero__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 40, 22, 0.85) 0%, rgba(12, 40, 22, 0.2) 70%);
}

.bz-hero__body {
  position: relative;
  z-index: 1;
  padding: clamp(20px, 4vw, 40px);
  max-width: min(640px, 92%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .bz-hero__card {
    min-height: clamp(220px, 28vw, 320px);
  }

  .bz-hero__shade {
    background: linear-gradient(105deg, rgba(12, 40, 22, 0.88) 0%, rgba(12, 40, 22, 0.35) 55%, rgba(12, 40, 22, 0.15) 100%);
  }
}

.bz-hero__badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bz-accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.bz-hero__body h1 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
}

.bz-hero__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
}

.bz-hero__price {
  font-weight: 800;
  font-size: 1.15rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
}

.bz-hero__cta {
  margin-top: 4px;
  pointer-events: none;
}

/* Pills — שורת סינון */
.bz-pills {
  margin-bottom: var(--bz-gap);
}

.bz-pills__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(143, 183, 163, 0.14) 0%, rgba(232, 185, 118, 0.1) 100%);
  border: 1px solid rgba(12, 60, 30, 0.08);
  box-shadow: 0 8px 24px rgba(12, 40, 24, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media (min-width: 640px) {
  .bz-pills__track {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.bz-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 clamp(14px, 3vw, 18px);
  border-radius: 14px;
  border: 1px solid rgba(12, 60, 30, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-1);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.bz-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(47, 125, 63, 0.08);
  color: var(--bz-accent);
  flex-shrink: 0;
}

.bz-pill__icon svg {
  width: 14px;
  height: 14px;
}

.bz-pill__label {
  flex: 0 1 auto;
}

.bz-pill__soon {
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.55;
  margin-inline-start: 2px;
}

.bz-pill--hub .bz-pill__icon {
  background: rgba(47, 125, 63, 0.16);
}

.bz-pill:hover:not(.bz-pill--disabled) {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(47, 125, 63, 0.28);
  color: var(--bz-accent);
  box-shadow: 0 6px 16px rgba(12, 40, 24, 0.08);
}

.bz-pill.is-active,
.bz-pill.is-active:visited,
body.bz-listing-all .bz-pill[data-bz-pill="all"],
body.bz-listing-retreats .bz-pill[data-bz-pill="retreats"],
body.bz-listing-workshops .bz-pill[data-bz-pill="workshops"],
body.bz-listing-discover-featured .bz-pill[data-bz-pill="featured"],
body.bz-listing-discover-new .bz-pill[data-bz-pill="new"] {
  background: linear-gradient(135deg, #3d8f52 0%, #2f7d3f 55%, #266833 100%);
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(47, 125, 63, 0.28);
}

.bz-pill.is-active .bz-pill__icon,
body.bz-listing-discover-featured .bz-pill[data-bz-pill="featured"] .bz-pill__icon,
body.bz-listing-discover-new .bz-pill[data-bz-pill="new"] .bz-pill__icon,
body.bz-listing-workshops .bz-pill[data-bz-pill="workshops"] .bz-pill__icon,
body.bz-listing-retreats .bz-pill[data-bz-pill="retreats"] .bz-pill__icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.bz-pill.is-active:hover,
body.bz-listing-all .bz-pill[data-bz-pill="all"]:hover,
body.bz-listing-retreats .bz-pill[data-bz-pill="retreats"]:hover,
body.bz-listing-workshops .bz-pill[data-bz-pill="workshops"]:hover,
body.bz-listing-discover-featured .bz-pill[data-bz-pill="featured"]:hover,
body.bz-listing-discover-new .bz-pill[data-bz-pill="new"]:hover {
  color: #fff;
  transform: translateY(-1px);
}

.bz-pill--disabled {
  cursor: not-allowed;
  opacity: 0.72;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.bz-pills--retreats .bz-pill--hub,
.bz-pills--workshops .bz-pill--hub {
  padding-inline-start: clamp(12px, 2.5vw, 16px);
}

/* עמודי hub: /workshops · /retreats · קטגוריות — רוחב 95% כמו HERO בחוויה */
body.bz-listing-workshops .bz-listing-hub-page,
body.bz-listing-retreats .bz-listing-hub-page,
body.page-category-hub.bz-listing-workshops .bz-listing-hub-page,
body.page-category-hub.bz-listing-retreats .bz-listing-hub-page {
  --bz-hub-content-width: 95%;
  --bz-hub-hero-pad: clamp(20px, 4vw, 32px);
  --bz-hub-stack-gap: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  width: var(--bz-hub-content-width);
  max-width: var(--bz-hub-content-width);
  margin-inline: auto;
  box-sizing: border-box;
}

/* HERO hub — בהשראת exp-event-hero */
body.bz-listing-workshops .bz-hub-hero,
body.bz-listing-retreats .bz-hub-hero {
  order: 0;
  flex-shrink: 0;
  padding-block: clamp(14px, 3vw, 24px);
  padding-inline: 0;
  background: transparent;
  color: var(--accent, #0c3c1e);
}

body.bz-listing-workshops .bz-hub-hero__inner,
body.bz-listing-retreats .bz-hub-hero__inner {
  width: 100%;
  max-width: 100%;
}

body.bz-listing-workshops .bz-hub-hero__shell,
body.bz-listing-retreats .bz-hub-hero__shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--bz-hub-hero-pad);
}

body.bz-listing-workshops .bz-hub-hero__card,
body.bz-listing-retreats .bz-hub-hero__card {
  position: relative;
  isolation: isolate;
  border-radius: clamp(20px, 3vw, 28px);
  overflow: clip;
  padding: var(--bz-hub-hero-pad);
  border: 1px solid rgba(12, 60, 30, 0.12);
  box-shadow:
    0 2px 4px rgba(12, 60, 30, 0.04),
    0 16px 48px rgba(12, 60, 30, 0.1);
}

body.bz-listing-retreats .bz-hub-hero__card--retreats:not(.bz-hub-hero__card--has-bg) {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(241, 247, 233, 0.98) 55%,
    rgba(232, 244, 236, 0.95) 100%
  );
}

body.bz-listing-retreats .bz-hub-hero__card--has-bg,
body.bz-listing-workshops .bz-hub-hero__card--has-bg,
.page-category .exp-event-hero__card--has-bg {
  background: transparent;
}

body.bz-listing-retreats .bz-hub-hero__card-body,
body.bz-listing-workshops .bz-hub-hero__card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--bz-hub-stack-gap, clamp(16px, 3vw, 24px));
}

/* Blur backdrop — hub + קטגוריה (כמו exp-event-hero) */
.bz-hub-hero__card .reats-hero-blur__backdrop,
.page-category .exp-event-hero__card .reats-hero-blur__backdrop,
.exp-event-hero__card .reats-hero-blur__backdrop {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bz-hub-hero__card .reats-hero-blur__backdrop img,
.page-category .exp-event-hero__card .reats-hero-blur__backdrop img,
.exp-event-hero__card .reats-hero-blur__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  opacity: 0.5;
  filter: blur(48px) saturate(1.5) brightness(1.82) contrast(1.04);
}

.bz-hub-hero__card .reats-hero-blur__scrim,
.page-category .exp-event-hero__card .reats-hero-blur__scrim,
.exp-event-hero__card .reats-hero-blur__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.52) 0%,
      rgba(255, 255, 255, 0.34) 50%,
      rgba(255, 255, 255, 0.48) 100%
    ),
    radial-gradient(ellipse 100% 80% at 30% 50%, rgba(255, 255, 255, 0.38) 0%, transparent 65%);
}

@media (max-width: 767px) {
  .bz-hub-hero__card .reats-hero-blur__backdrop img,
  .page-category .exp-event-hero__card .reats-hero-blur__backdrop img {
    filter: blur(40px) saturate(1.45) brightness(1.74) contrast(1.04);
    transform: scale(1.12);
  }
}

html.a11y-motion .bz-hub-hero__card .reats-hero-blur__backdrop img,
html.a11y-motion .page-category .exp-event-hero__card .reats-hero-blur__backdrop img {
  filter: blur(22px) saturate(1.4) brightness(1.68);
}

/* Hub HERO — פריסה כמו חוויה (תמונה + טקסט + חיפוש) */
body.bz-listing-retreats .bz-hub-hero--exp,
body.bz-listing-workshops .bz-hub-hero--exp {
  padding-inline: 0;
}

body.bz-listing-retreats .bz-hub-hero--exp .exp-event-hero__panel h1,
body.bz-listing-retreats .bz-hub-hero--exp .exp-event-lead,
body.bz-listing-workshops .bz-hub-hero--exp .exp-event-hero__panel h1,
body.bz-listing-workshops .bz-hub-hero--exp .exp-event-lead {
  color: #0c3c1e !important;
}

body.bz-listing-retreats .bz-hub-hero--exp .bz-listing-hub-portal__kicker,
body.bz-listing-workshops .bz-hub-hero--exp .bz-listing-hub-portal__kicker {
  margin: 0 0 6px;
}

body.bz-listing-retreats .bz-hub-hero__panel .bz-hub-hero__card-body,
body.bz-listing-workshops .bz-hub-hero__panel .bz-hub-hero__card-body {
  width: 100%;
  gap: var(--bz-hub-stack-gap, clamp(16px, 3vw, 24px));
}

body.bz-listing-retreats .bz-hub-hero__media,
body.bz-listing-workshops .bz-hub-hero__media {
  cursor: default;
  pointer-events: none;
}

body.bz-listing-retreats .bz-hub-hero__media:hover,
body.bz-listing-workshops .bz-hub-hero__media:hover {
  transform: none;
  box-shadow: 0 14px 48px rgba(12, 60, 30, 0.24);
}

@media (min-width: 900px) {
  body.bz-listing-retreats .bz-hub-hero__grid--has-media,
  body.bz-listing-workshops .bz-hub-hero__grid--has-media {
    flex-direction: row-reverse;
    align-items: stretch;
  }

  body.bz-listing-retreats .bz-hub-hero__grid--has-media .exp-event-hero__panel,
  body.bz-listing-workshops .bz-hub-hero__grid--has-media .exp-event-hero__panel {
    order: 2;
    flex: 1 1 52%;
  }

  body.bz-listing-retreats .bz-hub-hero__grid--has-media .bz-hub-hero__media-wrap,
  body.bz-listing-workshops .bz-hub-hero__grid--has-media .bz-hub-hero__media-wrap {
    order: 1;
    flex: 0 1 min(42%, 380px);
    max-width: 380px;
  }
}

body.bz-listing-retreats .bz-hub-hero__card--retreats::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #8fb7a3 0%, #5a8878 50%, #3d6b5a 100%);
  z-index: 2;
  pointer-events: none;
}

body.bz-listing-workshops .bz-hub-hero__card--workshops:not(.bz-hub-hero__card--has-bg) {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 248, 238, 0.98) 55%,
    rgba(252, 241, 228, 0.95) 100%
  );
}

body.bz-listing-workshops .bz-hub-hero__card--workshops::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #e8b976 0%, #c8876b 50%, #9a6b4a 100%);
  z-index: 2;
  pointer-events: none;
}

body.bz-listing-workshops .bz-hub-hero__stack,
body.bz-listing-retreats .bz-hub-hero__stack {
  display: flex;
  flex-direction: column;
  gap: var(--bz-hub-stack-gap);
}

body.bz-listing-workshops .bz-listing-hub-portal,
body.bz-listing-retreats .bz-listing-hub-portal {
  order: 0;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

/* כפתור «לעמוד הבית» — קומפקטי + ריווח מהכותרת */
body.bz-listing-retreats .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back,
body.bz-listing-workshops .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back,
body.page-category-hub .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back {
  min-height: clamp(36px, 10vw, 44px);
  padding: clamp(6px, 2vw, 10px) clamp(10px, 2.5vw, 14px);
  font-size: clamp(0.78rem, 2.2vw, 0.88rem);
  font-weight: 600;
  gap: 5px;
  margin: 0 0 clamp(12px, 2.8vw, 18px);
  box-shadow: 0 2px 10px rgba(12, 60, 30, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(12, 60, 30, 0.72);
}

body.bz-listing-retreats .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back:hover,
body.bz-listing-workshops .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back:hover,
body.page-category-hub .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back:hover {
  color: #fff;
  background: rgba(12, 60, 30, 0.88);
}

body.bz-listing-retreats .bz-hub-hero--exp .exp-event-back__icon,
body.bz-listing-workshops .bz-hub-hero--exp .exp-event-back__icon,
body.page-category-hub .bz-hub-hero--exp .exp-event-back__icon {
  font-size: 0.82rem;
}

body.bz-listing-workshops .bz-listing-hub-portal__head,
body.bz-listing-retreats .bz-listing-hub-portal__head,
body.page-category-hub .bz-listing-hub-portal__head {
  max-width: none;
  margin: clamp(6px, 1.5vw, 12px) 0 clamp(4px, 1vw, 8px);
  padding-top: clamp(2px, 0.6vw, 6px);
}

body.bz-listing-workshops .bz-listing-hub-portal__kicker,
body.bz-listing-retreats .bz-listing-hub-portal__kicker {
  margin: 0 0 6px;
  font-size: clamp(0.78rem, 2.2vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 1;
}

body.bz-listing-retreats .bz-listing-hub-portal__kicker {
  color: #3d6b5a;
}

body.bz-listing-workshops .bz-listing-hub-portal__kicker {
  color: #9a6b4a;
}

body.bz-listing-workshops .bz-listing-hub-portal__title,
body.bz-listing-retreats .bz-listing-hub-portal__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 4.2vw, 2.1rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--accent, #0c3c1e);
}

body.bz-listing-workshops .bz-listing-hub-portal__lead,
body.bz-listing-retreats .bz-listing-hub-portal__lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.6vw, 1.05rem);
  line-height: 1.5;
  opacity: 1;
  max-width: 40rem;
  color: var(--ink-2, #335a44);
}

body.bz-listing-workshops .bz-hub-hero__search,
body.bz-listing-retreats .bz-hub-hero__search {
  margin-top: clamp(4px, 1vw, 10px);
}

body.bz-listing-workshops .bz-listing-hub-portal .search-section,
body.bz-listing-retreats .bz-listing-hub-portal .search-section,
body.bz-listing-workshops .bz-listing-hub-portal .search-section--listing-hub,
body.bz-listing-retreats .bz-listing-hub-portal .search-section--listing-hub {
  display: block !important;
  visibility: visible !important;
  margin-top: 0 !important;
  padding-top: 0;
  padding-bottom: clamp(14px, 3vw, 22px);
  position: relative;
  z-index: 2;
  opacity: 1;
}

body.bz-listing-workshops .bz-listing-hub-portal .search-section .container,
body.bz-listing-retreats .bz-listing-hub-portal .search-section .container {
  padding-inline: 0;
  max-width: none;
}

body.bz-listing-workshops .search-card--listing-hub,
body.bz-listing-retreats .search-card--listing-hub {
  background: #fff;
  color: #0c3c1e;
  border: 1px solid rgba(12, 60, 30, 0.14);
  border-radius: clamp(12px, 2.5vw, 16px);
  box-shadow: 0 12px 36px rgba(12, 60, 30, 0.14);
  padding: clamp(14px, 3.5vw, 22px) clamp(12px, 3vw, 24px);
  max-width: 100%;
  box-sizing: border-box;
}

body.bz-listing-workshops .search-card--listing-hub .search-header h2,
body.bz-listing-retreats .search-card--listing-hub .search-header h2 {
  color: #0c3c1e;
  font-size: clamp(1.1rem, 4.2vw, 1.55rem);
  line-height: 1.2;
}

body.bz-listing-workshops .search-card--listing-hub .search-header p,
body.bz-listing-retreats .search-card--listing-hub .search-header p,
body.bz-listing-workshops .search-card--listing-hub .search-field label,
body.bz-listing-retreats .search-card--listing-hub .search-field label,
body.bz-listing-workshops .search-card--listing-hub .tags-label,
body.bz-listing-retreats .search-card--listing-hub .tags-label {
  color: #3d5c48;
}

body.bz-listing-workshops .search-card--listing-hub .search-form,
body.bz-listing-retreats .search-card--listing-hub .search-form {
  background: #f6f9f2;
  border-color: rgba(12, 60, 30, 0.12);
}

body.bz-listing-workshops .search-card--listing-hub .field-wrap,
body.bz-listing-retreats .search-card--listing-hub .field-wrap,
body.bz-listing-workshops .search-card--listing-hub .field-wrap input,
body.bz-listing-retreats .search-card--listing-hub .field-wrap input {
  color: #0c3c1e;
}

body.bz-listing-workshops .search-card--listing-hub .field-wrap input,
body.bz-listing-retreats .search-card--listing-hub .field-wrap input {
  font-size: max(16px, 1rem);
}

body.bz-listing-workshops .search-card--listing-hub .field-wrap input::placeholder,
body.bz-listing-retreats .search-card--listing-hub .field-wrap input::placeholder {
  color: #6b7f72;
}

body.bz-listing-workshops .search-card--listing-hub .tag,
body.bz-listing-retreats .search-card--listing-hub .tag {
  color: #0c3c1e;
  border-color: rgba(12, 60, 30, 0.2);
  background: #fff;
  min-height: 44px;
  padding: 10px 16px;
  align-items: center;
}

body.bz-listing-workshops .search-card--listing-hub .popular-tags,
body.bz-listing-retreats .search-card--listing-hub .popular-tags {
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  margin-top: clamp(14px, 3vw, 22px);
}

body.bz-listing-workshops .search-card--listing-hub .tags,
body.bz-listing-retreats .search-card--listing-hub .tags {
  flex-wrap: wrap;
  gap: clamp(6px, 2vw, 10px);
  max-width: 100%;
}

body.bz-listing-workshops .search-card--listing-hub .tag.tag--link,
body.bz-listing-retreats .search-card--listing-hub .tag.tag--link,
.search-card--listing-hub .tag.tag--link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  body.bz-listing-workshops .search-card--listing-hub .search-form,
  body.bz-listing-retreats .search-card--listing-hub .search-form {
    grid-template-columns: 1fr;
  }
}

body.bz-listing-workshops .bz-listing-hub-page__body,
body.bz-listing-retreats .bz-listing-hub-page__body {
  order: 1;
  padding: clamp(10px, 2.5vw, 18px) 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 28px);
}

/* פילטרים — שורה אחת, בלי מתיחה (תיקון דליפת CSS מ-hub) */
body.bz-listing-workshops .bz-listing-hub-page .bz-pills__track,
body.bz-listing-retreats .bz-listing-hub-page .bz-pills__track,
body.page-category-hub .bz-listing-hub-page .bz-pills__track {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

body.bz-listing-workshops .bz-listing-hub-grid,
body.bz-listing-retreats .bz-listing-hub-grid {
  margin-top: 0;
}

body.bz-listing-retreats .bz-listing-hub-prose,
body.bz-listing-workshops .bz-listing-hub-prose {
  order: 10;
  margin-top: clamp(8px, 2vw, 16px);
  padding-top: clamp(12px, 2.5vw, 20px);
  border-top: 1px solid rgba(12, 60, 30, 0.1);
}

/* hub: מסתירים רק וידג׳טים של מבחר כרטיסים — לא סקשני טקסט */
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-widget-posts,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-posts,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-posts-container,
body.bz-listing-retreats .bz-retreats-legacy--text article.elementor-post,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-post.elementor-grid-item,
body.bz-listing-retreats .bz-retreats-legacy--text .jet-listing,
body.bz-listing-retreats .bz-retreats-legacy--text .jet-listing-grid,
body.bz-listing-retreats .bz-retreats-legacy--text [class*="elementor-widget-loop"],
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-widget-posts,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-posts,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-posts-container,
body.bz-listing-workshops .bz-workshops-legacy--text article.elementor-post,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-post.elementor-grid-item,
body.bz-listing-workshops .bz-workshops-legacy--text .jet-listing,
body.bz-listing-workshops .bz-workshops-legacy--text .jet-listing-grid,
body.bz-listing-workshops .bz-workshops-legacy--text [class*="elementor-widget-loop"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

body.bz-listing-retreats .bz-retreats-legacy--text .elementor-widget-text-editor,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-widget-heading,
body.bz-listing-retreats .bz-retreats-legacy--text .prose p,
body.bz-listing-retreats .bz-retreats-legacy--text .prose h1,
body.bz-listing-retreats .bz-retreats-legacy--text .prose h2,
body.bz-listing-retreats .bz-retreats-legacy--text .prose h3,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-widget-text-editor,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-widget-heading,
body.bz-listing-workshops .bz-workshops-legacy--text .prose p,
body.bz-listing-workshops .bz-workshops-legacy--text .prose h1,
body.bz-listing-workshops .bz-workshops-legacy--text .prose h2,
body.bz-listing-workshops .bz-workshops-legacy--text .prose h3 {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
}

body.bz-listing-workshops .bz-listing-hub-legacy,
body.bz-listing-retreats .bz-listing-hub-legacy {
  margin-top: clamp(8px, 2vw, 16px);
  min-width: 0;
}

body.bz-listing-workshops .bz-listing-hub-legacy__content,
body.bz-listing-retreats .bz-listing-hub-legacy__content,
body.bz-listing-workshops .bz-listing-hub-legacy__content {
  max-width: 100%;
  overflow-x: clip;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

body.bz-listing-workshops .bz-listing-hub-legacy__content table,
body.bz-listing-retreats .bz-listing-hub-legacy__content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.bz-listing-workshops .bz-listing-hub-legacy__content.prose h2,
body.bz-listing-retreats .bz-listing-hub-legacy__content.prose h2 {
  font-size: clamp(1.15rem, 4vw, 1.6rem);
}

body.page-category-hub .bz-category-legacy .exp-prose-block,
body.page-category-hub .bz-category-legacy .exp-prose-block .elementor-widget-text-editor,
body.page-category-hub .bz-category-legacy .exp-prose-block .elementor-widget-heading {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
}

body.bz-listing-workshops .bz-listing-hub-legacy__content.prose h3,
body.bz-listing-retreats .bz-listing-hub-legacy__content.prose h3 {
  font-size: clamp(1.02rem, 3.2vw, 1.3rem);
}

body.bz-listing-workshops .bz-listing-hub-legacy__content img,
body.bz-listing-retreats .bz-listing-hub-legacy__content img {
  max-width: 100%;
  height: auto;
}

/* כל פורטל ישן בעמוד — נשאר רק search-section--listing-hub (החדש למעלה) */
body.bz-listing-workshops .search-section:not(.search-section--listing-hub),
body.bz-listing-retreats .search-section:not(.search-section--listing-hub),
body.bz-listing-workshops .search-card:not(.search-card--listing-hub),
body.bz-listing-retreats .search-card:not(.search-card--listing-hub) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
}

/* בתוכן הישן — גיבוי ל-Elementor / ad-hero */
body.bz-listing-workshops .bz-listing-hub-legacy .search-section,
body.bz-listing-retreats .bz-listing-hub-legacy .search-section,
body.bz-listing-workshops .bz-listing-hub-legacy .search-card,
body.bz-listing-retreats .bz-listing-hub-legacy .search-card,
body.bz-listing-workshops .bz-listing-hub-legacy form[role="search"],
body.bz-listing-retreats .bz-listing-hub-legacy form[role="search"],
body.bz-listing-workshops .bz-listing-hub-legacy .ad-hero,
body.bz-listing-retreats .bz-listing-hub-legacy .ad-hero,
body.bz-listing-workshops .bz-listing-hub-legacy .ad-hero__search,
body.bz-listing-retreats .bz-listing-hub-legacy .ad-hero__search,
body.bz-listing-workshops .bz-listing-hub-legacy [class*="elementor-widget-search"],
body.bz-listing-retreats .bz-listing-hub-legacy [class*="elementor-widget-search"],
body.bz-listing-workshops .bz-listing-hub-legacy [class*="elementor-section"]:has(form[role="search"]),
body.bz-listing-retreats .bz-listing-hub-legacy [class*="elementor-section"]:has(form[role="search"]),
body.bz-listing-workshops .bz-listing-hub-legacy [class*="elementor-section"]:has(.search-form),
body.bz-listing-retreats .bz-listing-hub-legacy [class*="elementor-section"]:has(.search-form),
body.bz-listing-workshops .bz-listing-hub-legacy [class*="elementor-section"]:has(.search-card),
body.bz-listing-retreats .bz-listing-hub-legacy [class*="elementor-section"]:has(.search-card) {
  display: none !important;
}

body.bz-listing-retreats .bz-retreats-legacy--text .search-header,
body.bz-listing-retreats .bz-listing-hub-legacy__content .popular-tags,
body.bz-listing-retreats .bz-listing-hub-legacy__content .search-form,
body.bz-listing-workshops .bz-workshops-legacy--text .search-header,
body.bz-listing-workshops .bz-workshops-legacy--text .popular-tags,
body.bz-listing-workshops .bz-workshops-legacy--text .search-form {
  display: none !important;
}

/* FAQ ישן מתוכן Elementor — מוצג רק exp-faq החדש */
body.page-category-hub .bz-category-legacy [class*="related-categor"],
body.page-category-hub .bz-listing-hub-legacy__content .related-categories {
  display: none !important;
}

/* רשימת ניווט ישנה (ריטריטים · מומלץ · יוגה…) — עמודי קטגוריה */
body.page-category-hub .bz-category-legacy .elementor-widget-icon-list,
body.page-category-hub .bz-listing-hub-legacy__content .elementor-widget-icon-list,
body.page-category-hub .bz-category-legacy ul.elementor-icon-list-items,
body.page-category-hub .bz-listing-hub-legacy__content ul.elementor-icon-list-items {
  display: none !important;
}

body.bz-listing-retreats .bz-retreats-legacy--text .elementor-widget-toggle,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-widget-accordion,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-toggle,
body.bz-listing-retreats .bz-retreats-legacy--text .elementor-accordion,
body.bz-listing-retreats .bz-listing-hub-legacy__content .elementor-widget-toggle,
body.bz-listing-retreats .bz-listing-hub-legacy__content .elementor-widget-accordion,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-widget-toggle,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-widget-accordion,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-toggle,
body.bz-listing-workshops .bz-workshops-legacy--text .elementor-accordion,
body.bz-listing-workshops .bz-listing-hub-legacy__content .elementor-widget-toggle,
body.bz-listing-workshops .bz-listing-hub-legacy__content .elementor-widget-accordion {
  display: none !important;
}

body.bz-listing-workshops .bz-main > .hero,
body.bz-listing-retreats .bz-main > .hero,
body.bz-listing-workshops .bz-main > .bz-pilot-intro:not([data-reats-workshops-hub]),
body.bz-listing-retreats .bz-main > .bz-pilot-intro:not([data-reats-retreats-hub]),
body.page-category-hub .bz-pilot-intro--category {
  display: none !important;
}

@media (max-width: 720px) {
  body.bz-listing-workshops .bz-workshops-portal__title {
    line-height: 1.2;
  }
}

body.bz-listing-workshops .bz-pill[data-bz-pill="workshops"]:hover {
  background: var(--bz-accent-soft);
  border-color: rgba(47, 125, 63, 0.45);
  color: var(--bz-accent);
}

body.bz-pilot-layout ::selection {
  background: var(--accent-3, #b4d6a0);
  color: var(--ink-0, #0c3c1e);
}
body.bz-pilot-layout ::-moz-selection {
  background: var(--accent-3, #b4d6a0);
  color: var(--ink-0, #0c3c1e);
}

/* Blocks */
.bz-block {
  margin-bottom: clamp(24px, 4vw, 36px);
}

.bz-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-bottom: 14px;
}

.bz-block__head-main {
  flex: 1 1 auto;
  min-width: 0;
}

.bz-block__head h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
}

.bz-block__head a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bz-accent-2);
  text-decoration: none;
}

.bz-block__filter {
  margin: 0;
  width: 100%;
  font-size: 0.86rem;
  color: var(--ink-2, #5a7a64);
  order: 3;
}

.bz-block__count {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-2, #5a7a64);
  white-space: nowrap;
}

.bz-empty {
  margin: 0;
  padding: clamp(20px, 4vw, 32px);
  text-align: center;
  color: var(--ink-2, #5a7a64);
  background: var(--bz-accent-soft);
  border-radius: var(--bz-radius);
  border: 1px dashed rgba(12, 60, 30, 0.18);
}

.bz-empty a {
  color: var(--bz-accent-2);
  font-weight: 600;
}

/* Brand cards */
.bz-brands {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

@media (min-width: 520px) {
  .bz-brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 519px) {
  .bz-brands {
    grid-template-columns: minmax(0, 1fr);
  }

  .bz-vouchers {
    grid-template-columns: minmax(0, 1fr);
  }

  .bz-discovery__fields {
    grid-template-columns: minmax(0, 1fr);
  }
}

.bz-brand-card {
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
  border-radius: var(--bz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bz-brand-card:hover {
  box-shadow: 0 14px 32px -16px rgba(12, 60, 30, 0.25);
  transform: translateY(-2px);
}

.bz-brand-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--bz-accent-soft);
}

.bz-brand-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-brand-card__tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bz-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.bz-brand-card__price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bz-accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}

.bz-brand-card__host {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  background: var(--bz-accent-soft);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.8rem;
}

.bz-brand-card__host img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-brand-card__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bz-brand-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.bz-brand-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.bz-brand-card__cat {
  font-size: 0.82rem;
  color: var(--bz-accent-2);
  font-weight: 600;
  text-decoration: none;
}

.bz-brand-card__body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-2);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Vouchers */
.bz-vouchers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 700px) {
  .bz-vouchers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bz-voucher {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--bz-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
}

.bz-voucher__img {
  display: block;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--bz-accent-soft);
}

.bz-voucher__price {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bz-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.bz-voucher__title {
  padding: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

/* Category row */
.bz-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bz-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bz-cat, var(--bz-accent-soft));
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile tabs */
.bz-mobile-tabs {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  background: #fff;
  border-top: 1px solid rgba(12, 60, 30, 0.12);
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 1100px) {
  .bz-mobile-tabs {
    display: none;
  }
}

.bz-mobile-tabs__btn {
  flex: 1;
  min-height: 48px;
  border: 0;
  background: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bz-accent);
  text-decoration: none;
  text-align: center;
}

.bz-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(12, 40, 22, 0.45);
}

.bz-drawer-backdrop.is-visible {
  display: block;
}

body.bz-drawer-open {
  overflow: hidden;
}

/* Home pilot CTA */
.btn-pilot-home {
  background: var(--bz-accent-soft) !important;
  border: 2px solid var(--bz-accent-2) !important;
  color: var(--bz-accent) !important;
  font-weight: 800 !important;
}

.btn-pilot-home:hover {
  background: var(--bz-accent-2) !important;
  color: #fff !important;
}

/* עמודי תוכן / קטגוריה / תגית — בתוך עמודת המרכז (כמו דף הבית) */
body.bz-pilot-layout .bz-pilot-intro--page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  flex-shrink: 0;
  overflow: visible;
}

body.bz-pilot-layout .bz-pilot-intro--page .search-section:not(.search-section--listing-hub) {
  margin-top: clamp(16px, 3vw, 28px);
}

body.bz-pilot-layout .bz-pilot-intro--page .bz-inner-hero .hero-content,
body.bz-pilot-layout .bz-pilot-intro--page .bz-inner-hero__content {
  padding-bottom: clamp(28px, 4.5vw, 44px);
}

body.bz-pilot-layout .bz-pilot-intro--page .search-section .container {
  max-width: none;
  width: 100%;
  padding-inline: 0;
}

/* עמוד קטגוריה בודד — HERO ברוחב 95% + blur כמו חוויה */
.page-category {
  --exp-content-width: 95%;
  --exp-hero-pad: clamp(20px, 4vw, 32px);
  --exp-hero-grid-gap: clamp(18px, 3.5vw, 28px);
  --exp-hero-back-gap: clamp(20px, 3.5vw, 28px);
  --exp-hero-stack-gap: clamp(14px, 2.5vw, 20px);
}

body.bz-pilot-layout .bz-page-content--category {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: var(--exp-content-width);
  max-width: var(--exp-content-width);
  margin-inline: auto;
  padding: clamp(14px, 3vw, 24px) 0 0;
  box-sizing: border-box;
  overflow: visible;
}

/* קטגוריה hub — אותו רוחב/פריסה כמו /retreats */
body.page-category-hub.bz-pilot-layout .bz-page-content--category {
  --exp-content-width: 95%;
  width: 95%;
  max-width: 95%;
  padding-top: 0;
}

body.page-category-hub.bz-listing-workshops .bz-listing-hub-page,
body.page-category-hub.bz-listing-retreats .bz-listing-hub-page {
  --bz-hub-content-width: 95%;
  width: var(--bz-hub-content-width);
  max-width: var(--bz-hub-content-width);
  margin-inline: auto;
}

body.bz-pilot-layout .bz-page-content--category > * {
  width: 100%;
  max-width: 100%;
}

.bz-pilot-intro--category {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  box-sizing: border-box;
}

.bz-pilot-intro--category .bz-cat-hero {
  padding-inline: 0;
}

.page-category .exp-event-hero__panel h1,
.page-category .exp-event-hero__panel .exp-event-lead,
.page-category .exp-event-hero__panel .exp-event-type,
.page-category .exp-event-hero__panel .exp-event-badge {
  opacity: 1;
}

.page-category .exp-event-hero__panel h1,
.page-category .exp-event-title {
  margin: 0;
  font-size: clamp(1.35rem, 3.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0c3c1e !important;
}

.page-category .exp-event-hero__panel .exp-event-lead {
  margin: 0;
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  line-height: 1.55;
  color: #1a3d28 !important;
}

/* תיאור ראשי — כפתור [...] להמשך קריאה */
.hero-main-desc {
  margin: 0;
}

.hero-main-desc__text {
  display: inline;
}

.hero-main-desc__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin-inline-start: 2px;
  padding: 0 8px;
  vertical-align: middle;
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1;
  letter-spacing: 0.02em;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}

.hero-main-desc__more:hover,
.hero-main-desc__more:focus-visible {
  background: rgba(12, 60, 30, 0.1);
  color: #0c3c1e;
  outline: none;
}

.bz-main-description-continue {
  scroll-margin-top: clamp(72px, 14vw, 120px);
}

.bz-main-description-continue__head {
  margin-bottom: clamp(10px, 2.5vw, 16px);
}

.bz-main-description-continue__title {
  margin: 4px 0 0;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 800;
  color: #0c3c1e;
}

.bz-main-description-continue__body {
  margin: 0;
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  line-height: 1.65;
  color: #1a3d28;
}

.bz-main-description-continue__body p {
  margin: 0;
}

body.bz-listing-retreats .bz-main-description-continue__title,
body.bz-listing-workshops .bz-main-description-continue__title,
body.bz-listing-retreats .bz-main-description-continue__body,
body.bz-listing-workshops .bz-main-description-continue__body {
  color: #0c3c1e;
}

.bz-cat-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  font-size: 0.82rem;
  color: #1a3d28;
  margin: 0;
}

.bz-cat-hero__crumbs a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bz-cat-hero__crumb-sep {
  opacity: 0.55;
}

.bz-cat-hero__icon-badge {
  font-size: 1.1rem;
  line-height: 1;
}

.page-category .bz-page-content--category .exp-section {
  margin-top: clamp(20px, 3.5vw, 28px);
}

/* תצוגה מקדימה HERO באדמין */
.cat-hero-preview {
  position: relative;
  isolation: isolate;
  border-radius: 12px;
  overflow: hidden;
  min-height: 108px;
  border: 1px solid rgba(12, 60, 30, 0.12);
  background: linear-gradient(135deg, #8fb7a3 0%, #5a8878 100%);
}

.cat-hero-preview__backdrop {
  display: none;
  position: absolute;
  inset: -20%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.4) brightness(1.7);
  opacity: 0.55;
  transform: scale(1.15);
}

.cat-hero-preview--blur .cat-hero-preview__backdrop {
  display: block;
}

.cat-hero-preview__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.32) 100%);
}

.cat-hero-preview__body {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  color: #0c3c1e;
}

.cat-hero-preview__kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2f7d3f;
  margin-bottom: 4px;
}

.cat-hero-preview__title {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.cat-hero-preview__icon {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.25rem;
}

.bz-inner-hero {
  position: relative;
  border-radius: var(--bz-radius);
  overflow: hidden;
  min-height: clamp(220px, 36vw, 360px);
  margin: 0;
}

.bz-inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bz-inner-hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bz-inner-hero .hero-content,
.bz-inner-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 4.5vw, 44px);
  max-width: 100%;
  box-sizing: border-box;
}

.bz-inner-hero__icon {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1;
  margin-bottom: 10px;
}

.bz-inner-hero__crumbs {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: #fff;
  opacity: 0.95;
}

.bz-inner-hero__crumbs a,
.bz-inner-hero__crumbs span {
  color: #fff;
}

.bz-inner-hero__crumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.bz-inner-hero__crumbs a:hover,
.bz-inner-hero__crumbs a:focus-visible {
  color: rgba(255, 255, 255, 0.88);
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.bz-page-content--inner {
  padding: 0 var(--bz-pad-x) clamp(32px, 5vw, 56px);
  min-width: 0;
  box-sizing: border-box;
}

body.bz-pilot-layout .bz-page-content--inner > .bz-pilot-intro--page {
  margin-inline: calc(-1 * var(--bz-pad-x));
  width: calc(100% + 2 * var(--bz-pad-x));
  max-width: none;
  padding-inline: var(--bz-pad-x);
  box-sizing: border-box;
}

body.bz-pilot-layout .bz-page-content--inner .bz-block {
  margin-top: var(--bz-gap);
}

/* עמודי נחיתה — 95% כמו hub (קהילה · שוברי מתנה) */
body.page-community-hub .bz-page-content--inner,
body.page-gift-vouchers .bz-page-content--inner {
  padding: 0;
  width: 100%;
  max-width: none;
}

body.page-community-hub .bz-main__content,
body.page-gift-vouchers .bz-main__content {
  padding: var(--bz-gap) 0 0;
}

.bz-block--prose {
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
  border-radius: var(--bz-radius);
  padding: clamp(20px, 4vw, 32px);
}

.bz-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.bz-empty {
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
  border-radius: var(--bz-radius);
}

body.bz-pilot-layout .bz-page-content--inner .community-banner,
body.bz-pilot-layout .bz-page-content--inner .community-strip {
  margin-top: var(--bz-gap);
  border-radius: var(--bz-radius);
  overflow: hidden;
  max-width: 100%;
}

body.bz-pilot-layout .bz-page-content--inner .blog-hub-about {
  margin-inline: calc(-1 * var(--bz-pad-x));
  width: calc(100% + 2 * var(--bz-pad-x));
  max-width: none;
  box-sizing: border-box;
}

body.bz-pilot-layout .bz-page-content--inner .blog-hub-about__band {
  padding-inline: var(--bz-pad-x);
}

body.bz-pilot-layout .bz-page-content--inner .magazine-section + .blog-hub-about {
  margin-top: clamp(8px, 2vw, 16px);
}

.search-page-form-block .search-form--page {
  display: grid;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
  border-radius: var(--bz-radius);
  padding: clamp(16px, 3vw, 24px);
}

.search-page-form-block .search-form--page .search-field input {
  font-size: 16px;
  min-height: 44px;
}

.bz-article-meta {
  margin: 0 0 16px;
  color: var(--ink-2, #5a6478);
  font-size: 0.9rem;
}

@media (min-width: 1100px) {
  .bz-inner-hero .hero-content,
  .bz-inner-hero__content {
    padding-inline: clamp(28px, 3vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bz-brand-card,
  .bz-nav__link {
    transition: none;
  }
}

/* =========================================================
   רספונסיביות — תיקונים גלובליים (מובייל → דסקטופ)
   ========================================================= */

/* עמודי hub — רוחב מלא במסכים צרים */
@media (max-width: 520px) {
  body.bz-listing-workshops .bz-listing-hub-page,
  body.bz-listing-retreats .bz-listing-hub-page,
  body.page-category-hub.bz-listing-workshops .bz-listing-hub-page,
  body.page-category-hub.bz-listing-retreats .bz-listing-hub-page {
    --bz-hub-content-width: 100%;
    width: 100%;
    max-width: 100%;
  }

  body.page-category-hub.bz-pilot-layout .bz-page-content--category {
    width: 100%;
    max-width: 100%;
  }

  body.bz-listing-workshops .bz-hub-hero__card,
  body.bz-listing-retreats .bz-hub-hero__card {
    padding: clamp(14px, 3.5vw, 20px);
  }
}

/* כותרות בלוק + ספירה — עמודה במובייל */
@media (max-width: 520px) {
  .bz-block__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .bz-block__count {
    white-space: normal;
    align-self: flex-start;
  }

  .bz-block__head-main {
    width: 100%;
  }
}

/* פורטל חיפוש בית — ריווח במובייל */
@media (max-width: 720px) {
  body.bz-pilot-layout .bz-pilot-intro:not(.bz-pilot-intro--page) .search-section:not(.search-section--listing-hub) {
    margin-top: clamp(-28px, -5vw, -60px);
  }

  body.bz-pilot-layout .bz-pilot-intro--page .search-section:not(.search-section--listing-hub) {
    margin-top: clamp(14px, 3.5vw, 22px);
  }

  body.bz-pilot-layout .bz-pilot-intro .search-card:not(.search-card--listing-hub) {
    padding: clamp(14px, 3.5vw, 22px) clamp(12px, 3vw, 20px);
  }

  body.bz-pilot-layout .bz-pilot-intro .search-card .tag,
  body.bz-pilot-layout .bz-pilot-intro .search-card .tag.tag--link {
    min-height: 44px;
    padding: 10px 14px;
  }
}

/* כותרת סדנאות ב-main_pilot (אם מוצג) */
.bz-workshops-hub-head {
  padding: clamp(12px, 3vw, 20px) 0;
}

.bz-workshops-hub-head__title {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--bz-accent, #0c3c1e);
}

.bz-workshops-hub-head__lead {
  margin: 0;
  font-size: clamp(0.9rem, 2.6vw, 1.05rem);
  line-height: 1.45;
  color: var(--ink-2, #335a44);
}

/* מגע — אזורי לחיצה מינימליים */
@media (pointer: coarse) {
  body.bz-listing-retreats .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back,
  body.bz-listing-workshops .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back,
  body.page-category-hub .bz-hub-hero--exp .exp-event-hero__panel > .exp-event-back,
  .exp-event-hero__panel > .exp-event-back {
    min-height: 44px;
    padding: 10px 16px;
  }

  .bz-pilot-grid .retreat-save {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .bz-widget__head a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 6px;
  }

  .bz-search .btn {
    min-height: 44px;
  }
}

/* שדות טופס — מניעת זום ב-iOS */
.bz-listing-hub-portal input,
.bz-listing-hub-portal select,
.bz-listing-hub-portal textarea,
.bz-pilot-intro input[type="text"],
.bz-pilot-intro input[type="search"] {
  font-size: max(16px, 1rem);
}

/* גלילה אופקית מבוקרת לשורות ארוכות */
.bz-cat-row {
  max-width: 100%;
}

@media (max-width: 480px) {
  .bz-cat-pill {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}
