.support-callout {
  padding: clamp(48px, 6vw, 96px) 24px;
}
.support-callout__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1157px;
  margin: 0 auto;
  padding: 50px;
  background: var(--color-white);
  border-radius: 30px;
}
@media (max-width: 991.98px) {
  .support-callout__inner {
    gap: 32px;
    padding: 32px;
  }
}
@media (max-width: 767.98px) {
  .support-callout__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.support-callout__image {
  flex-shrink: 0;
  width: 208px;
  height: 208px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 991.98px) {
  .support-callout__image {
    width: 160px;
    height: 160px;
    border-width: 4px;
  }
}
.support-callout__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.support-callout__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.support-callout .acf-innerblocks-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-callout .acf-innerblocks-container > * {
  margin-top: 0;
  margin-bottom: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
.support-callout .support-callout__title {
  color: var(--color-black);
  font-family: var(--font-family-slab);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  font-size: 34px;
  line-height: 1.2;
}
.support-callout .support-callout__description {
  color: var(--color-black);
  font-family: var(--font-family-slab);
  font-weight: var(--font-weight-normal);
  font-size: 18px;
  line-height: 24px;
}
.support-callout__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  margin-top: 8px;
}
@media (max-width: 767.98px) {
  .support-callout__actions {
    justify-content: center;
  }
}
.support-callout__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background-color: #79b85f;
  color: var(--color-white);
  border-radius: 30px;
  font-family: var(--font-family-slab);
  font-size: 20px;
  font-weight: var(--font-weight-semi-bold);
  line-height: 32px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.support-callout__button:hover, .support-callout__button:focus-visible {
  background-color: var(--color-black);
  color: var(--color-white);
}
.support-callout__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-black);
  font-family: var(--font-family-slab);
  font-weight: var(--font-weight-normal);
  font-size: 20px;
  line-height: 32px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.support-callout__contact:hover, .support-callout__contact:focus-visible {
  color: #79b85f;
}
.support-callout__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: currentColor;
}