/* Theme dùng overflow-x: hidden trên body; clip giữ khả năng sticky mà vẫn chặn tràn ngang. */
html,
body {
  overflow-x: clip !important;
}

#wrapper,
#main,
.main-content,
.wrapper,
.app-content {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

.dp-wrap {
  --dp-primary: #0b6f62;
  --dp-primary-dark: #07564d;
  --dp-primary-soft: #e8f4f1;
  --dp-ink: #17201f;
  --dp-muted: #65716f;
  --dp-line: #dfe7e4;
  --dp-paper: #ffffff;
  --dp-canvas: #f5f8f7;
  --dp-orange: #f0762f;
  --dp-yellow: #ffc83d;
  --dp-shadow: 0 18px 50px rgba(27, 57, 52, 0.1);
  width: min(1320px, calc(100% - 32px));
  margin: 10rem auto 7rem;
  color: var(--dp-ink);
  font-family: inherit;
  position: relative;
}

.dp-wrap,
.dp-wrap * {
  box-sizing: border-box;
}

.dp-page-intro {
  display: flex;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.dp-page-intro .title-page-intro,
.dp-section-head .title-section-head,
.dp-mobile-sheet-header .title-sheet-header {
  margin: 0;
  color: var(--dp-ink);
  font-weight: 780;
  letter-spacing: -0.035em;
}

.dp-page-intro .title-page-intro {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
}

.dp-page-eyebrow,
.dp-section-eyebrow,
.dp-mobile-sheet-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--dp-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dp-page-intro p {
  margin: 0 0 5px;
  padding-left: 24px;
  border-left: 2px solid #b8d6cf;
  color: var(--dp-muted);
  font-size: 15px;
  line-height: 1.75;
}

.dp-slider {
  position: relative;
  height: clamp(330px, 39vw, 450px);
  margin-bottom: 26px;
  border: 1px solid rgba(8, 62, 55, 0.08);
  border-radius: 28px;
  background: #173833;
  box-shadow: var(--dp-shadow);
  overflow: hidden;
}

.dp-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.dp-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.68s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.dp-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.dp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease;
}

.dp-slide:hover img {
  transform: scale(1.035);
}

.dp-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 25, 0.84) 0%, rgba(8, 28, 25, 0.45) 50%, rgba(8, 28, 25, 0.06) 78%), linear-gradient(0deg, rgba(7, 26, 23, 0.38), transparent 55%);
}

.dp-slide-info {
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  bottom: clamp(48px, 7vw, 75px);
  z-index: 1;
  width: min(600px, calc(100% - 110px));
}

.dp-slide-badge,
.dp-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
}

.dp-slide-badge {
  margin-bottom: 14px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(13, 83, 74, 0.78);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.dp-slide-title {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 4vw, 46px);
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.dp-slide-addr {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.55;
}

.dp-slide-addr svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  stroke: var(--dp-yellow);
}

.dp-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 39, 35, 0.42);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  backdrop-filter: blur(10px);
}

.dp-arrow:hover {
  background: var(--dp-primary);
  transform: translateY(-50%) scale(1.05);
}

.dp-arrow.prev {
  left: 18px;
}

.dp-arrow.next {
  right: 18px;
}

.dp-arrow svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
}

.dp-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 29, 26, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(9px);
}

.dp-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.dp-dot.active {
  width: 23px;
  background: var(--dp-yellow);
}

.dp-filter {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  z-index: 90;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 34px;
  padding: 11px;
  border: 1px solid var(--dp-line);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(26, 65, 58, 0.09);
  backdrop-filter: blur(16px);
  transform: translateY(-10px);
}

.dp-filter-search {
  position: relative;
  display: flex;
  flex: 1 1 260px;
  min-width: 220px;
  height: 46px;
  align-items: center;
  border: 1px solid #d7e2df;
  border-radius: 13px;
  background: #f8faf9;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.dp-filter-search:focus-within {
  border-color: #87bcb2;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 111, 98, 0.09);
}

