/* Panel anfitrión unificado */
.host-hub {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 12rem);
  min-height: 60vh;
}

.host-hub__container {
  max-width: 75rem; /* ~1200px */
}

.host-hub__breadcrumb {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
}

.host-hub__breadcrumb:hover { text-decoration: underline; }

.host-hub__topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.host-hub__topbar-sep { color: #d1d5db; }

.host-hub__topbar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
}

.host-hub-banner {
  margin-bottom: 1.25rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  background: #fffbeb;
  border: 1px solid #fcd34d;
}

.host-hub-banner__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #92400e;
}

.host-hub-banner__text {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #b45309;
}

/* Nav tabs */
.host-hub__nav {
  display: flex;
  gap: 0.5rem;
  padding: 0.35rem;
  background: #f3f4f6;
  border-radius: 9999px;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.host-hub__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s;
  flex: 1;
  justify-content: center;
  min-width: fit-content;
}

.host-hub__tab:hover {
  color: #374151;
  background: rgba(255, 255, 255, 0.6);
}

.host-hub__tab.is-active {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.host-hub__tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.host-hub__tab-icon svg {
  width: 100%;
  height: 100%;
}

.host-hub__tab-badge {
  min-width: 1.15rem;
  height: 1.15rem;
  display: inline-grid;
  place-items: center;
  padding: 0 0.25rem;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-size: 0.625rem;
}

.host-hub__tab.is-active .host-hub__tab-badge {
  color: #fff;
  background: var(--brand-dark);
}

/* Head & CTAs */
.host-hub__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}

.host-hub__btn--primary {
  background: var(--brand, #3ea35d);
  color: #fff;
}

.host-hub__btn--primary:hover { filter: brightness(1.05); }

.host-hub__btn--secondary {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
}

.host-hub__btn--secondary:hover { background: #f9fafb; }

.host-hub__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.host-hub__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.host-hub__sub {
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  color: #6b7280;
  max-width: 36rem;
}

.host-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.host-hub__cta:hover {
  background: var(--brand-dark);
  color: #fff;
}

.host-hub__cta--ghost {
  background: #fff;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.host-hub__cta--ghost:hover { background: #f9fafb; }

/* Card grid */
.host-hub__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .host-hub__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .host-hub__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Rich cards */
.host-hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.host-hub-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.host-hub-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-soft), var(--brand-light));
  overflow: hidden;
}

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

.host-hub-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  opacity: 0.55;
}

.host-hub-card__img--empty svg {
  width: 2.5rem;
  height: 2.5rem;
}

.host-hub-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
}

.host-hub-card__body {
  flex: 1;
  padding: 1rem 1.125rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.host-hub-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.host-hub-card__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.45;
}

.host-hub-card__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.host-hub-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.host-hub-card__meta-item svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.7;
}

.host-hub-card__meta-sep {
  color: #d1d5db;
}

.host-hub-card__price {
  font-weight: 700;
  color: #374151;
}

.host-hub-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.25rem;
}

.host-hub-card__alert {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.host-hub-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem 1.125rem;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
}

.host-hub-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.host-hub-card__btn svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
}

.host-hub-card__btn:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

.host-hub-card__btn--primary {
  background: var(--brand-soft);
  border-color: var(--brand-muted);
  color: var(--brand);
}

.host-hub-card__btn--primary:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand-dark);
}

/* Empty state */
.host-hub-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3.5rem 2rem;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 1.25rem;
  color: #6b7280;
}

.host-hub-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: var(--brand-soft);
  color: var(--brand);
}

.host-hub-empty__icon svg {
  width: 2rem;
  height: 2rem;
}

.host-hub-empty p {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
}

.host-hub-empty p:first-of-type {
  margin-top: 0;
  font-size: 1.0625rem;
  color: #374151;
}

.host-hub-empty .host-hub__cta {
  margin-top: 1.25rem;
}

/* Destino detalle v2 */
.dest-detail-v2__stats { display: flex; flex-wrap: wrap; gap: 1rem; padding: 1.25rem 0 0; }
.dest-detail-v2__stat { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.15); border-radius: 9999px; font-size: 0.8125rem; color: #fff; }
.dest-detail-v2__stat strong { font-weight: 700; }
.dest-detail-v2__jump { position: sticky; top: 4rem; z-index: 10; background: #fff; border-bottom: 1px solid #e5e7eb; padding: 0.75rem 0; margin-bottom: 0; }
.dest-detail-v2__jump-inner { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.dest-detail-v2__jump a { padding: 0.4rem 0.875rem; border-radius: 9999px; font-size: 0.8125rem; font-weight: 600; color: #6b7280; text-decoration: none; background: #f3f4f6; }
.dest-detail-v2__jump a:hover, .dest-detail-v2__jump a.is-active { background: var(--brand); color: #fff; }
.dest-section-v2 { padding: 3rem 0; scroll-margin-top: 6rem; }
.dest-section-v2--alt { background: #fafafa; }
.dest-section-v2__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; }
.dest-section-v2__head h2 { font-size: 1.5rem; font-weight: 600; }
.dest-section-v2__count { font-size: 0.875rem; color: #6b7280; }
.dest-blog-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .dest-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .dest-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.dest-blog-card { display: block; border-radius: 1rem; overflow: hidden; background: #fff; border: 1px solid #e5e7eb; text-decoration: none; color: inherit; transition: transform 0.15s, box-shadow 0.15s; height: 100%; }
.dest-blog-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.dest-blog-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.dest-blog-card__img--empty { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-soft), var(--brand-light)); font-size: 2rem; }
.dest-blog-card__body { padding: 1rem 1.125rem 1.25rem; }
.dest-blog-card__cat { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand); }
.dest-blog-card__title { font-size: 1.0625rem; font-weight: 600; margin-top: 0.35rem; line-height: 1.35; }
.dest-blog-card__excerpt { margin-top: 0.5rem; font-size: 0.8125rem; color: #6b7280; line-height: 1.5; }
.dest-city-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
.dest-admin-edit { margin-top: 1rem; font-size: 0.8125rem; }
.dest-admin-edit a { color: rgba(255,255,255,0.85); text-decoration: underline; }
