.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.consultant-item-container {
  --image-size: 96px;
  display: flex;
  align-items: center;
  width: calc(50% - 8px);
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--black-10-fade);
  text-decoration: none;
  position: relative;
  min-width: 400px;
  max-width: 100%;
  overflow: hidden;
}
.consultant-item-container:not(.block-type-consultant_with_contact_info) {
  position: relative;
}
.consultant-item-container:not(.block-type-consultant_with_contact_info)::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.16602 9.99996H15.8327M15.8327 9.99996L9.99935 4.16663M15.8327 9.99996L9.99935 15.8333' stroke='%23262626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.consultant-item-container:not(.block-type-consultant_with_contact_info)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  height: 100%;
  background: var(--green-accent);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  pointer-events: none;
  z-index: 1000;
}
.consultant-item-container:not(.block-type-consultant_with_contact_info):hover::after {
  transform: translateY(-50%) translateX(4px);
  opacity: 1;
}
.consultant-item-container:not(.block-type-consultant_with_contact_info):hover::before {
  opacity: 1;
}
.consultant-item-container.block-type-search_result_item .consultant-image {
  --image-size: 134px;
}
@media (max-width: 768px) {
  .consultant-item-container.block-type-search_result_item .consultant-image {
    --image-size: 64px;
  }
}
.consultant-item-container.block-type-consultant_with_contact_info {
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  --image-size: 128px;
}
@media (max-width: 768px) {
  .consultant-item-container.block-type-consultant_with_contact_info {
    --image-size: 96px;
  }
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-image {
  padding: 0;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-image img.consultant-photo {
  border-radius: 4px;
  overflow: hidden;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info {
  padding: 20px 0 20px 16px;
  overflow: hidden;
  min-width: 0;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-name {
  font-family: var(--s5-fontFamily), sans-serif;
  font-weight: var(--s5-fontWeight);
  font-size: var(--s5-fontSize);
  line-height: var(--s5-lineHeight);
  display: block;
  margin: 0 0 12px 0;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-name * {
  font-family: var(--s5-fontFamily), sans-serif;
  font-weight: var(--s5-fontWeight);
  font-size: var(--s5-fontSize);
  line-height: var(--s5-lineHeight);
  margin: 0;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .icon-grey {
  color: var(--black-50-fade);
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-phone {
  margin: 0 0 8px 0;
  font-family: var(--contactInfo-FontFamily), sans-serif;
  font-weight: var(--contactInfo-FontWeight);
  font-size: var(--contactInfo-FontSize);
  line-height: var(--contactInfo-LineHeight);
  letter-spacing: var(--contactInfo-LetterSpacing);
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-email {
  margin: 0;
  font-family: var(--contactInfo-FontFamily), sans-serif;
  font-weight: var(--contactInfo-FontWeight);
  font-size: var(--contactInfo-FontSize);
  line-height: var(--contactInfo-LineHeight);
  letter-spacing: var(--contactInfo-LetterSpacing);
  text-overflow: ellipsis;
  overflow: hidden;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-email a {
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-phone, .consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-email {
  display: flex;
  gap: 8px;
  align-items: center;
}
.consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-phone .icon-grey, .consultant-item-container.block-type-consultant_with_contact_info .consultant-info .consultant-email .icon-grey {
  display: flex;
}
.consultant-item-container .consultant-image {
  flex: 0 0 auto;
  padding: 16px;
  background: var(--black-5);
  width: var(--image-size);
  height: var(--image-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.consultant-item-container .consultant-image img.consultant-photo {
  width: var(--image-size);
  height: var(--image-size);
  object-fit: cover;
  display: block;
}
.consultant-item-container .consultant-info {
  position: relative;
  flex: 1;
  padding: 0 48px 0 24px;
  width: 100%;
  height: 100%;
  align-content: center;
}
.consultant-item-container .consultant-info .consultant-name {
  font-family: var(--s6-fontFamily), sans-serif;
  font-weight: var(--s6-fontWeight);
  font-size: var(--s6-fontSize);
  line-height: var(--s6-lineHeight);
  color: var(--green-80);
  margin-bottom: 2px;
  text-decoration: none;
}
.consultant-item-container .consultant-info .consultant-name * {
  font-family: var(--s6-fontFamily), sans-serif;
  font-weight: var(--s6-fontWeight);
  font-size: var(--s6-fontSize);
  line-height: var(--s6-lineHeight);
  color: var(--green-80);
}
.consultant-item-container .consultant-info p.consultant-topic {
  font-family: var(--paragraphSmall-FontFamily), sans-serif;
  font-weight: var(--paragraphSmall-FontWeight);
  font-size: var(--paragraphSmall-FontSize);
  line-height: var(--paragraphSmall-LineHeight);
  color: var(--black);
  margin: 0;
}

/*# sourceMappingURL=consultant-item.css.map */
