/**
 * DCRE Frontend Styles
 * Brand: #040124 | Font: Montserrat | Minimalist, white-dominant
 */

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --dcre-brand: #040124;
  --dcre-brand-dim: #0b0545;
  --dcre-white: #ffffff;
  --dcre-bg: #f7f7fb;
  --dcre-text: #0d0c1d;
  --dcre-text-soft: #5a5a78;
  --dcre-text-muted: #9898b0;
  --dcre-border: #e4e4f0;
  --dcre-border-dark: #c8c8e0;
  --dcre-shadow-sm: 0 2px 12px rgba(4, 1, 36, 0.06);
  --dcre-shadow: 0 4px 24px rgba(4, 1, 36, 0.1);
  --dcre-shadow-lg: 0 16px 48px rgba(4, 1, 36, 0.18);
  --dcre-radius: 16px;
  --dcre-radius-sm: 10px;
  --dcre-radius-pill: 100px;
  --dcre-font: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --dcre-green: #1a6640;
  --dcre-red: #a02020;
  --dcre-orange: #a05000;
}

/* ============================================================
   GLOBAL
   ============================================================ */
#dcre-archive-wrap,
#dcre-single-wrap {
  font-family: var(--dcre-font);
  color: var(--dcre-text);
  background: var(--dcre-white);
}
.dcre-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.dcre-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--dcre-radius-sm);
  font-family: var(--dcre-font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.dcre-btn--primary {
  background: var(--dcre-brand);
  color: var(--dcre-white);
  border-color: var(--dcre-brand);
}
.dcre-btn--primary:hover {
  background: var(--dcre-brand-dim);
  border-color: var(--dcre-brand-dim);
  color: var(--dcre-white);
}
.dcre-btn--outline {
  background: transparent;
  color: var(--dcre-brand);
  border-color: var(--dcre-brand);
}
.dcre-btn--outline:hover {
  background: var(--dcre-brand);
  color: var(--dcre-white);
}
.dcre-btn--ghost {
  background: transparent;
  color: var(--dcre-text-soft);
  border-color: var(--dcre-border);
}
.dcre-btn--ghost:hover {
  border-color: var(--dcre-brand);
  color: var(--dcre-brand);
}
.dcre-btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SINGLE LISTING
   ============================================================ */
#dcre-single-wrap {
  padding-bottom: 0;
  background: var(--dcre-bg);
}

.dcre-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--dcre-text-muted);
  padding: 20px 0 16px;
  font-family: var(--dcre-font);
}
.dcre-breadcrumb a {
  color: var(--dcre-brand);
  text-decoration: none;
  font-weight: 600;
}
.dcre-breadcrumb a:hover {
  text-decoration: underline;
}

.dcre-single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}

.dcre-gallery {
  border-radius: var(--dcre-radius);
  overflow: hidden;
  margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
}
.dcre-gallery__main {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.dcre-gallery__main img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: block;
}
.dcre-gallery__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
}
.dcre-gallery__thumbs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: #f4f4fb;
}
.dcre-gallery__thumb {
  width: 80px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: all 0.15s;
}
.dcre-gallery__thumb:hover,
.dcre-gallery__thumb.active {
  opacity: 1;
  border-color: var(--dcre-brand);
}

.dcre-single-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.dcre-single-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dcre-text);
  margin: 0 0 6px;
  font-family: var(--dcre-font);
}
.dcre-single-address {
  font-size: 13px;
  color: var(--dcre-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--dcre-font);
}
.dcre-single-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--dcre-brand);
  background: rgba(4, 1, 36, 0.07);
  border-radius: var(--dcre-radius-pill);
  padding: 3px 12px;
  margin-top: 8px;
}
.dcre-single-rate-wrap {
  text-align: right;
  flex-shrink: 0;
}
.dcre-single-rate {
  font-size: 22px;
  font-weight: 800;
  color: var(--dcre-brand);
  white-space: nowrap;
  font-family: var(--dcre-font);
}
.dcre-single-rate-label {
  font-size: 11px;
  color: var(--dcre-text-muted);
  margin-top: 2px;
}

.dcre-section {
  margin-bottom: 36px;
}
.dcre-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dcre-text);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--dcre-brand);
  font-family: var(--dcre-font);
}

