/* ── Employee CTA ── */
.employee-cta {
  padding: 0 2.5rem;
}

.employee-cta__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background-color: var(--color-navy-dark);
  border-radius: var(--radius-md);
  padding: 1rem 1.625rem 1rem 1rem; /* 16px 26px 16px 16px */
  height: fit-content;
}

.employee-cta__agent {
  display: flex;
  align-items: center;
  gap: 1rem; /* 16px — var(--design/padding/klein) */
  flex-shrink: 0;
}

.employee-cta__avatar {
  width: 3.8125rem; /* 61px */
  height: 3.8125rem;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.employee-cta__agent-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem; /* 2px */
  width: 10.125rem; /* 162px */
}

.employee-cta__name {
  font-size: 1.125rem; /* 18px */
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  line-height: 1.5rem; /* 24px */
}

.employee-cta__role {
  font-size: var(--font-size-sm); /* 14px */
  font-weight: var(--font-weight-regular);
  color: rgba(255, 255, 255, 0.8);
  line-height: normal;
}

.employee-cta__question {
  margin: 0;
  font-size: var(--font-size-h4); /* 20px */
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  line-height: 2.1875rem; /* 35px */
  text-align: center;
}

.employee-cta__btn {
  justify-self: end;
}
