.sa-projects-theme,
.sa-projects-section {
  color: var(--sa-project-text, #f1ede5);
}
.sa-projects-theme {
  background: var(--sa-project-bg, #050505);
}
.sa-projects-section {
  background: var(--sa-project-section-bg, var(--sa-project-bg, #050505));
}
.sa-projects-container,
.sa-projects-section {
  width: min(1360px, calc(100% - 80px));
  margin: 0 auto;
}
.sa-projects-section {
  padding: 72px 0 40px;
}
.sa-heading-block {
  margin-bottom: 36px;
}
.sa-heading-block.center { text-align: center; }
.sa-section-heading {
  font-size: clamp(30px, 3.2vw, var(--sa-project-heading-size, 56px));
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: .02em;
  margin: 0;
}
.sa-section-heading.small { font-size: clamp(24px, 2vw, 40px); }
.sa-section-line {
  display: inline-block;
  width: 68px;
  height: 1px;
  background: var(--sa-project-border, rgba(255,255,255,.14));
  margin-top: 14px;
}
.sa-project-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0 48px;
}
.sa-project-filters a,
.sa-projects-button {
  text-decoration: none;
}
.sa-project-filters a {
  color: var(--sa-project-text);
  border: 1px solid var(--sa-project-border);
  padding: 12px 18px;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .25s ease;
}
.sa-project-filters a:hover,
.sa-project-filters a.is-active {
  border-color: var(--sa-project-accent);
  color: var(--sa-project-accent);
}
.sa-projects-grid {
  display: grid;
  gap: var(--sa-project-gap, 28px);
}
.sa-projects-grid.columns-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.sa-projects-grid.columns-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.sa-projects-grid.columns-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.sa-project-card {
  position: relative;
  display: block;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--sa-project-radius, 2px);
  background: #0b0b0b;
  color: var(--sa-project-text);
}
.sa-project-card-media,
.sa-project-card-media img,
.sa-project-card-placeholder {
  width: 100%;
  height: 100%;
}
.sa-project-card-media {
  position: absolute;
  inset: 0;
}
.sa-project-card-media img,
.sa-project-gallery-item img {
  object-fit: cover;
  display: block;
}
.sa-project-card-media img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
}
.sa-project-card-placeholder {
  background: linear-gradient(180deg, #1a1a1a, #090909);
}
.sa-project-card img {
  transition: transform .8s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card:hover img {
  transform: scale(1.035);
}
.sa-project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.04) 42%, rgba(0,0,0,.18) 100%);
  transition: background .35s ease;
}
.sa-project-card:hover .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12) 38%, rgba(0,0,0,.58) 100%);
}
.sa-project-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
  z-index: 2;
  pointer-events: none;
}
.sa-project-card-meta-top,
.sa-single-submeta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--sa-project-muted);
  font-size: 13px;
}
.sa-project-card-meta-top { align-items: flex-start; justify-content: space-between; }
.sa-project-card-title,
.sa-single-title {
  font-size: clamp(20px, 1.55vw, var(--sa-project-title-size, 24px));
  font-weight: 300;
  line-height: 1.08;
  margin: 0 0 6px;
}
.sa-project-card-title {
  color: rgba(255,255,255,.92);
  transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card-subtitle {
  color: rgba(255,255,255,.82);
  font-size: var(--sa-project-subtitle-size, 13px);
  transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card-subtitle.small,
.sa-project-card-year { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.72); transition: color .35s ease, opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1); }
.sa-project-card-meta-top,
.sa-project-card-meta-bottom {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card:hover .sa-project-card-meta-top,
.sa-project-card:hover .sa-project-card-meta-bottom,
.sa-project-card:focus-visible .sa-project-card-meta-top,
.sa-project-card:focus-visible .sa-project-card-meta-bottom {
  opacity: 1;
  transform: translateY(0);
}
.sa-project-card-meta-top { display:none; }
.sa-project-card-meta-bottom { align-self: flex-start; transition-delay: .06s; }
.sa-projects-button-wrap { text-align: center; margin-top: 32px; }
.sa-projects-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--sa-project-text);
  border: 1px solid var(--sa-project-border);
  padding: 18px 30px;
  transition: .25s ease;
  letter-spacing: .02em;
}
.sa-projects-button:hover {
  transform: translateY(-1px);
  border-color: var(--sa-project-accent);
  color: var(--sa-project-accent);
}
.sa-projects-button-arrow { font-size: 18px; }
.sa-projects-archive-wrap,
.sa-single-project-wrap { background: var(--sa-project-bg); color: var(--sa-project-text); min-height: 100vh; }
.sa-projects-archive-wrap { padding: 40px 0 90px; }
.sa-heading-block.archive { margin-top: 40px; }
.sa-single-hero {
  position: relative;
  height: clamp(560px, 70vh, 860px);
  min-height: 560px;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.sa-single-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.28) 36%, rgba(0,0,0,.52) 70%, rgba(5,5,5,.94) 100%);
  backdrop-filter: saturate(105%);
}
.hero-inner,
.sa-single-content-grid,
.similar-projects-section { position: relative; z-index: 2; }

