.ce-quote {
  display: flex;
  padding: clamp(2.7777777778rem, 2.027027027rem + 4.222972973vw, 5.5555555556rem) 0px;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  background: var(--backgroundGradient);
  position: relative;
  container-type: inline-size;
}
.ce-quote .image {
  border-radius: 10px;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
}
.ce-quote .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.ce-quote .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backgroundGradient);
  border-radius: 10px;
  opacity: 0.95;
}
.ce-quote .inner {
  display: flex;
  max-width: 800px;
  width: var(--baseWidth);
  position: relative;
  justify-content: flex-end;
}
.ce-quote .inner .quote-icon {
  width: 100px;
  height: 100px;
  min-width: 100px;
  position: absolute;
  min-height: 100px;
  mask: url(img/quote.svg);
  left: 0;
  mask-size: cover;
  opacity: 0.05;
  background-color: var(--contrastColorInverted);
}
@container (width <=768px) {
  .ce-quote .inner .quote-icon {
    top: calc(clamp(1.3888888889rem, 0.6381381381rem + 4.222972973vw, 4.1666666667rem) / -1);
  }
}
.ce-quote .inner .quote-text {
  z-index: 1;
  max-width: 730px;
  width: calc(100% - 70px);
  padding-top: 20px;
}
@container (width <=768px) {
  .ce-quote .inner .quote-text {
    width: 100%;
    max-width: unset;
  }
}
.ce-quote .inner .quote-text .qoute {
  color: var(--Solid---White, #FFF);
  font-family: var(--miniFont);
  font-size: clamp(1.1111111111rem, 0.8858858859rem + 1.2668918919vw, 1.9444444444rem);
  font-style: italic;
  font-weight: 200;
  line-height: 45px;
}
.ce-quote .inner .quote-text .author {
  color: var(--Solid---Grey, #A8A8A8);
  /* P/- Minitext */
  font-family: var(--miniFont);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  margin-top: 15px;
}
