/* Archivo: assets/css/property-archive.css (solo archive de Propiedades) */

.dt-prop-archive {
  --dt-max: 1200px;
  --dt-gap: 22px;
  --dt-radius: 14px;
  --dt-border: rgba(0, 0, 0, .10);
  --dt-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --dt-shadow-hover: 0 14px 40px rgba(0, 0, 0, .12);
}

.dt-prop-archive .dt-container {
  max-width: var(--dt-max);
  margin: 0 auto;
  padding: 40px 18px;
}

.dt-archive-header {
  margin-bottom: 18px;
}

.dt-archive-header h1 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 6px;
}

.dt-archive-header p {
  margin: 0;
  opacity: .75;
}

/* Barra filtros */
.dt-filters {
  background: #fff;
  border: 1px solid var(--dt-border);
  border-radius: var(--dt-radius);
  box-shadow: var(--dt-shadow);
  padding: 14px;
  margin: 18px 0 20px;
}

.dt-filters__row {
  display: grid;
  grid-template-columns: 1.2fr 220px 260px 1fr auto;
  gap: 12px;
  align-items: end;
}

.dt-filter__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 6px;
  opacity: .85;
}

.dt-select,
.dt-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--dt-border);
  border-radius: 12px;
  background: #fff;
  outline: none;
}

.dt-select:focus,
.dt-input:focus {
  border-color: rgba(0, 0, 0, .25);
}

/* chips operación */
.dt-filter--operacion .dt-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dt-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.dt-chip span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--dt-border);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.dt-chip input:checked+span {
  background: #0b1b2b;
  color: #fff;
  border-color: #0b1b2b;
}

/* botones */
.dt-filter--actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.dt-btn {
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #0b1b2b;
  background: #0b1b2b;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dt-btn--ghost {
  background: transparent;
  color: #0b1b2b;
}

.dt-btn:hover {
  filter: brightness(1.03);
}

/* resultados */
.dt-results__meta {
  margin: 6px 0 14px;
  opacity: .8;
}

/* grilla cards */
.dt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--dt-gap);
}

.dt-card {
  background: #fff;
  border: 1px solid var(--dt-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--dt-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}

.dt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dt-shadow-hover);
}

.dt-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
  text-decoration: none;
}

.dt-card__media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.dt-card__ph {
  height: 280px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .04);
  font-weight: 800;
  opacity: .7;
}

.dt-card__body {
  padding: 14px 16px 16px;
}

.dt-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.dt-card__tax {
  font-size: 13px;
  opacity: .75;
}

/* paginación */
.dt-pagination {
  margin: 22px 0 0;
}

.dt-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--dt-border);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 8px;
}

.dt-pagination .current {
  background: #0b1b2b;
  color: #fff;
  border-color: #0b1b2b;
}

/* responsive */
@media (max-width: 1024px) {
  .dt-filters__row {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .dt-filter--actions {
    justify-content: stretch;
  }

  .dt-btn,
  .dt-btn--ghost {
    width: 100%;
  }

  .dt-grid {
    grid-template-columns: 1fr;
  }

  .dt-card__media img,
  .dt-card__ph {
    height: 240px;
  }
}

/* ===== Prop Cards (markup nuevo) ===== */
.dt-prop-card {
  overflow: hidden;
  border-radius: 18px;
}

.dt-prop-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f2f4f7;
}

.dt-prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-prop-card__badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.dt-prop-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 18, 31, .86);
  backdrop-filter: blur(6px);
}

.dt-prop-badge--credit {
  background: rgba(10, 18, 31, .72);
}

.dt-prop-card__body {
  padding: 16px 18px 18px;
}

.dt-prop-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}

.dt-prop-card__loc {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(10, 18, 31, .68);
}

.dt-prop-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.dt-prop-card__currency {
  font-size: 14px;
  font-weight: 750;
  color: rgba(10, 18, 31, .7);
  text-transform: lowercase;
}

.dt-prop-card__amount {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .2px;
}

.dt-prop-card__amount--na {
  font-size: 20px;
  font-weight: 850;
}

.dt-prop-card__meta {
  padding-top: 10px;
  border-top: 1px dashed rgba(10, 18, 31, .14);
  font-size: 12.5px;
  font-weight: 650;
  color: rgba(10, 18, 31, .72);
}

/* ===== Prop Cards (markup nuevo) ===== */
.dt-prop-card {
  overflow: hidden;
  border-radius: 18px;
}

.dt-prop-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f2f4f7;
}

