div.share-callout {
  position: relative; max-width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .share-callout {
    display: flex;
  }
}
.share-callout .marquee {
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 0;
  width: 100%;
  white-space: nowrap;
}

.share-callout.is-style-gradient-background {
/* .share-callout { */
    min-height: 250px !important;
    background: goldenrod;
}

@media (min-width: 768px) {
  .share-callout .marquee {
    padding: 100px 0;
  }
}
.share-callout .marquee__content {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal 30s linear infinite;
  width: 100%;
}
@media (min-width: 768px) {
  .share-callout .marquee__content {
    animation: marquee-horizontal 30s linear infinite;
  }
}
.share-callout .marquee__content--text {
  -webkit-text-size-adjust: 100%;
  white-space: nowrap;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
  flex: 0 0 auto;
  font-size: 2.75rem;
  font-weight: 600;
  color: black;
}
@media (min-width: 768px) {
  .share-callout .marquee__content--text {
    font-size: 3.75rem;
  }
}
@media (max-width: 768px) {
  .share-callout .marquee__content--text:nth-child(3), .share-callout .marquee__content--text:nth-child(4), .share-callout .marquee__content--text:nth-child(5), .share-callout .marquee__content--text:nth-child(6) {
    display: none;
  }
}
.share-callout__share {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 400px;
  flex-basis: 35%;
  width: 35%;
  padding: 40px;
}
@media (min-width: 768px) {
  .share-callout__share {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #1b1b1b;
  }
}
.share-callout__share--buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.share-callout__share--buttons .button, .share-callout__share--buttons .wp-block-buttons .wp-block-button .wp-block-button__link, .wp-block-buttons .wp-block-button .share-callout__share--buttons .wp-block-button__link {
  font-size: 0.890625rem;
  text-transform: uppercase;
}
.share-callout__share--buttons .button:hover, .share-callout__share--buttons .wp-block-buttons .wp-block-button .wp-block-button__link:hover, .wp-block-buttons .wp-block-button .share-callout__share--buttons .wp-block-button__link:hover {
  cursor: pointer;
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}