/* Static export mobile/tablet fixes — load after builder CSS */
html {
  overflow-x: clip;
}

body#dmRoot {
  overflow-x: clip;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

#dmRoot .dmOuter,
#dmRoot .dmInner,
#dmRoot .dmLayoutWrapper,
#dmRoot #site_content {
  max-width: 100%;
  box-sizing: border-box;
}

/* Full-bleed outer shell only — never zero .dmInner sides (theme uses margin: 0 auto) */
#dmRoot #dmStyle_outerContainer.dmOuter,
#dmRoot #dm-outer-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#dmRoot #dmStyle_innerContainer.dmInner {
  margin-left: auto !important;
  margin-right: auto !important;
}

#dmRoot img,
#dmRoot video,
#dmRoot iframe,
#dmRoot .videobgframe {
  max-width: 100%;
  height: auto;
}

#dmRoot .dmRespRow,
#dmRoot .dmRespColsWrapper,
#dmRoot .dmRespCol {
  box-sizing: border-box;
}

#dmRoot .flex-element.grid,
#dmRoot .flex-element.section,
#dmRoot [data-auto="flex-element-grid"] {
  min-width: 0;
  max-width: 100%;
}

/**
 * Hamburger / tablet header templates: runtime CSS hides `.showOnLarge` only when
 * `#dmRoot.responsiveTablet` is present. We always set that class in the body script;
 * these rules back that up if anything strips it.
 */
@media (max-width: 767px) {
  body#dmRoot #dm #dmStyle_innerContainer .showOnLarge,
  body#dmRoot #dm .dmHeaderContainer.showOnLarge,
  body#dmRoot #dm .d-header-wrapper.showOnLarge {
    display: none !important;
  }

  body#dmRoot #dm .hide-for-small {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #dmRoot .rows-1200,
  #dmRoot .dmStandardDesktop,
  #dmRoot #dm-outer-wrapper {
    max-width: 100% !important;
    width: 100% !important;
  }

  #dmRoot .font-size-60,
  #dmRoot .size-60,
  #dmRoot .font-size-60 span,
  #dmRoot .size-60 span,
  #dmRoot h1 .font-size-60,
  #dmRoot h1.size-60,
  #dmRoot .m-font-size-35,
  #dmRoot .m-size-35 {
    font-size: clamp(1.5rem, 7vw, 2.25rem) !important;
    line-height: 1.15 !important;
  }

  #dmRoot .font-size-26,
  #dmRoot .size-26 {
    font-size: clamp(1rem, 4.5vw, 1.35rem) !important;
  }

  #dmRoot .dmPhotoGallery .photogallery-row {
    flex-direction: column !important;
  }

  #dmRoot .dmPhotoGallery.newPhotoGallery .photogallery-column,
  #dmRoot .photoGallery .photogallery-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
  }

  #dmRoot .unifiednav__container_sub-nav {
    position: relative !important;
    width: 100% !important;
  }

  #dmRoot .hamburger-header-container,
  #dmRoot #hamburger-header {
    max-width: 100vw;
  }

  #dmRoot .layout-drawer-hamburger {
    flex-shrink: 0;
  }

  #dmRoot .dmButtonLink,
  #dmRoot .dmWidget {
    max-width: 100%;
    box-sizing: border-box;
  }

  #dmRoot .multilingualWidget .desktopMultilingual {
    max-width: 100%;
  }

  /**
   * DM “rows-1200” + Foundation floats: on small screens, floated .large-6 columns can
   * fail to clear and leave a blank band on one side. Stack columns and re-center wrappers.
   */
  #dmRoot #dm .dmRespRow:not(.fullBleedMode) {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both !important;
  }

  #dmRoot #dm .dmRespRow:not(.fullBleedMode) .dmRespColsWrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #dmRoot #dm .dmRespRow .dmRespCol,
  #dmRoot #dm .dmRespDesignRow .dmRespDesignCol {
    float: none !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    clear: both !important;
    left: auto !important;
    right: auto !important;
  }

  #dmRoot #dm_content,
  #dmRoot #dmFirstContainer,
  #dmRoot .dmBody {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #dmRoot .font-size-60,
  #dmRoot .size-60,
  #dmRoot h1 .font-size-60 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    line-height: 1.2 !important;
  }
}