.dt-prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dt-prop-card__badges {
  position: absolute;
  left: 14px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}

.dt-prop-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 18, 31, .86);
  backdrop-filter: blur(6px);
}

.dt-prop-badge--credit {
  background: rgba(10, 18, 31, .72);
}

.dt-prop-card__body {
  padding: 16px 18px 18px;
}

.dt-prop-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.15;
}

.dt-prop-card__loc {
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(10, 18, 31, .68);
}

.dt-prop-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.dt-prop-card__currency {
  font-size: 14px;
  font-weight: 750;
  color: rgba(10, 18, 31, .7);
  text-transform: lowercase;
}

.dt-prop-card__amount {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .2px;
}

.dt-prop-card__amount--na {
  font-size: 20px;
  font-weight: 850;
}

.dt-prop-card__meta {
  padding-top: 10px;
  border-top: 1px dashed rgba(10, 18, 31, .14);
  font-size: 12.5px;
  font-weight: 650;
  color: rgba(10, 18, 31, .72);
}

/* ===============================
   REFINAMIENTO PREMIUM CARDS
   =============================== */

.dt-prop-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.dt-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

/* Imagen */
.dt-prop-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f3f5f7;
}

/* ===== BADGES ===== */

.dt-prop-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dt-prop-badge {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(10, 18, 31, .85);
  color: #fff;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}

.dt-prop-badge--credit {
  background: rgba(10, 18, 31, .65);
  font-size: 10px;
  font-weight: 600;
}

/* ===== BODY ===== */

.dt-prop-card__body {
  padding: 18px 20px 20px;
}

.dt-prop-card__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  color: #0e1a2b;
}

