.o-storytelling-a {
  /* Paddings */
  --py: 3.75rem;

  padding-top: var(--py);
  padding-bottom: var(--py);

  @media (width >=768px) {
    --py: 2.5rem;

    padding-top: var(--py);
    padding-bottom: var(--py);
  }

  /* Background Fallback */
  background: rgb(180 45 42);

  /* Background gradients */
  background: radial-gradient(circle at -13%, rgb(180 45 42) 27%, rgba(131 23 21) 93%);
  color: var(--color-white);

  @media (width >=768px) {
    background: rgb(89 3 4);
    background: linear-gradient(
      90deg,
      rgb(89 3 4) 0%,
      rgba(174 42 40) 58%,
      rgba(166 38 37) 95%
    );
  }
}

.o-storytelling-a__heading {
  text-transform: uppercase;
}

.o-storytelling-a__heading-leading {
  color: var(--color-white);
  font-size: var(--font-size-h1);
  margin-top: 0;
  margin-bottom: 0.625rem;
  letter-spacing: -0.4px;
  font-family: var(--font-family-secondary);

  @media (width >=992px) {
    margin-bottom: .75rem;
    font-size: var(--font-size-h1-02);
  }
}

.o-storytelling-a__heading-title {
  color: var(--color-white);
  font-size: var(--font-size-display-02);
  font-family: var(--font-family-secondary);
  margin-top: 0;
  line-height: 1;
  margin-bottom: 0.75rem;

  @media (width >=992px) {
    margin-bottom: 0;
  }

  & .o-storytelling-a__heading-title--large:first-of-type {
    @media (width >=992px) {
      font-size: var(--font-size-display-01);
      line-height: 6.25rem;
    }
  }
}

.o-storytelling-a__columns {
  display: flex;
  flex-direction: column;

  @media (width >=992px) {
    margin-left: -2.6875rem;
    flex-direction: row;
  }
}

.o-storytelling-a__column {
  @media (width >=992px) {
    padding-left: 2.6875rem;
  }

  &.o-storytelling-a__column--1 {
    @media (width >=992px) {
      min-width: 31%;
    }

    @media (width >=1200px) {
      min-width: 26%;
    }
  }

  &.o-storytelling-a__column--2 {
    display: flex;
    flex-direction: column;

    @media (width >=992px) {
      flex-direction: row;
    }
  }
}

.o-storytelling-a__content {
  flex-grow: 1;

  & p {
    &:last-of-type {
      margin-bottom: 0;
    }
  }
}

.o-storytelling-a__img-wrapper {
  max-width: 18.75rem;
  margin: 2.25rem auto 0;
  margin-left: auto;
  margin-right: auto;

  @media (width >=992px) {
    margin-left: 1rem;
    margin-top: 0;
    max-width: 27.5%;
  }

  & .a-image-a {
    width: 100%;
    max-width: 297px;
    border-radius: 50%;
    overflow: hidden;

    @media (width >=992px) {
      min-width: 231px;
    }
  }

  img {
    aspect-ratio: 1;
    object-fit: cover;
    height: 100%;
  }
}