/**
 * Flex builder cards (e.g. /services): image widgets are fixed ~120×120 but theme sets
 * img { width:100%; height:auto }, so tall photos extend past the box and cover titles.
 */
#dmRoot .flex-element.widget-wrapper[data-widget-type="image"] {
  overflow: hidden !important;
  border-radius: 50% !important;
}

#dmRoot .flex-element.widget-wrapper[data-widget-type="image"] .imageWidget {
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

#dmRoot .flex-element.widget-wrapper[data-widget-type="image"] .imageWidget img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

#dmRoot .flex-element.widget-wrapper[data-widget-type="image"]
  + .flex-element.widget-wrapper[data-widget-type="paragraph"] {
  position: relative !important;
  z-index: 1 !important;
}

/* Homepage: off-plan SEO split section (matches black/white theme + accent) */
#dmRoot .ce-offplan-seo-row {
  background: #ffffff;
  box-sizing: border-box;
}

#dmRoot .ce-offplan-seo-row .dmRespColsWrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.75rem 1.25rem 3rem;
  box-sizing: border-box;
}

#dmRoot .ce-offplan-seo__title {
  margin: 0 0 1.25rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color_1, #000);
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
}

#dmRoot .ce-offplan-seo__body {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.82);
}

#dmRoot .ce-offplan-seo__body p {
  margin: 0 0 1rem;
}

#dmRoot .ce-offplan-seo__body p:last-child {
  margin-bottom: 0;
}

#dmRoot .ce-offplan-seo__link {
  color: #ea580c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#dmRoot .ce-offplan-seo__link:hover,
#dmRoot .ce-offplan-seo__link:focus {
  color: #c2410c;
}

#dmRoot .ce-offplan-seo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

#dmRoot .ce-offplan-seo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#dmRoot .ce-offplan-seo__btn--primary {
  background: var(--color_1, #000);
  color: #fff;
  border: 2px solid var(--color_1, #000);
}

#dmRoot .ce-offplan-seo__btn--primary:hover,
#dmRoot .ce-offplan-seo__btn--primary:focus {
  background: #333;
  border-color: #333;
  color: #fff;
}

#dmRoot .ce-offplan-seo__btn--secondary {
  background: #fff;
  color: var(--color_1, #000);
  border: 2px solid var(--color_1, #000);
}

#dmRoot .ce-offplan-seo__btn--secondary:hover,
#dmRoot .ce-offplan-seo__btn--secondary:focus {
  background: #f5f5f5;
}

#dmRoot .ce-offplan-seo__media-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

#dmRoot .ce-offplan-seo__media {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 360px;
  margin: 1.5rem auto 0;
}

#dmRoot .ce-offplan-seo__img--back {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  max-width: 280px;
  aspect-ratio: 3 / 5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

#dmRoot .ce-offplan-seo__img--back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#dmRoot .ce-offplan-seo__img--front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  max-width: 260px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  z-index: 1;
}

#dmRoot .ce-offplan-seo__img--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#dmRoot .ce-offplan-seo__badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: var(--color_1, #000);
  color: #fff;
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#dmRoot .ce-offplan-seo__check {
  display: inline-flex;
  color: #ea580c;
  flex-shrink: 0;
}

#dmRoot .ce-offplan-seo__badge--tl {
  top: 6%;
  left: -4%;
}

#dmRoot .ce-offplan-seo__badge--tr {
  top: 18%;
  right: -2%;
}

#dmRoot .ce-offplan-seo__badge--br {
  bottom: 10%;
  right: 4%;
}

@media (max-width: 767px) {
  #dmRoot .ce-offplan-seo__media {
    min-height: 340px;
    max-width: 100%;
  }

  #dmRoot .ce-offplan-seo__badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.75rem;
  }

  #dmRoot .ce-offplan-seo__badge--tl {
    left: 0;
  }

  #dmRoot .ce-offplan-seo__badge--tr {
    right: 0;
  }

  #dmRoot .ce-offplan-seo__actions {
    flex-direction: column;
    align-items: stretch;
  }

  #dmRoot .ce-offplan-seo__btn {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  #dmRoot .ce-offplan-seo-row .dmRespColsWrapper {
    padding-top: 3.5rem;
    padding-bottom: 3.75rem;
  }

  #dmRoot .ce-offplan-seo__media {
    margin-top: 0;
    min-height: 400px;
  }
}

