body {
  background-color: #fff;
}
/* Breadcrumb */
.breadcrumb {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  max-width: var(--inner-max);
  margin-inline: auto;
  padding: 0.85rem var(--pad-inner);
  font-size: 0.8125rem;
  color: var(--color-muted);
  list-style: none;
}
.breadcrumb__list li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__list li + li::before {
  content: "/";
  margin: 0 0.5rem;
  color: var(--color-border);
}
.breadcrumb__list a:hover {
  color: var(--color-blue);
}
.breadcrumb__list [aria-current="page"] {
  color: var(--color-primary);
  font-weight: 700;
}

section#top.section--white {
  padding-bottom: 140px;
}

.section-header .c-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-header .c-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8f4fc;
  border: 2px solid #0086cc;
  flex-shrink: 0;
}

.relvoices.reveal--stagger > * {
  transform: translate3d(0, 1.35rem, 0);
  transition-duration: 1.05s;
}

.relvoices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}
@media (max-width: 900px) {
  .relvoices {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .relvoices {
    grid-template-columns: 1fr;
  }
}
.relvoice {
  display: block;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--rounded-large);
  padding: 1.5rem;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.relvoice:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.relvoice__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.relvoice__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--rounded-normal);
  display: block;
}
.relvoice__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
}
.relvoice__role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-blue);
}
.relvoice__qt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-body);
}