.dp-filter-search > svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-left: 14px;
  color: var(--dp-primary);
}

.dp-filter-search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 38px 0 10px;
  border: 0;
  outline: 0;
  color: var(--dp-ink);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.dp-filter-search input::placeholder {
  color: #8a9694;
}

.dp-search-clear {
  position: absolute;
  top: 50%;
  right: 9px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #6d7977;
  background: #e8eeec;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.dp-search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 110;
  width: min(430px, calc(100vw - 32px));
  padding: 9px;
  border: 1px solid var(--dp-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 46, 41, 0.17);
}

.dp-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  visibility: hidden;
  background: rgba(0, 43, 52, 0.48);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base, 250ms ease),
    visibility var(--transition-base, 250ms ease);
  backdrop-filter: blur(2px);
}

.dp-search-backdrop.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.dp-search-section {
  padding: 5px 0;
}

.dp-search-section + .dp-search-section {
  border-top: 1px solid #edf1f0;
}

.dp-search-section-hidden {
  display: none;
}

.dp-search-section-label {
  padding: 8px 10px 6px;
  color: #899390;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dp-search-suggest-item {
  display: flex;
  gap: 10px;
  min-height: 40px;
  padding: 9px 10px;
  align-items: center;
  border-radius: 10px;
  color: #36413f;
  cursor: pointer;
  font-size: 13px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.dp-search-suggest-item:hover {
  color: var(--dp-primary-dark);
  background: var(--dp-primary-soft);
}

.dp-s-icon {
  display: grid;
  flex: 0 0 18px;
  color: #7d8987;
  place-items: center;
}

.dp-s-icon svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.dp-s-text,
.dp-s-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp-s-del {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #87918f;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.dp-s-del:hover {
  color: #b93d2d;
  background: #fff0ed;
}

.dp-filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dp-mobile-sheet-header,
.dp-mobile-sheet-footer {
  display: none;
}

.dp-custom-dropdown {
  position: relative;
  min-width: 142px;
}

.dp-dropdown-toggle {
  display: flex;
  height: 46px;
  gap: 10px;
  padding: 0 13px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #d7e2df;
  border-radius: 13px;
  color: #34403e;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
  transition:
    border 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.dp-dropdown-toggle:hover,
.dp-custom-dropdown.open .dp-dropdown-toggle {
  border-color: #8ebdb4;
  color: var(--dp-primary-dark);
  background: #f7fbfa;
}

.dp-dropdown-toggle .icon-arrow {
  flex: 0 0 15px;
  transition: transform 0.2s ease;
}

.dp-custom-dropdown.open .icon-arrow {
  transform: rotate(180deg);
}

.dp-dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 105;
  display: none;
  width: max-content;
  min-width: 100%;
  max-width: 250px;
  max-height: 300px;
  margin: 0;
  padding: 7px;
  border: 1px solid var(--dp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 46, 41, 0.16);
  list-style: none;
  overflow: auto;
}

.dp-custom-dropdown.open .dp-dropdown-menu {
  display: block;
}

.dp-dropdown-item {
  padding: 10px 11px;
  border-radius: 9px;
  color: #43504e;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.35;
}

.dp-dropdown-item:hover,
.dp-dropdown-item.active {
  color: var(--dp-primary-dark);
  background: var(--dp-primary-soft);
}

.dp-dropdown-item.active {
  font-weight: 720;
}

.dp-btn-reset,
.dp-btn-mobile-filter {
  display: inline-flex;
  height: 46px;
  gap: 7px;
  padding: 0 13px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.dp-btn-reset {
  border: 1px solid #e6dbd5;
  color: #9a4b2e;
  background: #fff8f4;
}

.dp-btn-reset:hover {
  border-color: #efbaa3;
  background: #fff1e9;
}

.dp-btn-mobile-filter {
  display: none;
  border: 0;
  color: #fff;
  background: var(--dp-primary);
}

.dp-sheet-backdrop {
  display: none;
}

.dp-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 3fr);
  gap: 32px;
  align-items: start;
}