.dt-prop-card__loc {
  margin: 0 0 14px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

/* ===== PRECIO ===== */

.dt-prop-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.dt-prop-card__currency {
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  color: #6b7280;
}

.dt-prop-card__amount {
  font-size: 28px;
  font-weight: 900;
  color: #0e1a2b;
  letter-spacing: .3px;
}

.dt-prop-card__amount--na {
  font-size: 18px;
  font-weight: 700;
}

/* ===== METADATA ===== */

.dt-prop-card__meta {
  font-size: 12.5px;
  color: #6b7280;
  padding-top: 12px;
  border-top: 1px solid #eef1f4;
  line-height: 1.6;
}

/* ===== GRID ===== */

.dt-grid {
  gap: 28px;
}

/* =========================================================
   Di Tieri & Rodriguez — Minimal Premium (solo Archive)
   Paleta:
   - Rojo marca: #E31E24
   - Negro:      #0B0F14
   - Dorado:     #C9A227
   - Gris UI:    #6B7280 / #EEF1F4
   ========================================================= */

.dt-prop-archive {
  --dt-red: #E31E24;
  --dt-ink: #0B0F14;
  --dt-gold: #C9A227;
  --dt-muted: #6B7280;
  --dt-line: #EEF1F4;
  --dt-bg: #F6F8FB;

  --dt-radius: 16px;
  --dt-radius-sm: 12px;
  --dt-shadow: 0 10px 30px rgba(11, 15, 20, .06);
  --dt-shadow-hover: 0 18px 46px rgba(11, 15, 20, .10);
}

/* Fondo general del área (si ya lo tenés, esto solo suaviza) */
.dt-prop-archive {
  color: var(--dt-ink);
}

.dt-prop-archive .dt-archive-header p {
  color: var(--dt-muted);
}

/* =========================
   FILTROS — minimal premium
   ========================= */
.dt-filters {
  border-radius: var(--dt-radius);
  background: #fff;
  box-shadow: var(--dt-shadow);
  border: 1px solid var(--dt-line);
}

.dt-filter__label {
  color: var(--dt-muted);
  font-weight: 650;
}

.dt-select,
.dt-input {
  border-radius: 12px;
  border: 1px solid var(--dt-line);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.dt-select:focus,
.dt-input:focus {
  outline: none;
  border-color: rgba(227, 30, 36, .45);
  box-shadow: 0 0 0 4px rgba(227, 30, 36, .10);
}

/* Chips operación */
.dt-chip span {
  border-radius: 999px;
  border: 1px solid var(--dt-line);
  background: #fff;
  color: var(--dt-ink);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.dt-chip input:checked+span {
  border-color: rgba(227, 30, 36, .35);
  background: rgba(227, 30, 36, .08);
  color: var(--dt-ink);
}

/* Botones */
.dt-btn {
  border-radius: 999px;
  background: var(--dt-ink);
  border: 1px solid var(--dt-ink);
  color: #fff;
  font-weight: 750;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.dt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11, 15, 20, .12);
}

.dt-btn--ghost {
  background: #fff;
  color: var(--dt-ink);
  border: 1px solid var(--dt-line);
}

.dt-btn--ghost:hover {
  border-color: rgba(11, 15, 20, .18);
  box-shadow: 0 10px 22px rgba(11, 15, 20, .06);
}

/* =========================
   CARDS — minimal europeo
   ========================= */
.dt-prop-card {
  border-radius: var(--dt-radius);
  border: 1px solid var(--dt-line);
  box-shadow: var(--dt-shadow);
  overflow: hidden;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.dt-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dt-shadow-hover);
}

/* Media */
.dt-prop-card__media {
  background: #F2F4F7;
}

/* Badges: negros + acento sutil */
.dt-prop-card__badges {
  top: 14px;
  left: 14px;
  gap: 7px;
}

.dt-prop-badge {
  background: rgba(11, 15, 20, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .5px;
  padding: 7px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Apto crédito: negro más suave + filete dorado */
.dt-prop-badge--credit {
  background: rgba(11, 15, 20, .70);
  position: relative;
}

.dt-prop-badge--credit::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: var(--dt-gold);
  opacity: .9;
}

/* Body */
.dt-prop-card__body {
  padding: 18px 20px 20px;
}

.dt-prop-card__title {
  margin: 0 0 7px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 780;
  color: var(--dt-ink);
}

.dt-prop-card__loc {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--dt-muted);
  font-weight: 520;
}

/* Precio: minimal, protagónico y con acento marca */
.dt-prop-card__price {
  gap: 8px;
  margin-bottom: 14px;
}

.dt-prop-card__currency {
  font-size: 12px;
  color: var(--dt-muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* Acento rojo MUY sutil (solo el número, para identidad) */
.dt-prop-card__amount {
  font-size: 30px;
  font-weight: 920;
  color: var(--dt-ink);
}

.dt-prop-card__amount::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--dt-red);
  opacity: .85;
  transform: translateY(-4px);
}

.dt-prop-card__meta {
  border-top: 1px solid var(--dt-line);
  padding-top: 12px;
  color: var(--dt-muted);
  font-size: 12.5px;
  font-weight: 620;
  line-height: 1.55;
}

/* Grid spacing (aire europeo) */
.dt-grid {
  gap: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .dt-prop-card__body {
    padding: 16px 16px 18px;
  }

  .dt-prop-card__amount {
    font-size: 28px;
  }
}


/* =========================================
   DI TIERI & RODRIGUEZ — FINAL PREMIUM UI
   ========================================= */

.dt-prop-archive {
  --dt-red: #E31E24;
  --dt-ink: #0B0F14;
  --dt-gold: #C9A227;
  --dt-muted: #6B7280;
  --dt-line: #EEF1F4;

  --dt-radius: 14px;
  --dt-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  --dt-shadow-hover: 0 18px 40px rgba(0, 0, 0, .10);
}

/* ======================
   FILTROS MÁS COMPACTOS
   ====================== */

.dt-filters {
  padding: 16px 18px;
  border-radius: var(--dt-radius);
  border: 1px solid var(--dt-line);
  box-shadow: var(--dt-shadow);
}

.dt-filter__label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dt-select,
.dt-input {
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--dt-line);
}

.dt-chip span {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid var(--dt-line);
}

.dt-chip input:checked+span {
  background: rgba(227, 30, 36, .08);
  border-color: rgba(227, 30, 36, .25);
}

.dt-btn {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.dt-btn--ghost {
  background: #fff;
}

/* ======================
   CARDS PREMIUM
   ====================== */

.dt-prop-card {
  border-radius: var(--dt-radius);
  border: 1px solid var(--dt-line);
  box-shadow: var(--dt-shadow);
  transition: all .2s ease;
}

.dt-prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dt-shadow-hover);
}

/* BADGES */

.dt-prop-badge {
  padding: 6px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  border-radius: 999px;
  background: rgba(11, 15, 20, .88);
}

.dt-prop-badge--credit {
  background: rgba(11, 15, 20, .65);
}

/* === DIFERENCIACIÓN VENTA / ALQUILER === */

.dt-prop-card--venta .dt-prop-badge--op::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--dt-red);
  border-radius: 50%;
  margin-left: 8px;
}

.dt-prop-card--alquiler .dt-prop-badge--op::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--dt-gold);
  border-radius: 50%;
  margin-left: 8px;
}

