* {
  box-sizing: border-box;
}
body {
  font-family: "Noto Naskh Arabic UI", "Noto Naskh Arabic", "Cairo", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}
.b24-location-field {
  position: relative;
}
.b24-location-field .place-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 3000;
  width: 100%;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  overflow: hidden;
  max-height: 360px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  direction: ltr;
  text-align: left;
}
.b24-location-field .place-suggestions li {
  padding: 7px 24px;
  cursor: pointer;
  text-align: left;
  direction: ltr;
}
.b24-location-field .place-suggestions li:hover,
.b24-location-field .place-suggestions li.active {
  background: #f3f3f3;
}
.b24-location-field .place-result {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: #111;
}
.b24-location-field .place-result-state {
  display: block;
  color: #777;
  font-size: 12px;
}
.search-btn {
  position: absolute;
  left: 175px;
  top: 50%;
  transform: translateY(-50%);
  background: #27c67b;
  border: none;
  border-radius: 5px;
  padding: 7px 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.14s;
  box-shadow: 0 2px 5px #a7e3c0b0;
}
.search-btn:hover {
  background: #23b76e;
}
.search-btn img {
  width: 18px;
  height: 18px;
  display: block;
}
.results-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
  min-width: 0;
  max-width: 680px;
  margin: 0;
}
@media (max-width: 900px) {
  .results-section {
    gap: 2px !important;
    margin: 0 !important;
  }
  .ad-card {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
}
.ad-card {
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #e2efea;
  border-radius: 12px;
  box-shadow: 0 1px 9px #a0e2be18;
  margin-bottom: 0px;
  max-width: 800px;
  min-width: 800px;
  width: 100%;
  transition:
    box-shadow 0.18s,
    transform 0.15s;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.ad-card:hover {
  box-shadow: 0 4px 20px #1bd98622;
  transform: translateY(-3px) scale(1.017);
}
.ad-image {
  width: 215px;
  min-width: 215px;
  height: 150px;
  background: #eef9f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1.5px solid #f2f5f5;
  position: relative;
}
.ad-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.ad-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 18px 10px 12px;
  gap: 3px;
}
.ad-location {
  color: #999;
  font-size: 13px;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.ad-title {
  margin: 0 0 4px 0;
  font-size: 21px;
  font-weight: bold;
  color: #1a242b;
  line-height: 1.15;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ad-desc {
  font-size: 14px;
  color: #444e59;
  margin-bottom: 3px;
  margin-top: 2px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ad-meta-bar {
  display: flex;
  gap: 7px;
  margin-top: 7px;
}
.ad-meta-bar span {
  background: #f7f7f7;
  border-radius: 7px;
  padding: 2.5px 10px;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e3efec;
}
.ad-price {
  font-size: 22px;
  color: #3476c4;
  font-weight: bold;
  margin-top: 7px;
  margin-bottom: 0;
  letter-spacing: 0.5px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  align-self: flex-start;
  display: inline-block;
}
.ad-date {
  font-size: 12.5px;
  color: #909e95;
  margin-top: 8px;
  text-align: left;
  align-self: flex-start;
}
@media (max-width: 900px) {
  body {
    padding-top: 120px !important;
  }
  .fixed-filter-btn {
    position: fixed;
    top: 65px;
    right: 0;
    left: 0;
    width: 100vw;
    max-width: 500px;
    margin: 0 auto;
    z-index: 2001;
    display: flex;
    justify-content: center;
  }
  .fixed-filter-btn button {
    width: 100%;
    background: #19ba7d;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 0;
    margin: 0 2vw;
    box-shadow: 0 4px 15px #19c9903e;
    transition: background 0.17s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.1px;
  }
  .fixed-filter-btn button svg {
    margin-left: 4px;
  }
  .content {
    flex-direction: column;
    gap: 12px;
  }
  .filter-bar {
    display: none !important;
  }
  .results-section {
    width: 100%;
  }
  .ad-card {
    width: 98vw;
    min-width: 0;
    max-width: 98vw;
    margin: 10px auto 12px auto;
    border-radius: 18px;
    box-shadow: 0 2px 14px #2db87e15;
    padding: 0;
    align-items: stretch;
    height: 120px;
    position: relative;
    flex-direction: row;
    overflow: hidden;
  }
  .ad-image {
    width: 39vw;
    min-width: 39vw;
    max-width: 44vw;
    height: 120px;
    border-radius: 18px 0 0 18px;
    border-left: none;
    position: relative;
    overflow: hidden;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0;
  }
  .ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 0 0 18px;
    background: #e9fbf4;
    display: block;
  }
  .ad-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 7px 10px 7px;
    gap: 2.5px;
    min-width: 0;
    position: relative;
    overflow: hidden;
    height: 100%;
    justify-content: flex-start;
  }
  .ad-title {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 3px;
    color: #181818;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.15;
  }
  .ad-desc {
    font-size: 12.7px;
    color: #636363;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .ad-location {
    font-size: 12px;
    margin-bottom: 1px;
  }
  .ad-meta-bar {
    gap: 5px;
    margin: 2px 0 1px 0;
  }
  .ad-meta-bar span {
    padding: 2px 7px;
    font-size: 12px;
    border-radius: 5px;
  }
  .ad-price {
    font-size: 17.5px;
    color: #3476c4;
    font-weight: bold;
    margin: 3px 0 0 0;
    letter-spacing: 0.5px;
    display: block;
  }
  .ad-date {
    font-size: 11.3px;
    color: #7e948b;
    margin-top: 6px;
    align-self: flex-end;
  }
  .ad-img-count {
    position: absolute;
    bottom: 8px;
    left: 10px;
    background: #222d;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    padding: 1px 7px;
    z-index: 4;
    font-family: inherit;
  }
}
.apply-filter-btn {
  background: #1db36a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 17px;
  font-family: inherit;
  font-weight: bold;
  padding: 10px 0;
  margin-top: 13px;
  box-shadow: 0 2px 10px #19c99022;
  transition: background 0.17s;
  cursor: pointer;
}
.apply-filter-btn:hover {
  background: #18995a !important;
}
@media (min-width: 901px) {
  .fixed-filter-btn {
    display: none !important;
  }
}
body {
  padding-top: 0 !important;
}
.results-site-header .b24-main-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.results-site-header .b24-header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
.results-site-header .b24-header-action-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.results-site-header .b24-category-select {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 34px 0 10px;
  border: 0;
  border-left: 1px solid #e4e7ec;
  background: #fff;
  color: #344054;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  outline: 0;
}
.results-site-header .b24-location-field input {
  border: 0 !important;
}
@media (max-width: 900px) {
  .results-site-header .site-name-row {
    height: 58px !important;
    min-height: 58px !important;
  }
  .results-site-header .header-actions-row {
    flex-direction: column !important;
    padding: 10px !important;
  }
  .results-site-header .b24-main-actions {
    width: 100%;
    justify-content: center;
  }
  .results-site-header .b24-search {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    grid-template-columns: 1fr 1fr !important;
    border-radius: 18px !important;
  }
  .results-site-header .b24-search > * {
    width: 100% !important;
    border-bottom: 1px solid #e4e7ec !important;
  }
  .results-site-header .b24-find {
    width: calc(100% - 6px) !important;
    margin: 3px !important;
  }
  .results-site-header .b24-main-actions span {
    display: inline !important;
  }
  .fixed-filter-btn {
    position: static !important;
    width: 100% !important;
    margin: 10px auto !important;
  }
}

@media (max-width: 900px) {
  body {
    background: #f4f4f4 !important;
    color: #1d1f23 !important;
    overflow-x: hidden !important;
  }

  .content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 84px !important;
    margin: 0 !important;
    display: block !important;
  }

  .results-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    margin: 0 !important;
    gap: 8px !important;
    align-items: stretch !important;
    box-sizing: border-box !important;
  }

  .ad-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 132px !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    background: #fff !important;
    border: 1px solid #dedede !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    overflow: hidden !important;
    transform: none !important;
  }

  .ad-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .ad-image {
    width: 38% !important;
    min-width: 38% !important;
    max-width: 38% !important;
    height: 132px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #e8eaed !important;
    order: 2 !important;
  }

  .ad-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    background: #e8eaed !important;
  }

  .ad-detail {
    order: 1 !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 132px !important;
    padding: 10px 11px 9px !important;
    display: grid !important;
    grid-template-rows: auto auto 1fr auto auto !important;
    gap: 2px !important;
    overflow: hidden !important;
  }

  .ad-location {
    order: 4 !important;
    margin: 2px 0 0 !important;
    color: #6b7280 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ad-location img {
    width: 14px !important;
    height: 14px !important;
    opacity: 0.8 !important;
  }

  .ad-title {
    order: 1 !important;
    margin: 0 !important;
    color: #1f2933 !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ad-desc {
    order: 2 !important;
    margin: 0 !important;
    color: #5f6368 !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .ad-price {
    order: 3 !important;
    margin: 4px 0 0 !important;
    color: #3476c4 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
    align-self: start !important;
  }

  .ad-meta-bar {
    display: none !important;
  }

  .ad-date {
    order: 5 !important;
    margin: 0 !important;
    color: #7b8187 !important;
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    align-self: end !important;
    text-align: right !important;
  }

  .ad-img-count {
    left: 8px !important;
    bottom: 8px !important;
    padding: 1px 7px !important;
    border-radius: 999px !important;
    background: rgba(0, 0, 0, 0.72) !important;
    color: #fff !important;
    font-size: 12px !important;
  }
}

