.section--chefs-hero {
  padding-top: var(--space-32);
  padding-bottom: var(--space-32);
}

.hero--chefs .hero__content {
  background-color: rgba(255, 255, 255, 0.96);
}

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

.breadcrumb {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-16);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.breadcrumb__item {
  color: var(--color-text-muted);
}

.breadcrumb__item::after {
  content: "/";
  margin-left: var(--space-4);
  color: var(--color-neutral-300);
}

.breadcrumb__item:last-child::after {
  content: "";
}

.breadcrumb__item--current {
  color: var(--color-text);
}

.breadcrumb__link {
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: var(--color-primary);
}

.chefs-layout {
  align-items: flex-start;
}

.chefs-bio__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.chefs-team__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--color-surface);
}

.chefs-team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chefs-team__caption,
.chefs-signature__caption {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  padding: var(--space-8) var(--space-12);
}

.chefs-signature__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background-color: var(--color-surface);
}

.chefs-signature__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-inline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.chefs-grid {
  align-items: stretch;
}

.chefs-awards__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.chefs-awards__title {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.chefs-awards__text {
  margin-bottom: 0;
}

.chefs-passion p:last-child {
  margin-bottom: 0;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.section-cta__content {
  max-width: 640px;
}

.section-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

@media (max-width: 960px) {
  .section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .section--chefs-hero {
    padding-top: var(--space-24);
  }

  .breadcrumb {
    margin-bottom: var(--space-12);
  }
}