.dcre-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.dcre-highlights li {
  font-size: 14px;
  color: var(--dcre-text);
  padding-left: 20px;
  position: relative;
  font-family: var(--dcre-font);
}
.dcre-highlights li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--dcre-brand);
  font-weight: 800;
}

.dcre-description {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dcre-text);
  font-family: var(--dcre-font);
}

.dcre-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--dcre-border);
  border-radius: var(--dcre-radius);
  overflow: hidden;
}
.dcre-details-row {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-bottom: 1px solid var(--dcre-border);
}
.dcre-details-row:nth-child(even) {
  background: var(--dcre-bg);
}
.dcre-details-row dt {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dcre-text-muted);
  margin-bottom: 3px;
  font-family: var(--dcre-font);
}
.dcre-details-row dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--dcre-text);
  margin: 0;
  font-family: var(--dcre-font);
}

.dcre-spaces-table-wrap {
  overflow-x: auto;
}
.dcre-spaces-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  font-family: var(--dcre-font);
}
.dcre-spaces-table th {
  background: var(--dcre-brand);
  color: var(--dcre-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: left;
}
.dcre-spaces-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--dcre-border);
  color: var(--dcre-text);
}
.dcre-spaces-table tbody tr:nth-child(even) td {
  background: var(--dcre-bg);
}
.dcre-space-status {
  display: inline-block;
  padding: 2px 9px;
  border-radius: var(--dcre-radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.dcre-space-status--available {
  background: #e8f5ee;
  color: var(--dcre-green);
}
.dcre-space-status--leased {
  background: #fce4ec;
  color: var(--dcre-red);
}
.dcre-space-status--pending {
  background: #fff3e0;
  color: var(--dcre-orange);
}

.dcre-single-sidebar {
  position: sticky;
  top: calc(85px + 50px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dcre-cta-card {
  background: var(--dcre-white);
  border: 1.5px solid var(--dcre-border);
  border-radius: var(--dcre-radius);
  padding: 24px;
  box-shadow: var(--dcre-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dcre-cta-rate {
  font-size: 24px;
  font-weight: 800;
  color: var(--dcre-brand);
  font-family: var(--dcre-font);
}
.dcre-cta-rate-sub {
  font-size: 11px;
  color: var(--dcre-text-muted);
  margin-top: -8px;
}
.dcre-cta-sf {
  font-size: 14px;
  font-weight: 600;
  color: var(--dcre-text);
  padding: 10px 0;
  border-top: 1px solid var(--dcre-border);
  border-bottom: 1px solid var(--dcre-border);
  font-family: var(--dcre-font);
}
.dcre-cta-contact {
  font-size: 13px;
  font-family: var(--dcre-font);
}
.dcre-cta-contact__item + .dcre-cta-contact__item {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--dcre-border);
}
.dcre-cta-contact__name {
  font-weight: 700;
  color: var(--dcre-text);
  margin: 0;
}
.dcre-cta-contact__row {
  margin: 0;
}
.dcre-cta-contact__row:last-child {
  margin-bottom: 0;
}
.dcre-cta-phone {
  color: var(--dcre-brand);
  font-weight: 700;
  text-decoration: none;
}
.dcre-cta-email {
  color: var(--dcre-text-muted);
  font-size: 12px;
  text-decoration: none;
}
.dcre-sidebar-details {
  background: var(--dcre-bg);
  border: 1px solid var(--dcre-border);
  border-radius: var(--dcre-radius);
  overflow: hidden;
}
.dcre-sidebar-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--dcre-border);
  font-size: 13px;
  font-family: var(--dcre-font);
}
.dcre-sidebar-detail-row:last-child {
  border-bottom: none;
}
.dcre-sidebar-detail-row span {
  color: var(--dcre-text-muted);
}
.dcre-sidebar-detail-row strong {
  color: var(--dcre-text);
  font-weight: 700;
}

.dcre-inquiry-section {
  background: var(--dcre-bg);
  border-radius: var(--dcre-radius);
  padding: 32px;
  margin-top: 40px;
}
.dcre-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dcre-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.dcre-form input,
.dcre-form textarea,
.dcre-form select {
  padding: 11px 14px;
  border: 1.5px solid var(--dcre-border);
  border-radius: var(--dcre-radius-sm);
  font-size: 13px;
  font-family: var(--dcre-font);
  background: var(--dcre-white);
  color: var(--dcre-text);
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.dcre-form input:focus,
.dcre-form textarea:focus {
  outline: none;
  border-color: var(--dcre-brand);
  box-shadow: 0 0 0 3px rgba(4, 1, 36, 0.08);
}
.dcre-form textarea {
  resize: vertical;
}

.dcre-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--dcre-radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--dcre-font);
}
.dcre-badge--type {
  background: var(--dcre-brand);
  color: var(--dcre-white);
}
.dcre-badge--land {
  background: #e8f5ee;
  color: var(--dcre-green);
}
.dcre-badge--status {
  background: rgba(0, 0, 0, 0.55);
  color: var(--dcre-white);
}

.dcre-pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}
.dcre-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--dcre-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--dcre-text);
  margin: 0 3px;
  transition: all 0.15s;
  font-family: var(--dcre-font);
}
.dcre-pagination .page-numbers.current,
.dcre-pagination .page-numbers:hover {
  background: var(--dcre-brand);
  color: var(--dcre-white);
  border-color: var(--dcre-brand);
}