.b24-results-featured-slot {
  width: min(1050px, 94vw);
  min-height: 74px;
  margin: 22px auto 28px auto;
  border: 1px dashed #b8d0ea;
  border-radius: 18px;
  background: #f7fbff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2a6cb9;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(52, 118, 196, 0.06);
}
@media (min-width: 901px) {
  .content {
    margin-top: 24px !important;
  }
}
.filter-bar h2.filter-title-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  margin: 0 auto 18px auto !important;
  padding: 0 !important;
  border: 1px solid rgba(52, 118, 196, 0.18) !important;
  border-radius: 14px !important;
  background: #f7fbff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  line-height: 1 !important;
}
.filter-bar h2.filter-title-icon svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block !important;
  fill: none !important;
  stroke: #3476c4 !important;
  color: #3476c4 !important;
}
.filter-bar h2.filter-title-icon svg * {
  fill: none !important;
  stroke: #3476c4 !important;
}
.apply-filter-btn,
button.apply-filter-btn,
.filter-bar .apply-filter-btn {
  background: #3476c4 !important;
  color: #fff !important;
  border: none !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
}
.apply-filter-btn:hover,
button.apply-filter-btn:hover {
  background: #1e61af !important;
  color: #fff !important;
}
.apply-filter-btn svg,
button.apply-filter-btn svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: #fff !important;
}
.apply-filter-btn svg *,
button.apply-filter-btn svg * {
  fill: #fff !important;
  stroke: #fff !important;
  color: #fff !important;
}
.apply-filter-btn::before,
button.apply-filter-btn::before,
.apply-filter-btn::after,
button.apply-filter-btn::after {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.ad-meta-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-top: 7px !important;
  margin-bottom: 3px !important;
  align-items: center !important;
  justify-content: flex-start !important;
}
.ad-meta-bar span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  min-width: auto !important;
  max-width: 100% !important;
  background: #f4f8fd !important;
  border: 1px solid #d5e4f3 !important;
  color: #26394f !important;
  border-radius: 999px !important;
  padding: 4px 10px !important;
  font-size: 12.7px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}
