.hosts-hero {
  position: relative;
}

.hosts-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: var(--space-24);
  align-items: center;
}

.hosts-hero__kicker {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.hosts-hero__content p {
  max-width: 36rem;
}

.hosts-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.hosts-hero__media {
  min-height: 260px;
}

.hosts-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hosts-intro__card {
  align-self: stretch;
}

.hosts-intro__list,
.hosts-experience__list,
.hosts-interaction__list {
  list-style: none;
  padding-left: 0;
}

.hosts-intro__list li,
.hosts-experience__list li,
.hosts-interaction__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

.hosts-intro__list li::before,
.hosts-experience__list li::before,
.hosts-interaction__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-gold));
}

.hosts-action__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 3fr);
  gap: var(--space-24);
  align-items: center;
}

.hosts-action__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hosts-action__highlights {
  margin-top: var(--space-16);
}

.hosts-action__item-title {
  margin-bottom: var(--space-4);
}

.hosts-experience__card {
  align-self: stretch;
}

.hosts-style__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 3fr);
  gap: var(--space-24);
  align-items: flex-start;
}

.hosts-style__card {
  align-self: stretch;
}

.hosts-style__chips {
  display: grid;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.hosts-style__chip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-6);
  align-items: flex-start;
}

.hosts-style__chip h4 {
  margin-bottom: var(--space-4);
}

.hosts-style__note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.hosts-featured__header {
  max-width: 40rem;
  margin-bottom: var(--space-20);
}

.hosts-featured__grid {
  align-items: stretch;
}

.hosts-featured__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hosts-featured__image-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-10);
}

.hosts-featured__image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hosts-featured__quote {
  margin-top: auto;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-8);
}

.hosts-interaction__card {
  align-self: stretch;
}

.hosts-safety__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: var(--space-24);
  align-items: flex-start;
}

.hosts-safety__bullets {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.hosts-safety__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--space-6);
}

.hosts-safety__item p {
  margin-bottom: 0;
}

.hosts-safety__aside {
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(12, 15, 22, 0.98), rgba(5, 6, 8, 0.98));
  box-shadow: var(--shadow-soft);
}

.hosts-safety__aside p {
  margin-bottom: var(--space-10);
}

.hosts-gallery__wrapper {
  display: grid;
  gap: var(--space-16);
}

.hosts-gallery__header {
  max-width: 40rem;
}

.hosts-gallery__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hosts-gallery__footer {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-16);
  align-items: center;
}

.hosts-gallery__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: flex-end;
}

.hosts-cta__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: var(--space-16);
  align-items: center;
}

.hosts-cta__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .hosts-hero__grid,
  .hosts-action__wrapper,
  .hosts-style__wrapper,
  .hosts-safety__wrapper,
  .hosts-gallery__footer,
  .hosts-cta__wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .hosts-gallery__media img {
    height: 280px;
  }

  .hosts-gallery__actions,
  .hosts-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .hosts-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hosts-hero__media {
    order: -1;
  }

  .hosts-featured__image-wrapper img {
    height: 200px;
  }

  .hosts-gallery__media img {
    height: 220px;
  }
}