/* ============================================================
   /PPTIES PAGE  —  #ppties-wrap scope
   ============================================================ */

#ppties-wrap * {
  box-sizing: border-box;
}
#ppties-wrap {
  font-family: var(--dcre-font);
  background: var(--dcre-bg);
  min-height: 100vh;
}

#ppties-wrap .pp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero */
#ppties-wrap .pp-hero {
  background: var(--dcre-brand);
  background-image:
    radial-gradient(
      ellipse at 12% 65%,
      rgba(108, 92, 231, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 88% 15%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 45%
    );
  padding: 80px 0 110px;
  color: var(--dcre-white);
}
#ppties-wrap .pp-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 14px;
}
#ppties-wrap .pp-hero__title {
  font-size: 54px;
  font-weight: 800;
  color: var(--dcre-white);
  margin: 0 0 12px;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
#ppties-wrap .pp-hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 400;
}

/* Main overlaps hero */
#ppties-wrap .pp-main {
  margin-top: -56px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

/* Filter card */
#ppties-wrap .pp-filter-card {
  background: var(--dcre-white);
  border-radius: 20px;
  padding: 28px 32px 26px;
  box-shadow: var(--dcre-shadow-lg);
  margin-bottom: 32px;
}

/* Tabs */
#ppties-wrap .pp-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
#ppties-wrap .pp-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: var(--dcre-radius-pill);
  border: 1.5px solid var(--dcre-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--dcre-text-soft);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  /* button reset */
  background: none;
  cursor: pointer;
  font-family: var(--dcre-font);
  line-height: 1;
}
#ppties-wrap .pp-tab--active,
#ppties-wrap .pp-tab:hover {
  background: var(--dcre-brand);
  border-color: var(--dcre-brand);
  color: var(--dcre-white);
}
#ppties-wrap .pp-tab__count {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: var(--dcre-radius-pill);
  background: rgba(255, 255, 255, 0.18);
}
#ppties-wrap .pp-tab:not(.pp-tab--active) .pp-tab__count {
  background: #f0f0f8;
  color: var(--dcre-text-muted);
}

