.quote-cta-section {
  position: relative;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
  /* margin-top: clamp(4rem, 8vw, 6rem); */
  width: 100%;
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  background-color: #0f172a;
  color: #f8fafc;
  display: flex;
  align-items: center;
  height: 80vh;
}

.quote-cta-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.2;
}

.quote-cta-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(15, 23, 42, 0.7) 100%
  );
  z-index: 2;
}

.quote-cta-section__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.quote-cta-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 40rem;
}

.quote-cta-section__quote {
  margin: 0 0 2.5rem;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.quote-cta-section__quote p {
  margin: 0;
}

.quote-cta-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: "Neuzeit Grotesk", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-radius: 5px;
  background-color: var(--CTA-Default);
  color: #000000;
  transition: all 0.3s ease;
  border: none;
}

.quote-cta-section__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--CTA-Shadow);
}

.quote-cta-section__image-wrapper {
  position: absolute;
  bottom: 0;
  right: clamp(2rem, 5vw, 8rem);
  z-index: 3;
  width: 50%;
  pointer-events: none; /* Allows clicking text/background beneath the transparent image borders */
}

.quote-cta-section__person-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .quote-cta-section__image-wrapper {
    right: 50%;
    transform: translateX(50%);
  }
}
