.quote-section {
  position: relative;
  overflow: hidden;
}

.quote-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: calc(50% - 208px);
  background: var(--accent-color);
}

.quote-section__inner {
  position: relative;
  display: flex;
}

.quote-section__image {
  flex: 0 0 auto;
  width: 487px;
  padding: 50px 40px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.quote-section__image img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.quote-section__content {
  flex-grow: 1;
  min-width: 1px;
  align-self: center;
  padding: 50px 0;
  padding-right: 100px;
}

.quote-section__content p:last-child {
  margin-bottom: 0;
}

.quote-section__title {
  margin-bottom: 30px;
}

.quote-section__author {
  margin-top: 60px;
}

.quote-section__author strong {
  display: block;
  font-weight: bold;
}

.quote-section__author > span {
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
}

@media (max-width: 1349.98px) {
  .quote-section__content {
    padding-right: 0;
  }
}

@media (max-width: 1199.98px) {
  .quote-section__image {
    padding-left: 0;
    padding-right: 20px;
    width: 300px;
  }

  .quote-section__title {
    margin-bottom: 20px;
  }

  .quote-section__author {
    margin-top: 30px;
  }
}

@media (max-width: 991.98px) {
  .quote-section {
    --image-width: 200px;
    --image-height: 300px;
  }

  .quote-section__inner {
    display: block;
  }

  .quote-section:before {
    right: 0;
    height: calc(0.5 * var(--image-height));
    top: calc(0.5 * var(--image-height));
  }

  .quote-section__image {
    width: var(--image-width);
    height: var(--image-height);
    justify-content: flex-start;
    align-items: flex-end;
    padding: 0;
  }

  .quote-section__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .quote-section__content {
    padding: 30px 0 0;
  }

  .quote-section__title,
  .quote-section__author {
    position: absolute;
    left: var(--image-width);
    right: 0;
    top: 0;
    margin: 0;
    padding-left: 20px;
  }

  .quote-section__author {
    height: var(--image-height);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .quote-section {
    --image-width: 180px;
    --image-height: 270px;
  }

  .quote-section__title,
  .quote-section__author {
    padding-left: 5px;
  }

  .quote-section__author {
    padding-bottom: 10px;
  }

  .quote-section__title {
    font-size: 18px;
    line-height: 1.4;
  }

  .quote-section__author strong {
    font-size: 14px;
  }

  .quote-section__author > span {
    font-size: 12px;
  }
}