/* Filter form */
#ppties-wrap .pp-filter-form {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: 14px;
  align-items: end;
}
/* Lease/Sale pill toggle row — spans full width above the other fields */
#ppties-wrap .pp-field--for {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
#ppties-wrap .pp-field--for label {
  flex-shrink: 0;
}
#ppties-wrap .pp-for-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
#ppties-wrap .pp-for-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--dcre-radius-pill);
  font-family: var(--dcre-font);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--dcre-border);
  background: var(--dcre-white);
  color: var(--dcre-text-soft);
  transition: all 0.15s;
  letter-spacing: 0.3px;
}
#ppties-wrap .pp-for-pill:hover {
  border-color: var(--dcre-brand);
  color: var(--dcre-brand);
}
#ppties-wrap .pp-for-pill--active {
  background: var(--dcre-brand);
  border-color: var(--dcre-brand);
  color: var(--dcre-white);
}
#ppties-wrap .pp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#ppties-wrap .pp-field label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--dcre-text-muted);
}
#ppties-wrap .pp-filter-form select,
#ppties-wrap .pp-filter-form input[type="number"] {
  font-family: var(--dcre-font);
  font-size: 13px;
  font-weight: 500;
  color: var(--dcre-text);
  background: var(--dcre-white);
  border: 1.5px solid var(--dcre-border);
  border-radius: var(--dcre-radius-sm);
  padding: 10px 14px;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s;
}
#ppties-wrap .pp-filter-form select:focus,
#ppties-wrap .pp-filter-form input:focus {
  outline: none;
  border-color: var(--dcre-brand);
}
#ppties-wrap .pp-field--range .pp-range {
  display: flex;
  align-items: center;
  gap: 8px;
}
#ppties-wrap .pp-range input {
  flex: 1;
}
#ppties-wrap .pp-range__sep {
  color: var(--dcre-border-dark);
  font-weight: 600;
  flex-shrink: 0;
}
#ppties-wrap .pp-field--actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#ppties-wrap .pp-actions {
  display: flex;
  gap: 8px;
}

/* Buttons */
#ppties-wrap .pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--dcre-radius-sm);
  font-family: var(--dcre-font);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
}
#ppties-wrap .pp-btn--brand {
  background: var(--dcre-brand);
  color: var(--dcre-white);
  border-color: var(--dcre-brand);
}
#ppties-wrap .pp-btn--brand:hover {
  background: var(--dcre-brand-dim);
  border-color: var(--dcre-brand-dim);
  color: var(--dcre-white);
}
#ppties-wrap .pp-btn--ghost {
  background: var(--dcre-white);
  color: var(--dcre-text-soft);
  border-color: var(--dcre-border);
}
#ppties-wrap .pp-btn--ghost:hover {
  border-color: var(--dcre-brand);
  color: var(--dcre-brand);
}

/* Results bar */
#ppties-wrap .pp-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
#ppties-wrap .pp-results-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--dcre-text-soft);
  margin: 0;
}
#ppties-wrap .pp-view-toggle {
  display: flex;
  gap: 4px;
}
#ppties-wrap .pp-view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--dcre-border);
  border-radius: 8px;
  background: var(--dcre-white);
  color: var(--dcre-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
#ppties-wrap .pp-view-btn--active,
#ppties-wrap .pp-view-btn:hover {
  background: var(--dcre-brand);
  border-color: var(--dcre-brand);
  color: var(--dcre-white);
}

/* Grid */
#ppties-wrap .pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity 0.2s ease;
}

/* Loading state */
#ppties-wrap .pp-grid--loading {
  opacity: 0.45;
  pointer-events: none;
}
#ppties-wrap .pp-filter-form [type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Card */
#ppties-wrap .pp-card {
  background: var(--dcre-white);
  border: 1.5px solid var(--dcre-border);
  border-radius: var(--dcre-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease;
}
#ppties-wrap .pp-card:hover {
  box-shadow: var(--dcre-shadow-lg);
  transform: translateY(-5px);
}

#ppties-wrap .pp-card__img {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f0f8;
  flex-shrink: 0;
  text-decoration: none;
}
#ppties-wrap .pp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#ppties-wrap .pp-card:hover .pp-card__img img {
  transform: scale(1.06);
}
#ppties-wrap .pp-card__no-img {
  width: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4fb;
}