.sa-hero-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.sa-hero-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.sa-hero-hotspot-dot,
.sa-hero-hotspot-dot:hover,
.sa-hero-hotspot-dot:focus,
.sa-hero-hotspot-dot:active {
  -webkit-appearance: none !important;
  appearance: none !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 1.5px solid rgba(255,255,255,.92) !important;
  border-radius: 999px !important;
  background: rgba(42,42,42,.72) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.18) !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease !important;
  outline: none !important;
}
.sa-hero-hotspot-dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #fff;
}
.sa-hero-hotspot-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
}
.sa-hero-hotspot-dot:hover,
.sa-hero-hotspot.is-open .sa-hero-hotspot-dot {
  transform: scale(1.06);
  background: rgba(30,30,30,.8) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.24) !important;
}
.sa-hero-hotspot-panel {
  position: absolute;
  min-width: max-content;
  background: rgba(47,60,74,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 4px;
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
}
.sa-hero-hotspot-panel::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: rgba(47,60,74,.98);
  transform: rotate(45deg);
}
.sa-hero-hotspot--top .sa-hero-hotspot-panel {
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
}
.sa-hero-hotspot--top .sa-hero-hotspot-panel::after {
  left: 50%;
  top: calc(100% - 5px);
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sa-hero-hotspot--bottom .sa-hero-hotspot-panel {
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
}
.sa-hero-hotspot--bottom .sa-hero-hotspot-panel::after {
  left: 50%;
  bottom: calc(100% - 5px);
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sa-hero-hotspot--left .sa-hero-hotspot-panel {
  right: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}
.sa-hero-hotspot--left .sa-hero-hotspot-panel::after {
  left: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid rgba(255,255,255,.08);
  border-top: 1px solid rgba(255,255,255,.08);
}
.sa-hero-hotspot--right .sa-hero-hotspot-panel {
  left: calc(100% + 8px);
  top: 50%;
  transform: translateY(-50%);
}
.sa-hero-hotspot--right .sa-hero-hotspot-panel::after {
  right: calc(100% - 5px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-left: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.sa-hero-hotspot-link,
.sa-hero-hotspot-link:hover,
.sa-hero-hotspot-link:focus,
.sa-hero-hotspot-link:active {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.sa-hero-hotspot-link:hover {
  background: rgba(255,255,255,.04);
}

.sa-single-title-block { max-width: 920px; margin-left: -10px; }
.sa-single-title {
  font-size: clamp(34px, 4.2vw, 58px);
  margin-bottom: 10px;
}
.sa-single-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
  gap: 54px;
  padding: 48px 0 84px;
}

.sa-single-builder-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 0 84px;
}
.sa-single-builder-content > .elementor,
.sa-single-builder-content > .elementor-location-single,
.sa-single-builder-content > .elementor-section-wrap {
  width: 100%;
  max-width: 100%;
}
.sa-single-builder-content .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none;
}
.sa-content-block h2,
.sa-detail-card h2,
.sa-contact-card h3 {
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 300;
  margin: 0 0 26px;
}
.sa-content-text,
.sa-contact-card p,
.sa-detail-value,
.sa-detail-label { font-size: 14px; line-height: 1.8; }
.sa-detail-label,
.sa-contact-card p,
.sa-content-text,
.sa-gallery-link,
.sa-breadcrumb-link,
.sa-pagination,
.sa-projects-empty { color: var(--sa-project-muted); }
.sa-project-gallery-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.sa-project-gallery-item {
  overflow: hidden;
  border-radius: var(--sa-project-radius, 2px);
}
.sa-project-gallery-item img { width: 100%; aspect-ratio: 1.12/1; object-fit: cover; }
.sa-elementor-project-content { margin-top: 30px; }
.sa-gallery-link-wrap { margin-top: 18px; }
.sa-detail-card,
.sa-contact-card {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--sa-project-border);
  margin-bottom: 34px;
}
.sa-detail-row { margin-bottom: 24px; }
.sa-detail-label { margin-bottom: 6px; }
.similar-projects-section { padding-bottom: 90px; }
.sa-pagination { text-align: center; margin-top: 38px; }
.sa-pagination .page-numbers { color: var(--sa-project-text); margin: 0 8px; text-decoration: none; }
@media (max-width: 1024px) {
  .sa-projects-grid.columns-4 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sa-single-content-grid { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 767px) {
  .sa-projects-container,
  .sa-projects-section { width: calc(100% - 28px); }
  .sa-projects-grid.columns-2,
  .sa-projects-grid.columns-3,
  .sa-projects-grid.columns-4,
  .sa-project-gallery-grid { grid-template-columns: 1fr; }
  .sa-project-card { min-height: 420px; }
  .sa-section-heading { font-size: 40px; }
  .sa-single-title { font-size: 38px; }
  .sa-project-card-meta-top,
  .sa-project-card-meta-bottom { opacity: 0; transform: translateY(14px); }
  .sa-project-filters { justify-content: flex-start; }
}


.sa-projects-elementor-embed,
.sa-projects-section-embed {
  --sa-project-section-bg: transparent;
}
.sa-projects-elementor-embed .sa-projects-section,
.sa-projects-section.sa-projects-section-embed {
  background: transparent !important;
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.sa-projects-elementor-embed .sa-heading-block {
  margin-bottom: 34px;
}
.sa-projects-elementor-embed .sa-projects-grid {
  align-items: stretch;
}
.sa-projects-elementor-embed .sa-project-card,
.sa-projects-section-embed .sa-project-card {
  min-height: 520px;
  background: transparent;
}
.sa-projects-elementor-embed .sa-project-card-overlay,
.sa-projects-section-embed .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,.06) 48%, rgba(0,0,0,.54) 100%);
}
.sa-projects-elementor-embed .sa-project-card:hover .sa-project-card-overlay,
.sa-projects-section-embed .sa-project-card:hover .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.04) 10%, rgba(0,0,0,.14) 44%, rgba(0,0,0,.72) 100%);
}
.sa-projects-elementor-embed .sa-project-card-title,
.sa-projects-elementor-embed .sa-project-card-subtitle,
.sa-projects-elementor-embed .sa-project-card-year,
.sa-projects-section-embed .sa-project-card-title,
.sa-projects-section-embed .sa-project-card-subtitle,
.sa-projects-section-embed .sa-project-card-year {
  color: rgba(255,255,255,.92);
}
@media (max-width: 1024px) {
  .sa-projects-elementor-embed .sa-projects-section,
  .sa-projects-section.sa-projects-section-embed {
    width: 100%;
  }
}

