.quote-block {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  max-width: 100%;
  width: 100%;
}

.quote-block__inner {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0 2rem;
}

.quote-block__quote-area {
  flex: 1 1 50%;
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: -40px;
  margin-right: -60px;
  margin-left:0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.quote-block__quote-area blockquote {
  margin: 0;
}

.quote-text {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.quote-block__quote-area blockquote cite {
	font-size: 1.6rem;
}
blockquote .quote-text h2::before,
blockquote .quote-text h2::after,
blockquote .quote-text h3::before,
blockquote .quote-text h3::after,
blockquote .quote-text h4::after,
blockquote .quote-text h4::before,
blockquote .quote-text h5::after,
blockquote .quote-text h5::before {
  font-family: Georgia, serif;
}
blockquote .quote-text h2::before,
blockquote .quote-text h3::before,
blockquote .quote-text h4::before,
blockquote .quote-text h5::before {
  content: "\201C";
  display: inline;
 
  margin-right: 0.25rem;
}
blockquote .quote-text h5::after,
blockquote .quote-text h4::after,
blockquote .quote-text h3::after,
blockquote .quote-text h2::after {
  content: "\201D";
  display: inline;
  
  margin-left: 0.25rem;
}
.quote-block__image-area {
  flex: 1 1 50%;
  position: relative;
  z-index: 1;
}

.quote-block__image-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Mirror Layout */
.quote-block.mirrored .quote-block__inner {
  flex-direction: row-reverse;
}

.quote-block.mirrored .quote-block__quote-area {
      margin-left: -60px;
      margin-right:0;
}

/* Responsive */
@media (max-width: 768px) {
  .quote-block__inner {
    flex-direction: column !important;
    align-items: stretch;
  }

  .quote-block__quote-area,
  .quote-block__image-area {
    width: auto;
    transform: none !important;
    top: 0;
  }

  .quote-block__quote-area {
    margin-left: -30px !important;
    margin-right: 0;
  }
}