/* Badges */
#ppties-wrap .pp-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* List view — compact horizontal rows */
#ppties-wrap .pp-grid.pp-grid--list {
  grid-template-columns: 1fr;
  gap: 8px;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card {
  flex-direction: row;
  align-items: stretch;
  border-radius: var(--dcre-radius-sm);
  height: 96px;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card:hover {
  transform: none;
  box-shadow: var(--dcre-shadow);
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__img {
  width: 136px;
  min-width: 136px;
  aspect-ratio: auto;
  flex-shrink: 0;
}
/* Badges hidden inside image in list view — shown in card body instead */
#ppties-wrap .pp-grid.pp-grid--list .pp-card__badges {
  display: none;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__body {
  flex-direction: row;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}
/* Badges outside image in list view */
#ppties-wrap .pp-grid.pp-grid--list .pp-card__list-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__list-badges .pp-badge {
  padding: 2px 8px;
  font-size: 9px;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__info {
  flex: 1;
  min-width: 0;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__title {
  font-size: 13px;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__addr {
  font-size: 11px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__divider {
  display: none;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__stats {
  display: flex;
  flex-direction: row;
  grid-template-columns: unset;
  gap: 24px;
  flex-shrink: 0;
  margin-bottom: 0;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-stat__label {
  font-size: 9px;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-stat__val {
  font-size: 12px;
}
#ppties-wrap .pp-grid.pp-grid--list .pp-card__cta {
  width: 32px;
  height: 32px;
  padding: 0;
  flex-shrink: 0;
  font-size: 0;
  justify-content: center;
  margin-top: 0;
}

/* Badges outside image in list view — hidden in grid view */
#ppties-wrap .pp-card__list-badges {
  display: none;
}
/* ── Map ─────────────────────────────────────────────────────────────────── */
#pp-map-wrap {
  margin-bottom: 28px;
  border-radius: var(--dcre-radius);
  overflow: hidden;
  border: 1.5px solid var(--dcre-border);
  position: relative;
}
#pp-map {
  width: 100%;
  height: 360px;
}
/* Custom map side panel */
.pp-map-side {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 252px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(4, 1, 36, 0.22);
  z-index: 10;
  overflow: hidden;
  transform: translateX(calc(-100% - 20px));
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  font-family: var(--dcre-font);
}
.pp-map-side--open {
  transform: translateX(0);
  pointer-events: auto;
}
/* ── Header strip with brand color ──────────────────────── */
.pp-map-side__header {
  background: var(--dcre-brand);
  padding: 12px 36px 12px 14px;
  position: relative;
}
.pp-map-side__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  transition: background 0.15s;
}
.pp-map-side__close:hover {
  background: rgba(255, 255, 255, 0.35);
}
.pp-map-side__title {
  font-weight: 700;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}
/* ── Image with padding / rounded corners ────────────────── */
.pp-map-side__img {
  padding: 12px 14px 0;
}
.pp-map-side__img img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
/* ── Body ─────────────────────────────────────────────────── */
.pp-map-side__body {
  padding: 10px 14px 14px;
}
.pp-map-side__badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.pp-map-side__badges span {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}
.pp-map-side__addr {
  color: #777;
  margin: 0 0 11px;
  font-size: 10.5px;
  line-height: 1.4;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.pp-map-side__addr::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.pp-map-side__link {
  display: block;
  text-align: center;
  background: var(--dcre-brand);
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  padding: 8px 0;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.pp-map-side__link:hover {
  opacity: 0.85;
  text-decoration: none;
  color: #fff !important;
}

#ppties-wrap .pp-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: var(--dcre-radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#ppties-wrap .pp-badge--lease {
  background: rgba(4, 1, 36, 0.82);
  color: var(--dcre-white);
}
#ppties-wrap .pp-badge--sale {
  background: rgba(250, 235, 200, 0.92);
  color: #7a3800;
}
#ppties-wrap .pp-badge--land {
  background: rgba(215, 240, 225, 0.92);
  color: #1a5c32;
}
#ppties-wrap .pp-badge--land-tag {
  background: rgba(215, 240, 225, 0.92);
  color: #1a5c32;
}
#ppties-wrap .pp-badge--cat {
  background: rgba(255, 255, 255, 0.88);
  color: var(--dcre-brand);
}
#ppties-wrap .pp-badge--cat[data-cat="Retail"],
#ppties-wrap .pp-badge--retail {
  background: rgba(255, 243, 224, 0.92);
  color: #b84c00;
}
#ppties-wrap .pp-badge--cat[data-cat="Restaurant"],
#ppties-wrap .pp-badge--restaurant {
  background: rgba(255, 235, 238, 0.92);
  color: #b71c1c;
}
#ppties-wrap .pp-badge--cat[data-cat="Industrial"],
#ppties-wrap .pp-badge--industrial {
  background: rgba(232, 234, 246, 0.92);
  color: #2d3a8c;
}
#ppties-wrap .pp-badge--cat[data-cat="Office"],
#ppties-wrap .pp-badge--office {
  background: rgba(227, 242, 253, 0.92);
  color: #0d5a8a;
}
#ppties-wrap .pp-badge--cat[data-cat="Flex"],
#ppties-wrap .pp-badge--flex {
  background: rgba(243, 229, 245, 0.92);
  color: #6a1b9a;
}

