/* ── Employee CTA ── */
.employee-cta {
  width: calc(100% - 2.5rem);
  margin: 0 auto;
  padding-block: 2.5rem;
}

.employee-cta__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--color-bg-darkest);
  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;
  grid-row: 2;
}

.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: left;
}

.employee-cta__btn {
  width: 100%;
  justify-self: flex-start;
  grid-row: 3;
  grid-column: 1;
}

@media ( min-width: 40rem ) {

  .employee-cta__btn {
    width: auto;
    justify-self: end;
    grid-row: 1 / 3;
    grid-column: 2;
  }
}


@media ( min-width: 48rem ) {
  .employee-cta {
    padding-block: 5rem;
  }

  .employee-cta__container {
    grid-template-columns: auto 1fr;
    row-gap: 0;
  }

  .employee-cta__agent {
    justify-content: flex-start;
  }

  .employee-cta__btn {
    grid-row: 1 / 3;
    grid-column: 3;
  }
}

@media ( min-width: 64rem ) {
  .employee-cta__container {
    grid-template-columns: auto 1fr auto;
  }

  .employee-cta__question {
    grid-column: 2;
    text-align: center;
  }

  .employee-cta__agent {
    grid-column: 1;
    grid-row: 1;
  }
}