/* ALO_PATCH_TITLE_CLAMP_2_LINES_FINAL_START */
/* Fix title card listing: chỉ hiện 2 dòng, dài thì ...; không lòi dòng thứ 3 */

/* Các selector phổ biến của card listing trang chủ/tin đăng */
:is(
  .listing-card, .listing-item, .item-listing, .listing-box, .listing-grid-item,
  .post-item, .post-card, .product-card, .service-card, .dtx-card,
  .dtx-listing-card, .alo-listing-card, .tin-dang-item, .home-listing-item,
  .card, .item, [class*="listing"], [class*="product"], [class*="service"]
) :is(
  .title, .name, .card-title, .listing-title, .post-title,
  .item-title, .product-title, .service-title,
  [class*="title"], h2, h3, h4
),
:is(
  .listing-card, .listing-item, .item-listing, .listing-box, .listing-grid-item,
  .post-item, .post-card, .product-card, .service-card, .dtx-card,
  .dtx-listing-card, .alo-listing-card, .tin-dang-item, .home-listing-item,
  .card, .item, [class*="listing"], [class*="product"], [class*="service"]
) :is(
  .title, .name, .card-title, .listing-title, .post-title,
  .item-title, .product-title, .service-title,
  [class*="title"], h2, h3, h4
) a {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 20px !important;
  max-height: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
}

/* Bắt riêng các link title theo URL listing mà site đang dùng: /taxi/... */
:is(.tin-dang-moi, .home-new-listings, .latest-listings, .listing-section, .listing-grid, .row, .container)
  a[href*="/taxi/"]:not([class*="category"]):not([class*="province"]):not([class*="location"]),
:is(.tin-dang-moi, .home-new-listings, .latest-listings, .listing-section, .listing-grid, .row, .container)
  a[href*="/thue-xe/"]:not([class*="category"]):not([class*="province"]):not([class*="location"]),
:is(.tin-dang-moi, .home-new-listings, .latest-listings, .listing-section, .listing-grid, .row, .container)
  a[href*="/van-tai/"]:not([class*="category"]):not([class*="province"]):not([class*="location"]) {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  line-height: 20px !important;
  max-height: 40px !important;
  min-height: 40px !important;
  height: 40px !important;
}

/* Chặn trường hợp thẻ cha đã clamp nhưng thẻ con vẫn lòi dòng */
:is(.listing-title, .card-title, .item-title, .product-title, .service-title, [class*="title"]) > * {
  max-height: 40px !important;
  overflow: hidden !important;
}
/* ALO_PATCH_TITLE_CLAMP_2_LINES_FINAL_END */