/* Blog hub + article ( /blog, /blog/*/ ) */
#dmRoot .u_1243667655.dmRespRow:has(.ce-blog-hub-wrap),
#dmRoot .u_1243667655.dmRespRow:has(.ce-article) {
  text-align: left !important;
}

#dmRoot .ce-blog-hub-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  box-sizing: border-box;
}

#dmRoot .ce-blog-breadcrumb {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: rgba(0, 0, 0, 0.65);
}

#dmRoot .ce-blog-breadcrumb a {
  color: #ea580c;
  font-weight: 600;
  text-decoration: none;
}

#dmRoot .ce-blog-breadcrumb a:hover,
#dmRoot .ce-blog-breadcrumb a:focus {
  text-decoration: underline;
}

#dmRoot .ce-blog-breadcrumb__sep {
  margin: 0 0.45rem;
  color: rgba(0, 0, 0, 0.35);
}

#dmRoot .ce-blog-hub__title {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--color_1, #000);
}

#dmRoot .ce-blog-hub__lead {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.82);
  max-width: 42rem;
  margin: 0 0 2rem;
}

#dmRoot .ce-blog-cards-row .dmRespColsWrapper {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

#dmRoot .ce-blog-cards-row .ce-blog-card {
  padding: 0.5rem;
  box-sizing: border-box;
}

#dmRoot .ce-blog-card__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#dmRoot .ce-blog-card__link:hover,
#dmRoot .ce-blog-card__link:focus {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
}

#dmRoot .ce-blog-card__inner {
  height: 100%;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #fafafa;
}

#dmRoot .ce-blog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

#dmRoot .ce-blog-card__media--empty {
  height: 220px;
  background: linear-gradient(145deg, #efefef, #e2e2e2);
}

#dmRoot .ce-blog-card__body {
  padding: 1.25rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-blog-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 0.5rem;
}

#dmRoot .ce-blog-card__title {
  font-size: 1.2rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--color_1, #000);
}

#dmRoot .ce-blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.72);
}

#dmRoot .ce-blog-card__cta {
  font-weight: 700;
  font-size: 0.78rem;
  color: #ea580c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#dmRoot .ce-blog-card--placeholder .ce-blog-card__title {
  color: rgba(0, 0, 0, 0.65);
}

/* Blog hub — Property Finder–style layout ( /blog ) */
#dmRoot .ce-blog-hub--pf-layout.ce-blog-hub-wrap {
  max-width: 1280px;
  padding-bottom: 3.5rem;
}

#dmRoot .ce-blog-hub__inner {
  display: block;
}

#dmRoot .ce-blog-masthead {
  margin-bottom: 2rem;
}

#dmRoot .ce-blog-masthead__title {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  color: var(--color_1, #0f172a);
  font-weight: 700;
}

#dmRoot .ce-blog-masthead__sub {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  max-width: 44rem;
  color: rgba(15, 23, 42, 0.75);
}

#dmRoot .ce-blog-featured {
  margin-bottom: 2.5rem;
}

#dmRoot .ce-blog-featured__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#dmRoot .ce-blog-featured__card:hover,
#dmRoot .ce-blog-featured__card:focus-visible {
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(234, 88, 12, 0.35);
}

#dmRoot .ce-blog-featured__media {
  min-height: 200px;
  background: #f1f5f9;
}

#dmRoot .ce-blog-featured__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

#dmRoot .ce-blog-featured__body {
  padding: 1.5rem 1.35rem 1.65rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

#dmRoot .ce-blog-featured__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  margin: 0;
  color: var(--color_1, #0f172a);
}

#dmRoot .ce-blog-featured__excerpt {
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(15, 23, 42, 0.78);
  flex: 1;
}

#dmRoot .ce-blog-featured__meta {
  font-size: 0.88rem;
  margin: 0.25rem 0 0;
  color: rgba(15, 23, 42, 0.55);
}

#dmRoot .ce-blog-block {
  margin-bottom: 2.5rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-blog-block__head {
  margin-bottom: 1.1rem;
}

#dmRoot .ce-blog-block__head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

#dmRoot .ce-blog-block__title {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  margin: 0;
  color: var(--color_1, #0f172a);
  font-weight: 700;
}