.ad-meta-bar span b {
  color: #3476c4 !important;
  font-weight: 800 !important;
  margin-inline-end: 2px !important;
}
@media (min-width: 901px) {
  .ad-card {
    min-height: 178px !important;
  }
  .ad-image {
    height: auto !important;
    min-height: 178px !important;
  }
  .ad-detail {
    justify-content: flex-start !important;
    padding-top: 14px !important;
  }
}
@media (max-width: 900px) {
  .ad-card {
    height: auto !important;
    min-height: 148px !important;
  }
  .ad-image {
    height: auto !important;
    min-height: 148px !important;
  }
  .ad-meta-bar {
    max-height: 45px !important;
    overflow: hidden !important;
  }
  .ad-meta-bar span {
    font-size: 11.2px !important;
    padding: 2.5px 7px !important;
    gap: 3px !important;
  }
}

.b24-results-categories {
  width: min(1120px, 94vw);
  margin: -10px auto 22px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px 22px;
  direction: rtl;
}
.b24-results-category {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  min-width: 86px;
  max-width: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  color: #2a6cb9;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 0.16s ease,
    color 0.16s ease;
}
.b24-results-category:hover {
  transform: translateY(-2px);
  color: #1e61af;
}
.b24-results-category .cat-icon {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #eaf1f8, #eaf1f8);
  border: 1px solid #b8d0ea;
  box-shadow: 0 10px 24px rgba(52, 118, 196, 0.08);
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
.b24-results-category svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.b24-results-category span:last-child {
  font-size: 14px;
}
.b24-results-category.active .cat-icon {
  background: #3476c4;
  border-color: #3476c4;
  color: #fff;
  box-shadow: 0 14px 30px rgba(52, 118, 196, 0.22);
}
.b24-results-category.active {
  color: #3476c4;
}
@media (max-width: 900px) {
  .b24-results-categories {
    width: 100%;
    margin: 8px auto 14px auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 12px 8px 12px;
    gap: 12px;
    scrollbar-width: none;
  }
  .b24-results-categories::-webkit-scrollbar {
    display: none;
  }
  .b24-results-category {
    min-width: 76px;
    max-width: 76px;
  }
  .b24-results-category .cat-icon {
    width: 58px;
    height: 58px;
  }
  .b24-results-category svg {
    width: 30px;
    height: 30px;
  }
  .b24-results-category span:last-child {
    font-size: 12.5px;
  }
}

#resultsCategoriesStrip.b24-results-categories {
  width: min(1120px, 94vw) !important;
  margin: 0 auto 24px auto !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  gap: 14px 18px !important;
  background: transparent !important;
}
#resultsCategoriesStrip .b24-results-category {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  height: auto !important;
  color: #2a6cb9 !important;
  border-radius: 0 !important;
}
#resultsCategoriesStrip .b24-results-category .cat-icon {
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, #f6fbff 0%, #eaf1f8 100%) !important;
  border: 1px solid #b8d0ea !important;
  box-shadow: 0 10px 24px rgba(52, 118, 196, 0.1) !important;
  color: #3476c4 !important;
}
#resultsCategoriesStrip .b24-results-category.active .cat-icon {
  background: #3476c4 !important;
  border-color: #3476c4 !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(52, 118, 196, 0.25) !important;
}
#resultsCategoriesStrip .b24-results-category span:last-child {
  display: block !important;
  color: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-top: 2px !important;
  background: transparent !important;
}
#resultsCategoriesStrip .b24-results-category:hover {
  transform: translateY(-2px) !important;
}
@media (max-width: 900px) {
  #resultsCategoriesStrip.b24-results-categories {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    padding: 0 12px 8px !important;
  }
  #resultsCategoriesStrip .b24-results-category {
    width: 78px !important;
    min-width: 78px !important;
    max-width: 78px !important;
  }
  #resultsCategoriesStrip .b24-results-category .cat-icon {
    width: 60px !important;
    height: 60px !important;
  }
}

