.dch-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}
.dch-cabecera {
  margin-bottom: 32px;
  padding: 34px 28px;
  border-radius: 22px;
  background: #f7f3ec;
  border: 1px solid rgba(0,0,0,0.06);
}
.dch-kicker {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dch-cabecera h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}
.dch-hero-image {
  margin: 18px 0 22px;
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}
.dch-hero-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.dch-intro {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.45;
}
.dch-fecha {
  margin: 0;
  color: #555;
  font-size: 16px;
}
.dch-listado {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.dch-restaurante {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.dch-imagen {
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #eee;
  text-decoration: none;
  position: relative;
  flex: 0 0 auto;
}
.dch-imagen img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .25s ease;
}
.dch-restaurante:hover .dch-imagen img {
  transform: scale(1.04);
}
.dch-imagen-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #666;
  font-weight: 700;
}
.dch-restaurante-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.dch-etiqueta {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1ede5;
  color: #222;
  font-size: 12px;
  font-weight: 700;
}
.dch-restaurante h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}
.dch-restaurante h2 a {
  color: #111;
  text-decoration: none;
}
.dch-restaurante h2 a:hover {
  text-decoration: underline;
}
.dch-meta {
  margin: 0 0 12px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
}
.dch-restaurante-info p {
  font-size: 15px;
  line-height: 1.45;
}
.dch-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}
.dch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.dch-btn-ficha {
  background: #111;
  color: #fff;
}
.dch-btn-reserva {
  background: #f1ede5;
  color: #111;
}
.dch-btn:hover {
  opacity: .88;
}
.dch-cierre {
  margin-top: 36px;
  padding: 28px;
  border-radius: 20px;
  background: #111;
  color: #fff;
}
.dch-cierre h2 {
  margin-top: 0;
  color: #fff;
}
.dch-cierre p {
  color: rgba(255,255,255,.82);
}
.dch-cierre .dch-btn-ficha {
  background: #fff;
  color: #111;
}
@media (max-width: 1024px) {
  .dch-listado { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dch-imagen { height: 220px; }
}
@media (max-width: 767px) {
  .dch-wrapper { padding: 18px 14px 42px; }
  .dch-cabecera { padding: 24px 20px; border-radius: 18px; }
  .dch-intro { font-size: 18px; }
  .dch-listado { grid-template-columns: 1fr; gap: 18px; }
  .dch-imagen { height: 215px; }
  .dch-botones { flex-direction: column; }
  .dch-btn { width: 100%; }
}