#dmRoot .ce-blog-block__intro {
  margin: 0.35rem 0 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.72);
  max-width: 40rem;
}

#dmRoot .ce-blog-block__viewall {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ea580c;
  text-decoration: none;
  white-space: nowrap;
}

#dmRoot .ce-blog-block__viewall:hover,
#dmRoot .ce-blog-block__viewall:focus-visible {
  text-decoration: underline;
}

#dmRoot .ce-blog-block--muted {
  padding: 1.35rem 1.25rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

#dmRoot .ce-blog-block--muted .ce-blog-block__title {
  font-size: 1.15rem;
}

#dmRoot .ce-blog-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(234, 88, 12, 0.12);
  color: #c2410c;
}

#dmRoot .ce-blog-pill--muted {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.65);
}

#dmRoot .ce-blog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

#dmRoot .ce-blog-pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color_1, #0f172a);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  transition: border-color 0.15s ease, background 0.15s ease;
}

#dmRoot .ce-blog-pill-link:hover,
#dmRoot .ce-blog-pill-link:focus-visible {
  border-color: rgba(234, 88, 12, 0.45);
  background: rgba(234, 88, 12, 0.06);
}

#dmRoot .ce-blog-topics {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.35rem;
  margin: 0 0 1.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  scrollbar-width: thin;
}

#dmRoot .ce-blog-topic {
  flex-shrink: 0;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.65);
  background: transparent;
  border: 1px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

#dmRoot .ce-blog-topic:hover,
#dmRoot .ce-blog-topic:focus-visible {
  color: #0f172a;
  background: rgba(15, 23, 42, 0.05);
}

#dmRoot .ce-blog-topic.is-active {
  color: #fff;
  background: #0f172a;
}

#dmRoot .ce-blog-feed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

#dmRoot .ce-blog-feed-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

#dmRoot .ce-blog-feed-card:hover,
#dmRoot .ce-blog-feed-card:focus-visible {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(234, 88, 12, 0.3);
}

#dmRoot .ce-blog-feed-card__media {
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
}

#dmRoot .ce-blog-feed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#dmRoot .ce-blog-feed-card__body {
  padding: 1rem 1.1rem 1.15rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

#dmRoot .ce-blog-feed-card__title {
  font-size: 1.05rem;
  line-height: 1.28;
  margin: 0;
  color: var(--color_1, #0f172a);
}

#dmRoot .ce-blog-feed-card__excerpt {
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
  flex: 1;
}

#dmRoot .ce-blog-feed-card__meta {
  font-size: 0.8rem;
  margin: 0.25rem 0 0;
  color: rgba(15, 23, 42, 0.5);
}

#dmRoot .ce-blog-slab {
  margin: 2.5rem 0 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f8fafc;
}

#dmRoot .ce-blog-slab__inner {
  padding: 2rem 1.5rem;
  max-width: 40rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-blog-slab--in-article {
  margin: 2rem 0 1.25rem;
}

#dmRoot .ce-blog-slab__title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 0.65rem;
  line-height: 1.2;
  color: #f8fafc !important;
}

#dmRoot .ce-blog-slab__text {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.95) !important;
  opacity: 1;
}

#dmRoot .ce-blog-slab__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

#dmRoot .ce-blog-slab__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#dmRoot .ce-blog-slab__btn--primary {
  background: #d6a14c;
  color: #0f172a;
}

#dmRoot .ce-blog-slab__btn--primary:hover,
#dmRoot .ce-blog-slab__btn--primary:focus-visible {
  background: #c49545;
  color: #0f172a;
}

#dmRoot .ce-blog-slab__btn--ghost {
  background: transparent;
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.45);
}

#dmRoot .ce-blog-slab__btn--ghost:hover,
#dmRoot .ce-blog-slab__btn--ghost:focus-visible {
  background: rgba(248, 250, 252, 0.1);
}

#dmRoot .ce-blog-card__times {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 0.35rem;
}

@media (min-width: 768px) {
  #dmRoot .ce-blog-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #dmRoot .ce-blog-featured__card {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }

  #dmRoot .ce-blog-featured__media {
    min-height: 100%;
  }

  #dmRoot .ce-blog-featured__media img {
    min-height: 100%;
  }
}

@media (min-width: 1024px) {
  #dmRoot .ce-blog-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #dmRoot .ce-blog-topics {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0.75rem;
  }
}