:root {
  --b24-results-shell-width: 1084px;
  --b24-results-shell-vw: 94vw;
}
@media (min-width: 901px) {
  .b24-results-featured-slot {
    width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    max-width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    margin: 22px auto 14px auto !important;
  }

  #resultsCategoriesStrip.b24-results-categories {
    width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    max-width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    margin: 0 auto 18px auto !important;
    padding: 0 !important;
    gap: 12px 16px !important;
  }

  .content {
    width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    max-width: min(var(--b24-results-shell-width), var(--b24-results-shell-vw)) !important;
    margin: 0 auto 50px auto !important;
    padding: 0 !important;
    display: flex !important;
    direction: ltr !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 22px !important;
    box-sizing: border-box !important;
  }

  .content > .filter-bar {
    direction: rtl !important;
    order: 2 !important;
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important;
    margin: 0 !important;
  }

  .content > .results-section {
    direction: rtl !important;
    order: 1 !important;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
  }

  .content > .results-section .ad-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  #resultsCategoriesStrip .b24-results-category {
    width: 94px !important;
    min-width: 94px !important;
    max-width: 94px !important;
  }
  #resultsCategoriesStrip .b24-results-category .cat-icon {
    width: 82px !important;
    height: 82px !important;
  }
  #resultsCategoriesStrip .b24-results-category svg {
    width: 43px !important;
    height: 43px !important;
  }
  #resultsCategoriesStrip .b24-results-category span:last-child {
    font-size: 14px !important;
  }
}

@media (max-width: 900px) {
  #resultsCategoriesStrip .b24-results-category .cat-icon {
    width: 64px !important;
    height: 64px !important;
  }
  #resultsCategoriesStrip .b24-results-category svg {
    width: 34px !important;
    height: 34px !important;
  }
}

.ad-location-date {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-bottom: 3px !important;
}
.ad-location-date .ad-location {
  margin: 0 !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.ad-location-date .ad-date {
  margin: 0 !important;
  align-self: center !important;
  text-align: left !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
  color: #111 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.ad-location-date .ad-date .b24-date-icon {
  width: 14px !important;
  height: 14px !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  color: #111 !important;
  stroke: #111 !important;
}
@media (min-width: 901px) {
  .content {
    width: min(900px, calc(100vw - 430px)) !important;
    max-width: 900px !important;
    min-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 22px !important;
  }
  .content > .filter-bar {
    width: 230px !important;
    min-width: 230px !important;
    max-width: 230px !important;
  }
  .content > .results-section {
    align-items: stretch !important;
  }
  .content > .results-section .ad-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .content {
    width: min(760px, calc(100vw - 360px)) !important;
    max-width: 760px !important;
    min-width: 460px !important;
  }
}
@media (max-width: 900px) {
  .ad-location-date {
    order: 4 !important;
    margin: 2px 0 0 !important;
    gap: 10px !important;
    overflow: hidden !important;
  }
  .ad-location-date .ad-location {
    flex: 1 1 auto !important;
  }
  .ad-location-date .ad-date {
    flex: 0 0 auto !important;
    font-size: 11.3px !important;
  }
}