/* BODY */

.dt-prop-card__body {
  padding: 18px;
}

.dt-prop-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.35;
}

.dt-prop-card__loc {
  font-size: 12.5px;
  color: var(--dt-muted);
  margin-bottom: 12px;
}

/* PRECIO */

.dt-prop-card__price {
  margin-bottom: 12px;
}

.dt-prop-card__currency {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--dt-muted);
}

.dt-prop-card__amount {
  font-size: 29px;
  font-weight: 900;
  letter-spacing: .4px;
}

/* META */

.dt-prop-card__meta {
  font-size: 12px;
  border-top: 1px solid var(--dt-line);
  padding-top: 10px;
  line-height: 1.6;
}

/* GRID */

.dt-grid {
  gap: 26px;
}

/* ===== Imagen portada 3:4 (1200x1600) ===== */
.dt-prop-card__media {
  aspect-ratio: 3 / 4 !important;
  /* fuerza 3:4 */
  overflow: hidden;
  background: #f2f4f7;
}

.dt-prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* recorta sin deformar */
  object-position: center;
  /* centra el recorte */
  display: block;
}

/* =========================================================
   FIX: Card media full-height + ratio vertical sin huecos
   (override seguro, solo en archive)
   ========================================================= */

/* 1) El link y el card se comportan como layout vertical */
.dt-prop-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 2) La zona media mantiene proporción y no deja huecos */
.dt-prop-card__media {
  aspect-ratio: 4 / 5;
  /* tus fotos 1200x1600 */
  /* si preferís menos alto: cambia a 4 / 5 */
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f2f4f7;
  position: relative;
}

/* 3) La imagen llena toda la zona media */
.dt-prop-card__img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 4) Evitar que Astra/meta estilos limiten el figure/img */
.dt-prop-card__media img {
  max-width: none !important;
}

/* 5) El cuerpo ocupa lo que sigue, sin empujar raro */
.dt-prop-card__body {
  flex: 1 1 auto;
}

/* ==============================
   GRID: 2 → 3 → 4 columnas
   ============================== */

.dt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* base: 2 */
  gap: 26px;
}