#dmRoot .ce-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
  text-align: left;
  box-sizing: border-box;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-article__header {
  margin-bottom: 1.5rem;
}

#dmRoot .ce-article__title {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
  color: var(--color_1, #000);
}

#dmRoot .ce-article__meta {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

#dmRoot .ce-article__prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.88);
}

#dmRoot .ce-article__prose p {
  margin: 0 0 1.1rem;
}

#dmRoot .ce-article__prose h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--color_1, #000);
}

#dmRoot .ce-article__lede {
  font-size: 1.12rem;
  font-weight: 500;
}

#dmRoot .ce-article__footer-nav {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

#dmRoot .ce-article__footer-nav a {
  color: #ea580c;
  font-weight: 600;
  text-decoration: none;
}

#dmRoot .ce-article__footer-nav a:hover,
#dmRoot .ce-article__footer-nav a:focus {
  text-decoration: underline;
}

/* ============================================================
   Rich article components — /blog/invest-in-dubai-real-estate
   and any future long-form articles
   ============================================================ */

/* Hero image */
#dmRoot .ce-article__hero {
  margin: 1.5rem 0 2rem;
  border-radius: 14px;
  overflow: hidden;
  line-height: 0;
}

#dmRoot .ce-article__hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* Table of contents */
#dmRoot .ce-art-toc {
  background: rgba(26, 77, 71, 0.05);
  border-left: 3px solid #1a4d47;
  border-radius: 0 10px 10px 0;
  padding: 1.15rem 1.35rem;
  margin: 0 0 2rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-toc__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a4d47;
  margin: 0 0 0.6rem;
}

#dmRoot .ce-art-toc__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
}

#dmRoot .ce-art-toc__list li {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

#dmRoot .ce-art-toc__list a {
  color: #165a52;
  text-decoration: none;
}

#dmRoot .ce-art-toc__list a:hover,
#dmRoot .ce-art-toc__list a:focus-visible {
  text-decoration: underline;
}

/* Stat cards row */
#dmRoot .ce-art-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.75rem 0 2rem;
}

#dmRoot .ce-art-stat {
  background: #1a4d47;
  color: #fffcf7;
  border-radius: 10px;
  padding: 1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
  box-sizing: border-box;
  border: 1px solid rgba(214, 161, 76, 0.18);
}

#dmRoot .ce-art-stat__num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #d6a14c;
  line-height: 1.15;
  word-break: break-word;
}

#dmRoot .ce-art-stat__label {
  font-size: 0.79rem;
  opacity: 0.8;
  line-height: 1.35;
}

@media (min-width: 520px) {
  #dmRoot .ce-art-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Callout box */
#dmRoot .ce-art-callout {
  background: rgba(26, 77, 71, 0.06);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #11110f;
}

#dmRoot .ce-art-callout p {
  margin: 0;
}

#dmRoot .ce-art-callout--quote {
  background: #1a4d47;
  color: #fffcf7;
  padding: 1.35rem 1.5rem;
}

#dmRoot .ce-art-callout--quote blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}

#dmRoot .ce-art-callout--quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.75;
}

/* Chart container */
#dmRoot .ce-art-chart {
  margin: 1.5rem 0 2rem;
  background: rgba(26, 77, 71, 0.03);
  border: 1px solid rgba(26, 77, 71, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
}

#dmRoot .ce-art-chart__title {
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4a4843;
  margin: 0 0 1rem;
}

#dmRoot .ce-art-svg {
  width: 100%;
  max-width: 580px;
  display: block;
  min-width: 300px;
}

/* Tables */
#dmRoot .ce-art-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid rgba(26, 77, 71, 0.1);
}

#dmRoot .ce-art-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Syne, 'Syne Fallback', sans-serif;
  font-size: 0.91rem;
  background: #fffcf7;
  border-radius: 12px;
  overflow: hidden;
}

#dmRoot .ce-art-table thead tr {
  background: #1a4d47;
  color: #fffcf7;
}

#dmRoot .ce-art-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#dmRoot .ce-art-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(26, 77, 71, 0.07);
  color: #11110f;
  vertical-align: top;
  line-height: 1.45;
}

#dmRoot .ce-art-table tbody tr:last-child td {
  border-bottom: none;
}

