@charset "UTF-8";
/* Layer 3 — homepage attorney quote (Figma 2566:14473).
 * A 1376-wide dark BOX (not full-bleed) centred on the page: LEFT gold quote
 * mark + big DIN quote + author + CTA; RIGHT Leo's photo bleeding to the box's
 * bottom-right. Tokens only; the quote mark is the shared .norml-quote-mark. */
.home-quote {
  padding: 40px 24px;
}
.home-quote__box {
  background: var(--header-color-dark);
  color: var(--header-color-white);
  overflow: hidden;
}
.home-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 900px) {
  .home-quote__grid {
    grid-template-columns: 1fr;
  }
}
.home-quote__body {
  align-self: center;
  padding: 64px 32px 64px 56px;
}
@media (max-width: 900px) {
  .home-quote__body {
    padding: 48px 24px;
  }
}
.home-quote__text {
  font-family: var(--norml-font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.04;
  color: var(--header-color-white);
  margin: -36px 0 0;
  padding: 0;
  border: 0;
  background: none;
  max-width: 620px;
  quotes: none;
}
.home-quote__text::before, .home-quote__text::after {
  content: none;
}
.home-quote__author {
  display: block;
  font-family: var(--norml-font-body);
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
}
.home-quote__cta {
  margin-top: 40px;
}
.home-quote__photo {
  align-self: end;
}
.home-quote__photo img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .home-quote__photo {
    order: -1;
    align-self: stretch;
    position: relative;
  }
  .home-quote__photo img {
    width: 100%;
    margin: 0;
  }
  .home-quote__photo::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(to bottom, transparent, var(--header-color-dark));
    pointer-events: none;
  }
}