.sa-projects-section.sa-projects-section-embed {
  width: 100%;
  max-width: 100%;
}
.sa-projects-grid.columns-1 { grid-template-columns: repeat(1, minmax(0,1fr)); }
.sa-projects-grid.columns-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.sa-projects-grid.columns-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
.sa-projects-grid.layout-masonry {
  grid-auto-flow: dense;
}
.sa-projects-grid.layout-masonry .sa-project-card:nth-child(3n+2) {
  min-height: 620px;
}
.sa-projects-grid.layout-pattern {
  grid-template-columns: repeat(6, minmax(0,1fr));
  grid-auto-flow: dense;
}
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(1),
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(2) {
  grid-column: span 3;
}
.sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(n+3) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:first-child {
  grid-column: span 4;
  grid-row: span 2;
}
.sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:not(:first-child) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(-n+3) {
  grid-column: span 2;
}
.sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(n+4) {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .sa-projects-grid.layout-pattern {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .sa-projects-grid.layout-pattern .sa-project-card,
  .sa-projects-grid.layout-pattern.pattern-featured-left .sa-project-card:first-child,
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(1),
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(2),
  .sa-projects-grid.layout-pattern.pattern-top-2-rest-3 .sa-project-card:nth-child(n+3),
  .sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(-n+3),
  .sa-projects-grid.layout-pattern.pattern-top-3-rest-2 .sa-project-card:nth-child(n+4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 767px) {
  .sa-projects-grid.layout-pattern,
  .sa-projects-grid.columns-2,
  .sa-projects-grid.columns-3,
  .sa-projects-grid.columns-4,
  .sa-projects-grid.columns-5,
  .sa-projects-grid.columns-6 {
    grid-template-columns: repeat(1, minmax(0,1fr));
  }
}


.sa-project-card-title-only .sa-project-card-meta-top,
.sa-project-card-title-only .sa-project-card-subtitle,
.sa-project-card-title-only .sa-project-card-year {
  display: none !important;
}
.sa-project-card-title-only .sa-project-card-content {
  justify-content: flex-end;
  padding: 22px;
}
.sa-project-card-title-only .sa-project-card-meta-bottom {
  opacity: 0 !important;
  transform: translateY(16px) !important;
  align-self: flex-start;
  margin-top: auto;
  pointer-events: none;
  transition: opacity .3s ease, transform .4s cubic-bezier(.2,.65,.2,1);
}
.sa-project-card-title-only .sa-project-card-title {
  margin: 0;
  color: rgba(255,255,255,.96);
  text-shadow: 0 1px 8px rgba(0,0,0,.28);
}
.sa-project-card-title-only.sa-project-card:hover .sa-project-card-title {
  color: rgba(255,255,255,1);
}
.sa-project-card-title-only:hover .sa-project-card-meta-bottom,
.sa-project-card-title-only:focus-visible .sa-project-card-meta-bottom {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.sa-project-card-title-only .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0) 14%, rgba(0,0,0,.06) 42%, rgba(0,0,0,.42) 100%);
}
.sa-project-card-title-only:hover .sa-project-card-overlay,
.sa-project-card-title-only:focus-visible .sa-project-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.03) 12%, rgba(0,0,0,.12) 42%, rgba(0,0,0,.62) 100%);
}