/* Card body */
#ppties-wrap .pp-card__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
#ppties-wrap .pp-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dcre-text);
  margin: 0 0 6px;
  line-height: 1.4;
}
#ppties-wrap .pp-card__title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s;
}
#ppties-wrap .pp-card__title a:hover {
  color: var(--dcre-brand);
}
#ppties-wrap .pp-card__addr {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 12px;
  color: var(--dcre-text-muted);
  margin: 0 0 14px;
}
#ppties-wrap .pp-card__addr svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #c8c8e0;
}
#ppties-wrap .pp-card__divider {
  height: 1px;
  background: #f0f0f8;
  margin-bottom: 14px;
}

#ppties-wrap .pp-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  flex: 1;
  margin-bottom: 18px;
}
#ppties-wrap .pp-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#ppties-wrap .pp-stat__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #b8b8d0;
}
#ppties-wrap .pp-stat__val {
  font-size: 14px;
  font-weight: 700;
  color: var(--dcre-brand);
}

#ppties-wrap .pp-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--dcre-brand);
  text-decoration: none;
  padding: 11px 16px;
  border-radius: var(--dcre-radius-sm);
  border: 1.5px solid var(--dcre-border);
  transition: all 0.15s;
  margin-top: auto;
}
#ppties-wrap .pp-card__cta:hover {
  background: var(--dcre-brand);
  border-color: var(--dcre-brand);
  color: var(--dcre-white);
}
#ppties-wrap .pp-card__cta svg {
  transition: transform 0.15s;
}
#ppties-wrap .pp-card__cta:hover svg {
  transform: translateX(3px);
}

/* No results */
#ppties-wrap .pp-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 32px;
}
#ppties-wrap .pp-no-results__icon {
  margin-bottom: 20px;
}
#ppties-wrap .pp-no-results h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dcre-text);
  margin: 0 0 8px;
}
#ppties-wrap .pp-no-results p {
  color: var(--dcre-text-muted);
  margin: 0 0 24px;
}

/* Pagination */
#ppties-wrap .pp-pagination {
  margin: 48px 0 0;
  display: flex;
  justify-content: center;
}
#ppties-wrap .pp-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6px;
  border: none;
  outline: none;
  background: none;
  box-shadow: none;
}
/* Divi sometimes adds .page-numbers to the <ul> itself — reset it */
#ppties-wrap .pp-pagination ul.page-numbers {
  display: flex;
  border: none;
  border-radius: 0;
  background: none;
  padding: 0;
  height: auto;
  min-width: 0;
}
#ppties-wrap .pp-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1.5px solid var(--dcre-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: var(--dcre-text);
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  background: var(--dcre-white);
}
#ppties-wrap .pp-pagination .page-numbers.current {
  background: var(--dcre-brand);
  color: var(--dcre-white);
  border-color: var(--dcre-brand);
}
#ppties-wrap .pp-pagination a.page-numbers:hover {
  background: var(--dcre-bg);
  color: var(--dcre-brand);
  border-color: var(--dcre-brand);
}
#ppties-wrap .pp-pagination .page-numbers.dots {
  border: none;
  background: none;
  color: var(--dcre-text-muted);
  cursor: default;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #ppties-wrap .pp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #ppties-wrap .pp-filter-form {
    grid-template-columns: 1fr 1fr;
  }
  .dcre-single-layout {
    grid-template-columns: 1fr;
  }
  .dcre-single-sidebar {
    position: static;
  }
}
@media (max-width: 768px) {
  #ppties-wrap .pp-hero {
    padding: 60px 0 90px;
  }
  #ppties-wrap .pp-hero__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  #ppties-wrap .pp-grid {
    grid-template-columns: 1fr;
  }
  #ppties-wrap .pp-filter-form {
    grid-template-columns: 1fr;
  }
  #ppties-wrap .pp-filter-card {
    padding: 20px;
  }
  #ppties-wrap .pp-grid.pp-grid--list .pp-card {
    height: auto;
  }
  #ppties-wrap .pp-grid.pp-grid--list .pp-card__img {
    width: 90px;
    min-width: 90px;
  }
  #ppties-wrap .pp-grid.pp-grid--list .pp-card__stats {
    display: none;
  }
  .dcre-highlights {
    grid-template-columns: 1fr;
  }
  .dcre-details-grid {
    grid-template-columns: 1fr;
  }
  .dcre-single-header {
    flex-direction: column;
  }
  .dcre-single-rate-wrap {
    text-align: left;
  }
  .dcre-form-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  #ppties-wrap .pp-container {
    padding: 0 16px;
  }
  #ppties-wrap .pp-hero__title {
    font-size: 28px;
    letter-spacing: 0;
  }
  #ppties-wrap .pp-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
  .dcre-container {
    padding: 0 16px;
  }
  .dcre-single-title {
    font-size: 22px;
  }
}