#dmRoot .ce-art-table tbody tr:nth-child(even) {
  background: rgba(26, 77, 71, 0.03);
}

#dmRoot .ce-art-table__accent {
  color: #1a4d47;
  font-weight: 700;
}

#dmRoot .ce-art-table__total td {
  background: rgba(214, 161, 76, 0.12);
  font-weight: 700;
  border-top: 2px solid rgba(214, 161, 76, 0.4);
}

#dmRoot .ce-art-table__note {
  font-size: 0.8rem;
  color: #7c7870;
  margin: 0.5rem 0 0;
  padding: 0 0.25rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

/* Formula box */
#dmRoot .ce-art-formula {
  background: #11110f;
  color: #fffcf7;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-formula__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 252, 247, 0.1);
}

#dmRoot .ce-art-formula__row:last-child {
  border-bottom: none;
}

#dmRoot .ce-art-formula__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d6a14c;
  min-width: 9rem;
  flex-shrink: 0;
}

#dmRoot .ce-art-formula__eq {
  font-size: 0.97rem;
  line-height: 1.5;
  color: #fffcf7;
  font-style: italic;
}

/* Calculation breakdown box */
#dmRoot .ce-art-calc {
  background: rgba(26, 77, 71, 0.05);
  border: 1px solid rgba(26, 77, 71, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-calc__section-title {
  background: #1a4d47;
  color: #fffcf7;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
}

#dmRoot .ce-art-calc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 1rem;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(26, 77, 71, 0.07);
  color: #11110f;
}

#dmRoot .ce-art-calc__row:last-child {
  border-bottom: none;
}

#dmRoot .ce-art-calc__row--total {
  font-weight: 700;
  background: rgba(26, 77, 71, 0.08);
}

#dmRoot .ce-art-calc__row--result {
  font-weight: 700;
  background: rgba(214, 161, 76, 0.12);
}

#dmRoot .ce-art-calc__highlight {
  color: #1a4d47;
  font-size: 1.15rem;
  font-weight: 800;
}

/* Numbered project / off-plan list */
#dmRoot .ce-art-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

#dmRoot .ce-art-list__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 77, 71, 0.08);
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-list__item:last-child {
  border-bottom: none;
}

#dmRoot .ce-art-list__rank {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #1a4d47;
  color: #d6a14c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-top: 0.15rem;
}

#dmRoot .ce-art-list__body {
  flex: 1;
  min-width: 0;
}

#dmRoot .ce-art-list__title {
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0 0 0.65rem;
  color: #11110f;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

#dmRoot .ce-art-list__body p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4843;
}

#dmRoot .ce-art-list__body p:last-child {
  margin: 0;
}

/* Agency list */
#dmRoot .ce-art-agencies {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

#dmRoot .ce-art-agency {
  background: #fffcf7;
  border: 1px solid rgba(26, 77, 71, 0.1);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-agency__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

#dmRoot .ce-art-agency__num {
  background: #1a4d47;
  color: #d6a14c;
  border-radius: 6px;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

#dmRoot .ce-art-agency__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #11110f;
}

#dmRoot .ce-art-agency > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4843;
}

#dmRoot .ce-art-agency a {
  color: #165a52;
  font-weight: 600;
}

/* Step-by-step list */
#dmRoot .ce-art-steps {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  counter-reset: steps;
}

#dmRoot .ce-art-step {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(26, 77, 71, 0.08);
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-step:last-child {
  border-bottom: none;
}

#dmRoot .ce-art-step__num {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: linear-gradient(135deg, #d6a14c, #c98933);
  color: #11110f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

#dmRoot .ce-art-step__body {
  flex: 1;
}

#dmRoot .ce-art-step__title {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: #11110f;
}

#dmRoot .ce-art-step__body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a4843;
}

/* Bottom-line summary box */
#dmRoot .ce-art-summary {
  background: #1a4d47;
  color: #fffcf7;
  border-radius: 16px;
  padding: 1.75rem 1.75rem;
  margin: 2.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-summary__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: #d6a14c;
}

#dmRoot .ce-art-summary p {
  margin: 0 0 0.75rem;
  font-size: 0.97rem;
  line-height: 1.65;
  opacity: 0.92;
}

#dmRoot .ce-art-summary p:last-child {
  margin: 0;
}

