.callout {
  background: linear-gradient(
    90deg,
    rgba(25, 25, 25, 0) 0%,
    rgba(25, 25, 25, 0.6) 10%,
    rgba(25, 25, 25, 0.85) 30%,
    #191919 50%,
    rgba(25, 25, 25, 0.85) 70%,
    rgba(25, 25, 25, 0.6) 90%,
    rgba(25, 25, 25, 0) 100%
  );
  padding: 32px 0;
}
.callout__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: calc(100% - 304px);
  margin: 0 auto;
}
.callout__img img {
  max-width: 100%;
  height: auto;
  display: block;
  min-width: 386px;
}
.callout__content {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 45%;
}
#memory-finder h1,
#memory-finder p {
  padding: 0;
  margin: 0;
}
.callout__heading {
  color: #fff;
  font-family: Saira;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}
.callout__subheading {
  color: #fff;
  font-family: Saira;
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  max-width: 95%;
}
.callout__cta {
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.callout__link {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  color: var(--Bright-Yellow, #ece81a);
  font-family: Saira;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  .callout {
    padding: 32px 16px;
  }

  .callout__content {
    max-width: 100%;
  }
  .callout__wrap {
    flex-direction: column;
    max-width: 100%;
  }
  .callout__heading {
    text-align: center;
  }
  .callout__subheading {
    text-align: center;
    max-width: 100%;
  }
  .callout__cta {
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .callout__heading {
    font-size: 24px;
    line-height: 28px;
  }
  .callout__subheading {
    font-size: 16px;
    line-height: 22px;
  }
}