.section.stories-cta .stories-wrapper {
  display: flex;
  gap: 9px;
  justify-content: stretch;
  margin: 20px 0 9px;
}
@media (max-width: 1000px) {
  .section.stories-cta .stories-wrapper {
    flex-wrap: wrap;
  }
}
.section.stories-cta .stories-wrapper .story {
  position: relative;
  height: 180px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  padding: 14px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1000px) {
  .section.stories-cta .stories-wrapper .story {
    flex-basis: calc(33% - 30px);
    flex-grow: 1;
    width: calc(33% - 30px);
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .section.stories-cta .stories-wrapper .story {
    flex-basis: calc(50% - 9px);
    width: calc(50% - 9px);
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .section.stories-cta .stories-wrapper .story {
    flex-basis: 100%;
    width: 100%;
  }
}
.section.stories-cta .stories-wrapper .story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center center;
  filter: grayscale(100);
  transition: all ease-in 0.3s;
}
@media (hover: none) {
  .section.stories-cta .stories-wrapper .story > img {
    filter: none;
  }
}
.section.stories-cta .stories-wrapper .story .socialname {
  position: relative;
  z-index: 2;
  font-family: Kallisto;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: all ease-in 0.3s;
}
@media (max-width: 420px) {
  .section.stories-cta .stories-wrapper .story .socialname {
    flex-basis: 100%;
    width: 100%;
  }
}
@media (hover: none) {
  .section.stories-cta .stories-wrapper .story .socialname {
    opacity: 1;
  }
}
.section.stories-cta .stories-wrapper .story .btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 22px;
  color: var(--ast-global-color-4);
  font-size: 14px;
  opacity: 0;
  transition: all ease-in 0.3s;
  padding: 4px 13px;
  background-color: #97D986;
}
@media (hover: none) {
  .section.stories-cta .stories-wrapper .story .btn {
    opacity: 1;
  }
}
.section.stories-cta .stories-wrapper .story .btn img {
  margin-right: 10px;
}
.section.stories-cta .stories-wrapper .story:hover {
  transform: rotate(12deg);
}
.section.stories-cta .stories-wrapper .story:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(183deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
}
.section.stories-cta .stories-wrapper .story:hover img {
  filter: none;
}
.section.stories-cta .stories-wrapper .story:hover .socialname,
.section.stories-cta .stories-wrapper .story:hover .btn {
  opacity: 1;
}
@media (hover: none) {
  .section.stories-cta .stories-wrapper .story::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(183deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.section.stories-cta .buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.section.stories-cta .buttons-wrapper .button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px 17px;
  text-decoration: none;
  color: var(--ast-global-color-5);
  border-radius: 22px;
  font-family: Kallisto;
}
.section.stories-cta .buttons-wrapper .button.width-full {
  width: 100%;
}
.section.stories-cta .buttons-wrapper .button.width-half {
  width: calc((100% - 9px) / 2);
}
@media (max-width: 700px) {
  .section.stories-cta .buttons-wrapper .button.width-half {
    width: 100%;
  }
}
.section.stories-cta .buttons-wrapper .button.width-third {
  width: calc((100% - 18px) / 3);
}
@media (max-width: 700px) {
  .section.stories-cta .buttons-wrapper .button.width-third {
    width: 100%;
  }
}
.section.stories-cta .buttons-wrapper .button.width-quarter {
  width: calc((100% - 27px) / 4);
}
@media (max-width: 700px) {
  .section.stories-cta .buttons-wrapper .button.width-quarter {
    width: 100%;
  }
}
.section.stories-cta .buttons-wrapper .button img {
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.section.stories-cta .buttons-wrapper .button span {
  display: flex;
  justify-content: center;
}
.section.stories-cta .buttons-wrapper .button span:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  transition: all ease-in-out 0.3s;
  background-image: var(--siriuz-chevron-black);
  background-size: cover;
}
@media (max-width: 700px) {
  .section.stories-cta .buttons-wrapper .button {
    flex-direction: row;
    padding: 20px;
  }
  .section.stories-cta .buttons-wrapper .button img {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .section.stories-cta .buttons-wrapper .button span {
    flex-grow: 2;
    justify-content: space-between;
  }
}
.section.stories-cta .buttons-wrapper .button.bg-teal {
  background-color: var(--ast-global-color-1);
}
.section.stories-cta .buttons-wrapper .button.bg-black {
  background-color: var(--ast-global-color-4);
  color: #fff;
}
.section.stories-cta .buttons-wrapper .button.bg-black span:after {
  background-image: var(--siriuz-chevron-golden);
}
.section.stories-cta .buttons-wrapper .button:hover span:after {
  transform: translateX(5px);
}

/*# sourceMappingURL=section-stories-cta-buttons.css.map */