/* ============================================================
   SINGLE LISTING – HERO SECTION
   ============================================================ */
.dcre-hero {
  background: var(--dcre-brand);
  background-image:
    radial-gradient(
      ellipse at 10% 70%,
      rgba(108, 92, 231, 0.15) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 10%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 45%
    );
  padding: 48px 0 128px;
  color: var(--dcre-white);
}
.dcre-hero .dcre-breadcrumb {
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: 20px;
}
.dcre-hero .dcre-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.dcre-hero .dcre-breadcrumb a:hover {
  color: var(--dcre-white);
}
.dcre-hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dcre-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--dcre-radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: var(--dcre-font);
}
.dcre-hero-badge--type {
  background: rgba(255, 255, 255, 0.15);
  color: var(--dcre-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}
.dcre-hero-badge--cat {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.dcre-hero-badge--land {
  background: rgba(26, 102, 64, 0.5);
  color: #a8ffc4;
  border: 1px solid rgba(26, 102, 64, 0.6);
}
.dcre-hero-badge--status {
  background: rgba(160, 32, 32, 0.5);
  color: #ffc4c4;
  border: 1px solid rgba(160, 32, 32, 0.6);
}
.dcre-hero__title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dcre-white);
  margin: 0 0 10px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  font-family: var(--dcre-font);
}
.dcre-hero__address {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 28px;
  font-family: var(--dcre-font);
}
.dcre-hero__stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  width: fit-content;
}
.dcre-hero__stat {
  display: flex;
  flex-direction: column;
  padding: 14px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.dcre-hero__stat:last-child {
  border-right: none;
}
.dcre-hero__stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  font-family: var(--dcre-font);
}
.dcre-hero__stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--dcre-white);
  font-family: var(--dcre-font);
}

/* ============================================================
   SINGLE LISTING – BODY (overlaps hero)
   ============================================================ */
.dcre-single-body {
  background: var(--dcre-bg);
  margin-top: -88px;
  position: relative;
  z-index: 10;
  padding: 0 0 64px;
}
.dcre-single-body > .dcre-container {
  background: var(--dcre-white);
  border-radius: 24px;
  padding-top: 40px;
  padding-bottom: 72px;
  box-shadow:
    0 -6px 48px rgba(4, 1, 36, 0.12),
    0 2px 16px rgba(4, 1, 36, 0.05);
}

/* Map */
.dcre-map {
  height: 380px;
  border-radius: var(--dcre-radius);
  overflow: hidden;
  border: 1px solid var(--dcre-border);
}

/* Empty gallery */
.dcre-gallery--empty .dcre-gallery__main--empty {
  background: var(--dcre-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dcre-text-muted);
  font-size: 13px;
  font-family: var(--dcre-font);
  min-height: 240px;
}

/* CTA card top section */
.dcre-cta-card__top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dcre-border);
}

/* CTA actions */
.dcre-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Sidebar header */
.dcre-sidebar-details__header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--dcre-text-muted);
  padding: 10px 16px 8px;
  background: var(--dcre-brand);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--dcre-radius) var(--dcre-radius) 0 0;
}

/* Video CTA */
.dcre-video-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dcre-brand);
  border-radius: var(--dcre-radius);
  padding: 28px 32px;
  text-decoration: none;
  transition: all 0.18s;
}
.dcre-video-cta:hover {
  background: var(--dcre-brand-dim);
  transform: translateY(-2px);
  box-shadow: var(--dcre-shadow-lg);
}
.dcre-video-cta__play {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: background 0.15s;
}
.dcre-video-cta:hover .dcre-video-cta__play {
  background: rgba(255, 255, 255, 0.25);
}
.dcre-video-cta span {
  font-size: 15px;
  font-weight: 700;
  color: var(--dcre-white);
  font-family: var(--dcre-font);
}

