.businesspage__logo-wrapper {
  padding: var(--businesspage-logo-padding, var(--global-kb-spacing-md, 2rem));
  border-radius: 24px;
  background-color: var(--businesspage-logo-bg);
  width: 100%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.businesspage__logo-wrapper--has-dark-background,
.businesspage__logo-wrapper--has-black-background {
  --businesspage-logo-bg: var(--businesspage-logo-bg-dark, var(--global-palette1));
}

.businesspage__logo-wrapper--has-light-background,
.businesspage__logo-wrapper--has-white-background {
  --businesspage-logo-bg: var(--businesspage-logo-bg-light, var(--global-palette6));
}

/* white and black backgrounds have a white/black frame around the logo image on top of a light/dark background respectively */
.businesspage__logo-wrapper--has-white-background img,
.businesspage__logo-wrapper--has-black-background img {
  padding: 1.5rem;
  border-radius: 25px;
  background: #fff;
}

.businesspage__logo-wrapper--has-black-background img {
  background: #000;
}


/* force 100% width for .svg's */
.businesspage__logo[src$=".svg"] {
  width: 100%;
}

.businesspage__external-links {
  display: grid;
  text-align: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.businesspage__external-link {
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: 12rem;
  background-color: var(--businesspage-external-link-bg, var(--global-palette-btn-bg));
  color: var(--businesspage-external-link, var(--global-palette-btn));
}

.businesspage__external-link:hover,
.businesspage__external-link:focus {
  background-color: var(--businesspage-external-link-bg-hover, var(--global-palette-btn-bg-hover));
  color: var(--businesspage-external-link-hover, var(--global-palette-btn-hover));
}

.employees {
  --columns: 1;
  --max-width: 1080px;
  display: grid;
  margin-top: 4rem !important;
  margin-inline: auto;
  max-width: var(--max-width);
  text-align: center;
  grid-template-columns: repeat(var(--columns), minmax(0, 1fr));
  column-gap: var(--global-kb-gap-lg, 4rem);
  row-gap: var(--global-kb-gap-xl, 5rem);
}

@media (min-width: 800px) {
  .employees {
    --columns: 2;
  }

  .employees--single {
    display: block;
    columns: 1;
    max-width: 980px;
    width: fit-content;
  }

  .employees--single .employee {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 4rem;
  }

  .employees--single .employee__image {
    margin-bottom: 0;
  }
}

@media (min-width: 1340px) {
  .employees--three {
    --columns: 3;
    --max-width: var(--global-content-width, 1640px);
  }
}

.employee:not(.employee--has-image) {
  border-radius: 25px;
  background-color: var(--employee-bg, var(--global-palette8));
  padding: var(--global-kb-spacing-md, 2rem);
}

.employee__image {
  aspect-ratio: 3/4;
  object-fit: cover;
  max-width: 350px;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 25px;
}

.employees__title,
.employees__text {
  max-width: 1080px;
  margin-inline: auto !important;
}

.employee__title {
  margin-bottom: var(--global-kb-spacing-xs, 1rem) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--businesspage-employee-title, var(--global-palette2));
}

.employee__contactmethods {
  margin-inline: auto;
  width: max-content;
  font-size: .9em;
}

.employees--single .employee__contactmethods {
  margin-inline: unset;
}

.employee__contactmethod {
  display: flex;
  gap: .25em;
  margin-bottom: 1em !important;
  align-items: center;
}

.employee__contactmethod-icon {
  height: 1.75em;
}

.employee__contactmethod-link {
  text-decoration: none;
}

.employee__contactmethod-link:hover,
.employee__contactmethod-link:focus {
  text-decoration: underline;
}