.callout-card {
  background-color: #ffffff;
}
.callout-card__container {
  position: relative;
}
.callout-card__content {
  padding: 24px 24px;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  z-index: 0;
}
.callout-card__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 4px;
  padding: 2px;
  background: linear-gradient(90deg, #0090da 0%, #a3cd4d 100%);
  mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#000000 0 0);
  mask-composite: exclude;
}
.callout-card__header {
  display: flex;
  flex-direction: column;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .callout-card__header {
    flex-direction: row;
  }
}
.callout-card__icon {
  height: 24px;
  width: 21px;
  color: #333333;
  fill: #333333;
  margin: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
  .callout-card__icon {
    margin: 0 8px 0 0;
  }
}
.callout-card__title {
  color: #000000;
}
.callout-card__body {
  margin-top: 16px;
  color: #000000;
}
.callout-card__link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
}
.callout-card__link-icon {
  height: 16px;
  width: 16px;
}
body[dir="rtl"] .callout-card__content::before {
  background: linear-gradient(90deg, #a3cd4d 0%, #0090da 100%);
}
@media screen and (min-width: 768px) {
  body[dir="rtl"] .callout-card__icon {
    margin: 0 0 0 8px;
  }
}