/* ============================================================
   SINGLE LISTING – INQUIRY SECTION (redesign)
   ============================================================ */
.dcre-inquiry-section {
  background: var(--dcre-brand);
  background-image: radial-gradient(
    ellipse at 90% 50%,
    rgba(108, 92, 231, 0.12) 0%,
    transparent 60%
  );
  border-radius: var(--dcre-radius);
  padding: 0;
  margin-top: 48px;
  margin-bottom: 0;
  overflow: hidden;
}
.dcre-inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}
.dcre-inquiry-text {
  padding: 48px 40px;
  color: var(--dcre-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.dcre-inquiry-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dcre-white);
  margin: 0;
  line-height: 1.2;
  font-family: var(--dcre-font);
}
.dcre-inquiry-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.6;
  font-family: var(--dcre-font);
}
.dcre-inquiry-agent {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.dcre-inquiry-agent__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dcre-white);
  margin-bottom: 4px;
  font-family: var(--dcre-font);
}
.dcre-inquiry-agent__phone {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--dcre-font);
}
.dcre-inquiry-agent__phone:hover {
  color: var(--dcre-white);
}
.dcre-inquiry-section .dcre-form {
  background: var(--dcre-brand);
  padding: 40px;
  border-radius: 0;
}
.dcre-inquiry-section .dcre-form input,
.dcre-inquiry-section .dcre-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--dcre-white);
}
.dcre-inquiry-section .dcre-form input::placeholder,
.dcre-inquiry-section .dcre-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.dcre-inquiry-section .dcre-form input:focus,
.dcre-inquiry-section .dcre-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.dcre-inquiry-section .dcre-btn--primary {
  background: var(--dcre-white);
  color: var(--dcre-brand);
  border-color: var(--dcre-white);
}
.dcre-inquiry-section .dcre-btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--dcre-brand);
}

/* ============================================================
   RESPONSIVE – SINGLE HERO + BODY
   ============================================================ */
@media (max-width: 900px) {
  .dcre-hero__title {
    font-size: 28px;
  }
  .dcre-hero__stats {
    width: 100%;
    border-radius: 12px;
  }
  .dcre-hero__stat {
    padding: 10px 16px;
    flex: 1 0 auto;
  }
  .dcre-single-layout {
    grid-template-columns: 1fr;
  }
  .dcre-inquiry-inner {
    grid-template-columns: 1fr;
  }
  .dcre-inquiry-text {
    padding: 36px 32px 24px;
  }
  .dcre-inquiry-section .dcre-form {
    padding: 32px;
    border-radius: 0 0 var(--dcre-radius) var(--dcre-radius);
  }
}
@media (max-width: 640px) {
  .dcre-hero {
    padding: 32px 0 96px;
  }
  .dcre-hero__title {
    font-size: 24px;
  }
  .dcre-hero__stats {
    border-radius: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .dcre-hero__stat {
    padding: 10px 14px;
    flex: 0 0 auto;
  }
  .dcre-hero__stat-value {
    font-size: 14px;
  }
  .dcre-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .dcre-single-body > .dcre-container {
    border-radius: 18px;
    padding-top: 28px;
    padding-bottom: 48px;
  }
  .dcre-single-layout {
    grid-template-columns: 1fr;
  }
  .dcre-gallery__thumbs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 5px;
    padding: 5px 8px;
  }
  .dcre-gallery__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 46px;
  }
  .dcre-spaces-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dcre-inquiry-text {
    padding: 28px 20px 20px;
  }
  .dcre-inquiry-section .dcre-form {
    padding: 20px;
  }
  .dcre-inquiry-inner {
    grid-template-columns: 1fr;
  }
  .dcre-form-row {
    grid-template-columns: 1fr;
  }
  /* prevent any wide element from causing horizontal scroll */
  .dcre-single-body * {
    max-width: 100%;
  }
  .dcre-map {
    height: 200px !important;
  }
}
