/* ============================================================
   AL-HABIB REAL ESTATE — NEWS LISTING PAGE CSS (English / LTR)
   Imports the shared (RTL-first) base, then applies LTR overrides
   (direction, alignment, Latin body font).
   ============================================================ */

/* ── Shared base from AR news-listing ── */
@import url('../ar/news-listing.css');

/* ── Latin body font for copy-heavy elements ── */
.mah-nl-breadcrumbs__link,
.mah-nl-breadcrumbs__current,
.mah-nl-feature__meta,
.mah-nl-feature__excerpt,
.mah-nl-feature__link,
.mah-nl-tag,
.mah-nl-filter__value,
.mah-nl-filter__label,
.mah-nl-related__link,
.mah-nl-project__tag {
  font-family: 'Work Sans', system-ui, sans-serif;
}

/* ── LTR alignment overrides ── */
.mah-nl__label,
.mah-nl__heading,
.mah-nl-feature__title,
.mah-nl-feature__excerpt,
.mah-nl-filter__value,
.mah-nl-related__title {
  text-align: left;
}

/* Feature: image on the left, copy on the right (LTR natural order) */
.mah-nl-feature {
  flex-direction: row;
}

/* Alternate feature card: image on the right in LTR */
.mah-nl-feature--alt {
  flex-direction: row-reverse;
}

/* Re-assert mobile stacking (EN rules cascade after the imported AR media query) */
@media (max-width: 992px) {
  .mah-nl-feature,
  .mah-nl-feature--alt {
    flex-direction: column;
  }
}

.mah-nl-filters {
  justify-content: flex-start;
}
