.cultural-quote,
.cultural-quote *,
.cultural-quote *::before,
.cultural-quote *::after {
  box-sizing: border-box;
}

.cultural-quote {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fcfcfc;
  color: #18141e;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.cultural-quote__inner {
  display: grid;
  width: 100%;
  max-width: 1380px;
  margin-inline: auto;
  padding: 50px 0 82px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.cultural-quote__media {
  position: relative;
  width: 100%;
  aspect-ratio: 675 / 484;
  overflow: hidden;
  border-radius: 20px;
  background: var(--cultural-quote-image-background, #ded8ca);
}

.cultural-quote__image,
.cultural-quote__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.cultural-quote__image {
  object-fit: var(--cultural-quote-image-fit, contain);
  object-position: var(--cultural-quote-image-position, center bottom);
  transform: scale(1.3) translateY(10%);
  transform-origin: center bottom;
}

.cultural-quote__image-placeholder {
  background: var(--cultural-quote-image-background, #ded8ca);
}

.cultural-quote__content {
  width: 100%;
  min-width: 0;
}

.cultural-quote__badge {
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 25px;
  align-items: center;
  margin: 0;
  padding: 4px 15px;
  border-radius: 81px;
  background: #e6ece9;
  font-size: 13px;
  font-weight: 500;
  line-height: 16.25px;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.cultural-quote__title,
.cultural-quote__description,
.cultural-quote__quotation,
.cultural-quote__author {
  color: #18141e;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.cultural-quote__title {
  width: min(526px, 100%);
  margin: 29px 0 0;
  font-size: 42.5px;
  font-weight: 500;
  line-height: 49.6px;
  letter-spacing: 0;
}

.cultural-quote__description {
  width: min(575px, 100%);
  margin: 17px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
}

.cultural-quote__quotation {
  width: min(637px, 100%);
  margin: 30px 0 0;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

.cultural-quote__author {
  width: min(637px, 100%);
  margin: 23px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 16.25px;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

@keyframes cultural-quote-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cultural-quote-reveal .cultural-quote__media,
.cultural-quote-reveal .cultural-quote__content {
  opacity: 0;
}

.cultural-quote-reveal.is-revealed .cultural-quote__media,
.cultural-quote-reveal.is-revealed .cultural-quote__content {
  animation: cultural-quote-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cultural-quote-reveal.is-revealed .cultural-quote__content {
  animation-delay: 80ms;
}

@media (max-width: 1439px) {
  .cultural-quote__inner {
    width: calc(100% - 60px);
  }
}

@media (max-width: 1000px) {
  .cultural-quote__inner {
    padding-block: 64px 68px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
  }

  .cultural-quote__title {
    margin-top: 24px;
    font-size: clamp(32px, 4.1vw, 40px);
    line-height: 1.15;
  }

  .cultural-quote__quotation {
    margin-top: 24px;
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 767px) {
  .cultural-quote__inner {
    width: calc(100% - 32px);
    padding: 48px 0 56px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .cultural-quote__media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .cultural-quote__badge {
    min-height: 24px;
    padding-inline: 12px;
    font-size: 11px;
    line-height: 14px;
  }

  .cultural-quote__title {
    width: 100%;
    margin-top: 22px;
    font-size: 34px;
    line-height: 40px;
  }

  .cultural-quote__description {
    width: 100%;
    margin-top: 16px;
    font-size: 15px;
    line-height: 19px;
  }

  .cultural-quote__quotation {
    width: 100%;
    margin-top: 26px;
    font-size: 18px;
    line-height: 23px;
  }

  .cultural-quote__author {
    width: 100%;
    margin-top: 22px;
    font-size: 11px;
    line-height: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cultural-quote-reveal .cultural-quote__media,
  .cultural-quote-reveal .cultural-quote__content {
    opacity: 1;
    animation: none;
  }
}

/* Authored \n breaks are desktop-only; below the site's mobile breakpoint
   (navbar switch, 1280px) the text reflows naturally. */
@media (max-width: 1280px) {
  br.multiline-br {
    display: none;
  }
}

