.quote-block .quote_block {
  flex: 1 1 35rem;
}

.quote-block img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.quote-block .quote_content {
  position: relative;
  padding-top: 2.5rem;
}

.quote-block .quote_content::before {
  content: "“";
  position: absolute;
  top: -0.8rem;
  left: -1rem;
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary);
  font-family: Arial, sans-serif;
}

.quote-block .quote_content::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 7rem;
  line-height: 1;
  font-weight: 700;
  color: var(--color-primary);
  font-family: Arial, sans-serif;
}

@media (max-width: 576px) {
  .quote-block .quote_block {
    flex: 1 1 100%;
  }

  .quote-block img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .quote-block .quote_content {
    padding-top: 2.5rem;
    padding-bottom: 2rem;
  }

  .quote-block .quote_content::before,
  .quote-block .quote_content::after {
    font-size: 5rem;
  }
}
