/* ── SECCIÓN ANFITRIÓN ── */
.host-section {
  padding: clamp(52px, 8vw, 96px) 0;
  background: var(--sand-alt);
}

.host-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.host-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--footer-dark);
  border: 2px solid var(--gold-30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-soft);
}

.host-photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.65;
}

.host-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 2px solid var(--gold-30);
  display: block;
  flex-shrink: 0;
}

.host-copy .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.host-copy h2 {
  margin-bottom: 14px;
}

.host-copy p {
  color: var(--gray-text);
  line-height: 1.75;
  font-size: 0.97rem;
  max-width: 54ch;
}

.host-copy p + p {
  margin-top: 10px;
}

.host-signature {
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--gold-soft);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 620px) {
  .host-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .host-photo,
  .host-photo-placeholder {
    width: 140px;
    height: 140px;
  }

  .host-copy p {
    max-width: 100%;
  }
}