.dp-content {
  min-width: 0;
}

.dp-section-head {
  display: flex;
  gap: 20px;
  min-height: 62px;
  margin-bottom: 18px;
  align-items: end;
  justify-content: space-between;
}

.dp-section-head .title-section-head {
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.15;
}

.dp-section-eyebrow {
  margin-bottom: 5px;
  font-size: 10px;
}

.dp-project-count {
  padding: 8px 11px;
  border: 1px solid #d9e7e3;
  border-radius: 999px;
  color: #64706e;
  background: #f5faf8;
  font-size: 12px;
  white-space: nowrap;
}

.dp-project-count b {
  color: var(--dp-primary-dark);
}

.dp-list {
  display: grid;
  gap: 18px;
}

.dp-card {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  min-height: 220px;
  border: 1px solid var(--dp-line);
  border-radius: 20px;
  color: inherit;
  background: var(--dp-paper);
  box-shadow: 0 8px 28px rgba(28, 55, 51, 0.055);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.dp-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  width: 3px;
  height: 46px;
  border-radius: 3px 0 0 3px;
  background: #bad7d1;
  transition:
    height 0.22s ease,
    background 0.22s ease;
}

.dp-card:hover {
  border-color: #bdd7d1;
  box-shadow: 0 18px 40px rgba(24, 57, 52, 0.11);
  transform: translateY(-3px);
}

.dp-card:hover::before {
  height: 72px;
  background: var(--dp-orange);
}

.dp-card-imgs,
.dp-card-imgs .main-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

.dp-card-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dp-card:hover .dp-card-imgs img {
  transform: scale(1.045);
}

.dp-card-imgs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 34, 30, 0.2), transparent 48%);
  pointer-events: none;
}

.dp-img-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 31, 28, 0.62);
  place-items: center;
  backdrop-filter: blur(8px);
}

.dp-img-count svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

.dp-card-body {
  display: flex;
  min-width: 0;
  padding: 22px 25px 20px;
  flex-direction: column;
  align-items: flex-start;
}

.dp-card-badge {
  margin-bottom: 10px;
  padding: 7px 11px;
  font-size: 11px;
}

.dp-card-badge.s-opening {
  color: #9d3b1d;
  background: #fff0e8;
}

.dp-card-badge.s-updating {
  color: #0b685c;
  background: #e6f4f1;
}

.dp-card-badge.s-done {
  color: #305b91;
  background: #eaf2fd;
}

.dp-card-badge.s-sold {
  color: #6d5a76;
  background: #f1edf4;
}

.dp-slide-badge.s-opening {
  background: rgba(195, 73, 26, 0.82);
}

.dp-slide-badge.s-done {
  background: rgba(37, 89, 144, 0.78);
}

.dp-slide-badge.s-sold {
  background: rgba(91, 72, 102, 0.78);
}

