@charset "UTF-8";
.ng-quote-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .ng-quote-container {
    gap: 1rem;
  }
}

.ng-quote-image {
  position: relative;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .ng-quote-image {
    margin-top: 0;
  }
}
.ng-quote-image-banderole {
  color: black;
  background-color: #FCAB27;
  position: absolute;
  bottom: 1rem;
  left: -1rem;
  width: 90%;
  padding: 0.5em;
  padding-left: 2rem;
  font-weight: 500;
  font-size: 0.75em;
}
.ng-quote-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ng-quote-content {
  text-align: center;
}
@media (min-width: 768px) {
  .ng-quote-content {
    text-align: left;
    flex: 1;
  }
}
.ng-quote-content blockquote {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25em;
  color: #333;
  padding: 1rem;
  border: none;
  text-align: center;
  background-color: transparent;
}
.ng-quote-content blockquote:before, .ng-quote-content blockquote:after {
  font-size: 1.5em;
  font-weight: 200;
  color: red;
}
.ng-quote-content blockquote:before {
  content: "“";
}
.ng-quote-content blockquote:after {
  content: "”";
  line-height: 1em;
}
.ng-quote-content cite {
  display: block;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: black;
  text-align: center;
}/*# sourceMappingURL=ng-quote.css.map */