/* Desktop (notebooks/monitores normales): 3 por fila */
@media (min-width: 1024px) {
  .dt-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Pantallas grandes: 4 por fila */
@media (min-width: 1400px) {
  .dt-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobile: 1 por fila */
@media (max-width: 640px) {
  .dt-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.dt-tax-description {
  max-width: 980px;
  margin: 40px auto 10px;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

.dt-tax-description p {
  margin: 0 0 10px;
}

.dt-tax-description p:last-child {
  margin-bottom: 0;
}

/* =========================
   SEO text (tax description)
   ========================= */
.dt-tax-description {
  max-width: 1100px;
  margin: 28px auto 10px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
  color: #3a3a3a;
  text-align: left;
}

.dt-tax-description p {
  margin: 0 0 12px;
  line-height: 1.75;
  font-size: 15.5px;
}

.dt-tax-description p:last-child {
  margin-bottom: 0;
}

/* Primera línea como “título” si tu descripción arranca con una frase corta */
.dt-tax-description p:first-child {
  font-weight: 800;
  color: #111;
  letter-spacing: .2px;
  font-size: 16px;
}

/* Mejor en pantallas chicas */
@media (max-width: 768px) {
  .dt-tax-description {
    padding: 18px 18px;
    margin: 22px 14px 10px;
    border-radius: 14px;
  }
}

/* =========================================
   LANDING SEO POR ZONA (intro superior)
   ========================================= */

.dt-zone-intro {
  max-width: 1120px;
  margin: 20px auto 26px;
  padding: 24px 26px 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
  backdrop-filter: blur(4px);
}

.dt-zone-intro__text {
  max-width: 920px;
  margin: 0 0 16px;
}

.dt-zone-intro__text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #2f3640;
}

.dt-zone-intro__text p+p {
  margin-top: 8px;
}

.dt-zone-intro__text strong {
  color: #111111;
  font-weight: 800;
}

.dt-zone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dt-zone-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #e3e7ec;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.dt-zone-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, .10);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .07);
  background: #fffdfd;
}

.dt-zone-links__cta {
  background: #0b0f14 !important;
  color: #ffffff !important;
  border-color: #0b0f14 !important;
  box-shadow: 0 10px 20px rgba(11, 15, 20, .14);
}

.dt-zone-links__cta:hover {
  background: #1b2330 !important;
  border-color: #1b2330 !important;
  color: #ffffff !important;
}

.dt-archive-header+.dt-zone-intro {
  margin-top: 16px;
}

@media (max-width: 992px) {
  .dt-zone-intro {
    padding: 20px 20px 18px;
  }

  .dt-zone-intro__text p {
    font-size: 15px;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .dt-zone-intro {
    margin: 16px 0 22px;
    padding: 18px 16px 16px;
    border-radius: 14px;
  }

  .dt-zone-intro__text {
    margin-bottom: 14px;
  }

  .dt-zone-intro__text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .dt-zone-links {
    gap: 8px;
  }

  .dt-zone-links a {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }
}

/* =========================================
   SEO blocks — interlinking + zonas cercanas
========================================= */

.dt-seo-links,
.dt-seo-nearby {
  width: 100%;
  max-width: var(--dt-max, 1500px);
  margin: 24px auto 0;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.dt-seo-nearby {
  margin-top: 16px;
  background: rgba(255, 255, 255, .88);
}

.dt-seo-links__header,
.dt-seo-nearby__header {
  margin-bottom: 16px;
}

.dt-seo-links__header h3,
.dt-seo-nearby__header h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
  color: #1f2f4a;
}

.dt-seo-links__header p,
.dt-seo-nearby__header p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.5;
  color: #667085;
}

.dt-seo-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dt-seo-nearby__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dt-seo-links__item,
.dt-seo-nearby__item {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .07);
  background: #fafafa;
  color: #1f2f4a;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.35;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    color .18s ease;
}

.dt-seo-nearby__item {
  min-height: 52px;
  font-weight: 500;
  background: #fff;
}

.dt-seo-links__item:hover,
.dt-seo-nearby__item:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(164, 0, 0, .18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
  color: #a40000;
  text-decoration: none;
}

.dt-seo-links__item:focus-visible,
.dt-seo-nearby__item:focus-visible {
  outline: 2px solid rgba(164, 0, 0, .35);
  outline-offset: 2px;
}

.dt-seo-links__item span,
.dt-seo-nearby__item span {
  display: block;
}

.dt-tax-description {
  margin-top: 22px;
}

/* Mejor integración visual con el listado */
.dt-results+.dt-seo-links {
  margin-top: 28px;
}

/* Tablet */
@media (max-width: 992px) {
  .dt-seo-nearby__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {

  .dt-seo-links,
  .dt-seo-nearby {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .dt-seo-links__grid,
  .dt-seo-nearby__grid {
    grid-template-columns: 1fr;
  }

  .dt-seo-links__item,
  .dt-seo-nearby__item {
    min-height: 52px;
    padding: 13px 14px;
  }
}

/* =========================================
   Taxonomy description (texto SEO)
========================================= */

.dt-tax-description {
  width: 100%;
  max-width: var(--dt-max, 1500px);
  margin: 18px auto 0;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
  line-height: 1.65;
  color: #2c2c2c;
}

.dt-tax-description p {
  margin: 0 0 12px;
}

.dt-tax-description p:last-child {
  margin-bottom: 0;
}

.dt-tax-description strong {
  font-size: 1.15rem;
  color: #1f2f4a;
}

/* separación correcta después de zonas cercanas */

.dt-seo-nearby+.dt-tax-description {
  margin-top: 18px;
}

/* mobile */

@media (max-width:768px) {

  .dt-tax-description {
    padding: 20px 18px;
    border-radius: 14px;
  }

}

.dt-links-zonas {
  margin: 20px 0 30px;
}

.dt-links-zonas p {
  margin-bottom: 10px;
  font-weight: 600;
}

.dt-links-zonas a {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f3f3f3;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  transition: 0.2s;
}

.dt-links-zonas a:hover {
  background: #d40000;
  color: #fff;
}

.dt-zone-global-links {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.dt-zone-global-links p {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.dt-zone-global-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.10);
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.dt-zone-global-links a:hover {
  background: var(--brand-red, #d40000);
  border-color: var(--brand-red, #d40000);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================
   ESTADO: RESERVADA (cards)
========================================= */

.dt-prop-card__status--reservada {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(227, 30, 36, 0.58);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 10px;
  z-index: 3;
}

.dt-prop-card--reservada .dt-prop-card__img {
  filter: brightness(0.88) saturate(0.98);
}

/* prefijo en título */
.dt-prop-card__title-status {
  display: inline-block;
  color: #E31E24;
  font-weight: 900;
  margin-right: 6px;
  letter-spacing: 0.5px;
}