.dp-card-name {
  display: -webkit-box;
  margin-bottom: 10px;
  color: #182421;
  font-size: 20px;
  font-weight: 770;
  letter-spacing: -0.025em;
  line-height: 1.3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dp-card-meta-top {
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.dp-card-meta-top > span {
  display: inline-flex;
  gap: 5px;
  min-height: 26px;
  padding: 5px 8px;
  align-items: center;
  border-radius: 7px;
  color: #55615f;
  background: #f3f6f5;
  font-size: 16px;
}

.dp-card-meta-top svg {
  width: 14px;
  height: 14px;
  color: #71807d;
}

.dp-card-addr {
  display: flex;
  width: 100%;
  gap: 7px;
  margin-bottom: 9px;
  align-items: flex-start;
  color: #687572;
  font-size: 16px;
  line-height: 1.5;
}

.dp-card-addr svg,
.dp-card-owner svg {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  stroke: var(--dp-primary);
}

.dp-card-desc {
  display: -webkit-box;
  width: 100%;
  margin-bottom: 10px;
  color: #6c7674;
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dp-card-owner {
  display: flex;
  width: 100%;
  gap: 7px;
  margin-top: auto;
  padding-top: 10px;
  align-items: center;
  border-top: 1px solid #edf1f0;
  color: #53605e;
  font-size: 16px;
}

.dp-card-owner span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dp-card-cta {
  display: inline-flex;
  gap: 7px;
  margin-top: 11px;
  align-items: center;
  color: var(--dp-primary-dark);
  font-size: 16px;
  font-weight: 780;
}

.dp-card-cta span {
  color: var(--dp-orange);
  transition: transform 0.2s ease;
}

.dp-card:hover .dp-card-cta span {
  transform: translateX(4px);
}

.dp-empty-state {
  display: none;
  padding: 48px 20px;
  border: 1px dashed #bfd1cd;
  border-radius: 18px;
  color: #6d7876;
  background: #fafcfb;
  text-align: center;
}

.dp-pager {
  display: flex;
  gap: 7px;
  margin-top: 30px;
  align-items: center;
  justify-content: center;
}

.dp-pager button,
.dp-pager span {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 10px;
  color: #54615f;
  place-items: center;
  text-decoration: none;
  font-size: 13px;
}

.dp-pager button {
  border: 1px solid var(--dp-line);
  background: #fff;
  cursor: pointer;
}

.dp-pager button:hover,
.dp-pager button.active {
  border-color: var(--dp-primary);
  color: #fff;
  background: var(--dp-primary);
}

.dp-pager button:focus-visible {
  outline: 3px solid rgba(18, 110, 95, 0.22);
  outline-offset: 2px;
}

.dp-sidebar {
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .dp-sidebar {
    position: sticky;
    top: 18rem;
    max-height: calc(100vh - 18rem);
    max-height: calc(100dvh - 18rem);
    padding-right: var(--space-2, 0.8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-color: var(--dp-line) transparent;
    scrollbar-width: thin;
    align-self: start;
  }

  .dp-sidebar::-webkit-scrollbar {
    width: 0.6rem;
  }

  .dp-sidebar::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--dp-line);
  }
}

.sb {
  padding: 20px;
  border: 1px solid var(--dp-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 28px rgba(28, 55, 51, 0.055);
}

.sb-head {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
  padding-bottom: 13px;
  align-items: center;
  border-bottom: 1px solid #e9efed;
  color: #24312f;
  font-size: 16px;
  font-weight: 780;
}

.sb-head > svg {
  width: 19px;
  height: 19px;
  stroke: var(--dp-primary);
}

.sb-featured {
  position: relative;
  border: 0;
  background: radial-gradient(circle at 100% 0, rgba(255, 211, 72, 0.42), transparent 36%), linear-gradient(145deg, #fff9eb 0%, #fff2df 52%, #fff 100%);
  box-shadow: 0 15px 36px rgba(181, 79, 26, 0.13);
  overflow: hidden;
}

.sb-featured::before {
  content: "HOT";
  position: absolute;
  top: 12px;
  right: -28px;
  width: 94px;
  padding: 4px 0;
  color: #fff;
  background: linear-gradient(90deg, #ef3f25, #f48622);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  transform: rotate(42deg);
}

.sb-featured-head {
  border-bottom-color: rgba(230, 112, 35, 0.2);
  color: #a6381e;
}

.sb-head .sb-featured-fire {
  width: 22px;
  height: 22px;
  fill: #ef5426;
  stroke: none;
  filter: drop-shadow(0 3px 5px rgba(224, 73, 28, 0.28));
}

.feat-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  min-height: 48px;
  padding: 9px 0;
  align-items: center;
  border-bottom: 1px solid rgba(211, 108, 42, 0.12);
}

.feat-item:last-child {
  border-bottom: 0;
}

.feat-num {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #8f4e2a;
  background: #ffe4bd;
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.feat-rank-1 .feat-num {
  color: #fff;
  background: linear-gradient(145deg, #ef3c24, #ff7c20);
  box-shadow: 0 6px 13px rgba(229, 64, 30, 0.25);
}

.feat-rank-2 .feat-num {
  color: #923b1c;
  background: linear-gradient(145deg, #ffc33c, #ff8b21);
}

.feat-rank-3 .feat-num {
  color: #78431f;
  background: #ffd896;
}

.feat-link {
  display: -webkit-box;
  color: #5f3522;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.feat-link:hover {
  color: #d74720;
}

.sb-empty {
  margin: 0;
  color: var(--dp-muted);
  font-size: 16px;
}

.sb-news {
  padding-bottom: 15px;
}

.sb-news-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 11px;
  padding: 11px 0;
  align-items: center;
  border-bottom: 1px solid #edf1f0;
  color: inherit;
  text-decoration: none;
}

.sb-news-thumb {
  height: 59px;
  border-radius: 10px;
  background: #edf2f0;
  overflow: hidden;
}

.sb-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sb-news-item:hover .sb-news-thumb img {
  transform: scale(1.05);
}

.sb-news-title {
  display: -webkit-box;
  color: #33403e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.42;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sb-news-item:hover .sb-news-title {
  color: var(--dp-primary-dark);
}

.sb-news-date {
  display: flex;
  gap: 5px;
  margin-top: 5px;
  align-items: center;
  color: #8b9693;
  font-size: 14px;
}

.sb-news-date-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

.more-blogs {
  display: flex;
  gap: 7px;
  padding-top: 14px;
  justify-content: flex-end;
  color: var(--dp-primary);
  font-size: 16px;
  font-weight: 760;
  text-decoration: none;
}

.more-blogs span {
  color: var(--dp-orange);
}

@media (max-width: 1080px) {
  .dp-wrap {
    margin-top: 5rem;
  }

  .sb-head h2 {
    margin: 0;
    font: inherit;
  }
  .dp-filter {
    flex-wrap: wrap;
    top: 78px;
  }

  .dp-filter-search {
    flex-basis: calc(100% - 104px);
  }

  .dp-filter-group {
    flex: 1;
  }

  .dp-custom-dropdown {
    flex: 1;
  }

  .dp-layout {
    grid-template-columns: minmax(0, 1fr) 288px;
    gap: 24px;
  }

  .dp-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 880px) {
  .dp-page-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dp-page-intro p {
    max-width: 680px;
  }

  .dp-layout {
    grid-template-columns: 1fr;
  }

  .dp-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  .dp-wrap {
    width: min(100% - 24px, 680px);
    margin-top: 7.5rem;
    padding-bottom: 82px;
  }

  .dp-page-intro {
    margin-bottom: 20px;
  }

  .dp-page-intro .title-page-intro {
    font-size: clamp(29px, 9vw, 40px);
  }

  .dp-page-intro p {
    padding-left: 15px;
    font-size: 13px;
    line-height: 1.65;
    display: none;
  }

  .dp-slider {
    height: 330px;
    border-radius: 21px;
  }

  .dp-slide-info {
    left: 24px;
    bottom: 50px;
    width: calc(100% - 48px);
  }

  .dp-slide-overlay {
    background: linear-gradient(0deg, rgba(7, 27, 24, 0.88) 0%, rgba(7, 27, 24, 0.26) 70%), linear-gradient(90deg, rgba(7, 27, 24, 0.35), transparent 75%);
  }

  .dp-slide-title {
    font-size: clamp(25px, 7vw, 34px);
  }

  .dp-slide-addr {
    margin-top: 11px;
    font-size: 12px;
  }

  .dp-arrow {
    top: 22px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .dp-arrow:hover {
    transform: scale(1.04);
  }

  .dp-arrow.prev {
    left: auto;
    right: 62px;
  }

  .dp-arrow.next {
    right: 16px;
  }

  .dp-filter {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    /* Keep the project search/filter below the shared mobile navigation
       overlay (z-index: 99) and its left/right drawers. */
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 38px rgba(17, 43, 39, 0.16);
    transform: translateY(0px);
  }

  .dp-filter.is-sheet-open {
    z-index: 82;
  }

  .dp-search-backdrop {
    z-index: 79;
  }

  .dp-filter-search {
    min-width: 0;
    height: 44px;
  }

  .dp-filter-search > svg {
    margin-left: 12px;
  }

  .dp-filter-search input {
    padding-left: 8px;
    font-size: 13px;
  }

  .dp-search-dropdown {
    top: auto;
    bottom: calc(100% + 10px);
    width: min(430px, calc(100vw - 24px));
    max-height: min(60vh, 430px);
    overflow: auto;
  }

  .dp-btn-mobile-filter {
    display: inline-flex;
    height: 44px;
    padding: 0 12px;
  }

  .dp-btn-reset {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .dp-btn-reset span {
    display: none;
  }

  .dp-filter-group {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20042 !important;
    display: flex;
    max-height: 82vh;
    gap: 12px;
    padding: 20px 16px calc(16px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    background: #fff;
    box-shadow: 0 -22px 60px rgba(10, 34, 30, 0.24);
    flex-direction: column;
    align-items: stretch;
    overflow: auto;
    transform: translateY(105%);
    transition: transform 0.3s cubic-bezier(0.2, 0.72, 0.25, 1);
  }

  .dp-filter-group.show {
    transform: translateY(0);
  }

  .dp-mobile-sheet-header {
    display: flex;
    gap: 18px;
    margin-bottom: 6px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .dp-mobile-sheet-header .title-sheet-header {
    font-size: 24px;
    line-height: 1.18;
  }

  .dp-mobile-sheet-eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .dp-close-sheet {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--dp-line);
    border-radius: 50%;
    color: #56625f;
    background: #f7f9f8;
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    place-items: center;
  }

  .dp-custom-dropdown {
    width: 100%;
  }

  .dp-dropdown-toggle {
    height: 52px;
    padding: 0 15px;
    background: #f8faf9;
  }

  .dp-dropdown-menu {
    position: static;
    width: 100%;
    max-width: none;
    max-height: 230px;
    margin-top: 7px;
    box-shadow: none;
  }

  .dp-mobile-sheet-footer {
    display: block;
    margin-top: 4px;
  }

  .dp-btn-apply-sheet {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 13px;
    color: #fff;
    background: var(--dp-primary);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 760;
  }

  .dp-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 81;
    display: block;
    visibility: hidden;
    background: rgba(8, 26, 23, 0.54);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
    backdrop-filter: blur(2px);
  }

  .dp-sheet-backdrop.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .dp-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dp-card {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .dp-card-imgs,
  .dp-card-imgs .main-img {
    min-height: 230px;
  }

  .dp-card-body {
    padding: 19px 20px 18px;
  }

  .dp-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 590px) {
  .dp-page-eyebrow {
    font-size: 10px;
  }

  .dp-slider {
    height: 300px;
  }

  .dp-card {
    display: block;
    min-height: 0;
  }

  .dp-card-imgs,
  .dp-card-imgs .main-img {
    height: 210px;
    min-height: 210px;
  }

  .dp-card-body {
    min-height: 245px;
  }

  .dp-card-name {
    font-size: 18px;
  }

  .dp-card-desc {
    -webkit-line-clamp: 2;
  }

  .dp-sidebar {
    display: none;
  }
}

@media (max-width: 410px) {
  .dp-wrap {
    width: calc(100% - 18px);
  }

  .dp-filter {
    padding-right: 9px;
    padding-left: 9px;
  }

  .dp-btn-mobile-filter span {
    display: none;
  }

  .dp-slide-info {
    left: 19px;
    width: calc(100% - 38px);
  }

  .dp-slide-badge {
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dp-slider-track,
  .dp-slide img,
  .dp-card,
  .dp-card-imgs img,
  .dp-filter-group {
    transition: none;
  }
}
