.block--quote {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 30px 15px;
}
@media (max-width: 575px) {
  .block--quote {
    display: block;
  }
}
.block--quote .text {
  position: relative;
}
@media (max-width: 575px) {
  .block--quote .text {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 29px;
    margin-bottom: -12px;
    position: relative;
    max-width: calc(100% - 104px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}
.block--quote .text:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  top: -28px;
  left: -18px;
  background-image: url(/wp-content/themes/tbs-oxygen/static/img/quote.png);
  background-repeat: no-repeat;
  background-size: 50px;
  opacity: 0.15;
}
@media (max-width: 575px) {
  .block--quote .text:before {
    top: 2px;
    left: 9px;
  }
}
.block--quote .text > * {
  font-size: 17px !important;
  font-weight: 500;
  font-style: italic;
}
.block--quote .text > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .block--quote .text > * {
    font-size: 14px !important;
  }
}
.block--quote .image {
  margin-left: 60px;
  width: 225px;
  height: auto;
  border-radius: 8px;
  border: 1px solid black;
  object-fit: contain;
}
@media (max-width: 575px) {
  .block--quote .image {
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
}
.block--quote .image.image_padding {
  padding: 20px;
}