/* FAQ */
#dmRoot .ce-art-faq {
  margin: 2.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-faq__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin: 0 0 1.25rem;
  color: #11110f;
}

#dmRoot .ce-art-faq__item {
  border-bottom: 1px solid rgba(26, 77, 71, 0.1);
  padding: 1rem 0;
}

#dmRoot .ce-art-faq__item:last-child {
  border-bottom: none;
}

#dmRoot .ce-art-faq__q {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: #11110f;
}

#dmRoot .ce-art-faq__a {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4843;
}

/* Related articles grid */
#dmRoot .ce-art-related {
  margin: 2.5rem 0;
  font-family: Syne, 'Syne Fallback', sans-serif;
}

#dmRoot .ce-art-related__title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin: 0 0 1.25rem;
  color: #11110f;
}

#dmRoot .ce-art-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#dmRoot .ce-art-related__card {
  display: flex;
  flex-direction: row;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(26, 77, 71, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: #fffcf7;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

#dmRoot .ce-art-related__card:hover,
#dmRoot .ce-art-related__card:focus-visible {
  box-shadow: 0 8px 28px rgba(26, 77, 71, 0.1);
  border-color: rgba(26, 77, 71, 0.25);
}

#dmRoot .ce-art-related__card-img {
  flex-shrink: 0;
  width: 100px;
  min-height: 80px;
  background: #e8e3da;
}

#dmRoot .ce-art-related__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#dmRoot .ce-art-related__card-body {
  padding: 0.75rem 0.85rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  justify-content: center;
}

#dmRoot .ce-art-related__card-title {
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #11110f;
}

#dmRoot .ce-art-related__card-meta {
  font-size: 0.8rem;
  color: #7c7870;
  margin: 0;
}

/* Responsive upgrades */
@media (min-width: 640px) {
  #dmRoot .ce-art-related__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #dmRoot .ce-art-related__card {
    flex-direction: column;
  }

  #dmRoot .ce-art-related__card-img {
    width: 100%;
    height: 140px;
    min-height: 0;
  }

  #dmRoot .ce-art-related__card-body {
    padding: 0.85rem 1rem 1rem;
  }
}

@media (min-width: 900px) {
  #dmRoot .ce-art-related__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  #dmRoot .ce-art-formula__row {
    flex-wrap: nowrap;
  }

  #dmRoot .ce-art-formula__label {
    min-width: 10rem;
  }
}

/* Phase 3: area & developer landings — sidebar + floating CTA */
#dmRoot .ce-article--phase3 {
  position: relative;
}

@media (min-width: 900px) {
  #dmRoot .ce-article--phase3 {
    padding-right: 12rem !important;
  }

  #dmRoot .ce-sidebar-cta {
    position: absolute;
    top: 5.5rem;
    right: 0;
    width: 10.5rem;
    background: #fff;
    border: 1px solid rgba(26, 77, 71, 0.14);
    border-radius: 12px;
    padding: 1rem 0.95rem;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    z-index: 2;
  }
}

@media (max-width: 899px) {
  #dmRoot .ce-sidebar-cta {
    margin: 1.75rem 0 1.25rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(26, 77, 71, 0.06);
    border: 1px solid rgba(26, 77, 71, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

#dmRoot .ce-sidebar-cta__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.55);
  margin: 0;
}

#dmRoot .ce-sidebar-cta__btn {
  display: inline-block;
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #1a4d47;
  color: #1a4d47;
  background: transparent;
}

#dmRoot .ce-sidebar-cta__btn--primary {
  background: #1a4d47;
  color: #fffcf7;
  border-color: #1a4d47;
}

#dmRoot .ce-sidebar-cta__link {
  font-size: 0.84rem;
  font-weight: 600;
  color: #1a4d47;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#dmRoot .ce-floating-cta {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
}

#dmRoot .ce-floating-cta__wa {
  display: inline-block;
  background: #1a4d47;
  color: #fffcf7;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(26, 77, 71, 0.35);
}

#dmRoot .ce-floating-cta__mini {
  display: inline-block;
  background: #fff;
  color: #1a4d47;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid rgba(26, 77, 71, 0.25);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.08);
}

@media (max-width: 767px) {
  #dmRoot .ce-floating-cta {
    bottom: 0.65rem;
    right: 0.65rem;
  }
}