.sa-single-title-block-minimal {
  max-width: 760px;
}
.sa-single-title-block-minimal .sa-single-title {
  margin-bottom: 0;
}
.sa-single-builder-content {
  position: relative;
  z-index: 2;
  padding: 44px 0 90px;
}
.sa-single-builder-content:empty {
  display: none;
}
.sa-single-content-grid,
.similar-projects-section,
.sa-single-sidebar,
.sa-detail-card,
.sa-contact-card,
.sa-project-gallery-grid,
.sa-gallery-link-wrap,
.sa-single-submeta {
  display: none !important;
}
.sa-projects-archive-builder-wrap {
  padding: 0;
}
.sa-projects-archive-builder-wrap .elementor-section-wrap,
.sa-projects-archive-builder-wrap .elementor {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .sa-project-card-title-only .sa-project-card-content {
    padding: 18px;
  }
  .sa-project-card-title-only .sa-project-card-title {
    font-size: clamp(20px, 6vw, 30px);
  }
  .sa-single-builder-content {
    padding: 28px 0 70px;
  }
}


/* Revision follow-up */
.sa-project-card-title-only .sa-project-card-content {
  justify-content: flex-end;
  padding: 22px 22px 20px;
}
.sa-project-card-title-only .sa-project-card-meta-bottom {
  margin-top: auto;
  align-self: flex-start;
}
.sa-project-card-title-only .sa-project-card-title {
  margin: 0;
}
.sa-project-card-title-only:hover .sa-project-card-meta-bottom,
.sa-project-card-title-only:focus-visible .sa-project-card-meta-bottom {
  opacity: 1;
  transform: translateY(0);
}
.sa-single-hero .sa-projects-container.hero-inner {
  width: min(1360px, calc(100% - 140px));
  margin-left: 0;
  margin-right: auto;
  padding-left: 24px;
}
.sa-single-title-block {
  max-width: 760px;
  margin-left: 0;
}
.sa-builder-edit-link-wrap {
  width: min(1360px, calc(100% - 80px));
  margin: 18px auto 0;
}
.sa-builder-edit-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sa-project-text, #f1ede5);
  border: 1px solid var(--sa-project-border, rgba(255,255,255,.14));
  padding: 10px 16px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .02em;
}
.sa-builder-edit-link:hover {
  border-color: var(--sa-project-accent, #d8d2c8);
  color: var(--sa-project-accent, #d8d2c8);
}
@media (max-width: 1024px) {
  .sa-single-hero .sa-projects-container.hero-inner {
    width: min(100%, calc(100% - 40px));
    padding-left: 0;
    margin: 0 auto;
  }
}

.sa-single-builder-content { padding: 34px 0 80px; }


@media (max-width: 768px) {
  .sa-single-hero {
    height: 380px;
    min-height: 380px;
  }
  .sa-hero-hotspot {
    z-index: 4;
  }
  .sa-hero-hotspot-dot {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    border-width: 1.25px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,.2) !important;
  }
  .sa-hero-hotspot-dot::before {
    width: 3px !important;
    height: 3px !important;
  }
  .sa-hero-hotspot-dot::after {
    inset: -7px !important;
    width: auto !important;
    height: auto !important;
    border-width: 1px !important;
    opacity: .72;
  }
  .sa-hero-hotspot-panel {
    bottom: calc(100% + 10px);
    min-width: 0;
    max-width: min(220px, calc(100vw - 32px));
    border-radius: 12px;
  }
  .sa-hero-hotspot-link {
    font-size: 12px;
    line-height: 1.25;
    padding: 8px 10px;
    white-space: normal;
  }
  .sa-hero-hotspot--left .sa-hero-hotspot-panel,
  .sa-hero-hotspot--right .sa-hero-hotspot-panel,
  .sa-hero-hotspot--bottom .sa-hero-hotspot-panel {
    left: 50%;
    right: auto;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
  }
  .sa-hero-hotspot--left .sa-hero-hotspot-panel::after,
  .sa-hero-hotspot--right .sa-hero-hotspot-panel::after,
  .sa-hero-hotspot--bottom .sa-hero-hotspot-panel::after {
    left: 50%;
    right: auto;
    top: calc(100% - 5px);
    bottom: auto;
    transform: translateX(-50%) rotate(45deg);
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-left: 0;
    border-top: 0;
  }
}


@media (max-width: 767px) {
  .sa-single-hero {
    min-height: 480px;
  }
  .hero-inner { padding: 70px 0 74px; }
}


/* v1.6.3 single project hero smoothing revision */
.sa-single-hero {
  height: clamp(640px, 78vh, 980px);
  min-height: 640px;
}
.sa-single-hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.08) 0%,
      rgba(0,0,0,.14) 18%,
      rgba(0,0,0,.24) 36%,
      rgba(0,0,0,.42) 56%,
      rgba(0,0,0,.68) 78%,
      rgba(5,5,5,.96) 100%);
}
.sa-single-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 18vw, 220px);
  background: linear-gradient(180deg, rgba(5,5,5,0) 0%, rgba(5,5,5,.18) 22%, rgba(5,5,5,.58) 62%, rgba(5,5,5,1) 100%);
  pointer-events: none;
  z-index: 1;
}
.sa-single-hero .hero-inner {
  padding-bottom: clamp(56px, 8vw, 112px);
}
.sa-single-builder-content {
  margin-top: -36px;
  padding-top: 0;
  padding-bottom: 80px;
}
.sa-single-builder-content > .elementor,
.sa-single-builder-content > .elementor-location-single,
.sa-single-builder-content > .elementor-section-wrap {
  position: relative;
  z-index: 3;
}
.sa-single-builder-content .elementor-top-section:first-child,
.sa-single-builder-content .elementor-section:first-child {
  margin-top: 0 !important;
}
@media (max-width: 1024px) {
  .sa-single-hero {
    height: clamp(560px, 72vh, 820px);
    min-height: 560px;
  }
  .sa-single-builder-content {
    margin-top: -24px;
  }
}
@media (max-width: 767px) {
  .sa-single-hero {
    height: 520px;
    min-height: 520px;
  }
  .sa-single-hero::after {
    height: 120px;
  }
  .sa-single-builder-content {
    margin-top: -14px;
    padding-bottom: 64px;
  }
  .sa-single-hero .hero-inner {
    padding-bottom: 56px;
  }
}
