/* Memo case study — #11112D navy system */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --memo-navy: #11112d;
  --memo-muted: #797979;
  --memo-line: #11112d;
  --memo-chip-bg: #11112d;
  --memo-gradient: linear-gradient(180deg, #11112d 0%, #383893 100%);
  --memo-max: 764px;
  --memo-pad-x: clamp(24px, 6vw, 85px);
}

.memo-page {
  background: #fff;
  color: #000;
}

/* ——— Hero ——— */

.memo-hero {
  position: relative;
  width: 100%;
  background: var(--memo-navy);
  min-height: min(925px, 120vw);
  overflow: hidden;
}

.memo-hero__art {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  animation: memoHeroDrift 6s ease-in-out infinite;
}

@keyframes memoHeroDrift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

body.memo-page > header.nav-bar {
  z-index: 1000;
  padding: 12px 51px;
}

body.memo-page > header.nav-bar .nav-bar__links {
  gap: 40px;
}

/* ——— Lead block (header + chips) ——— */

.memo-lead {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) var(--memo-pad-x) 48px;
  background: #fff;
}

.memo-lead__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 40px);
  max-width: 1270px;
  margin: 0 auto;
}

.memo-lead__main {
  flex: 1 1 280px;
  max-width: 654px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.memo-kicker {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.15em;
  color: var(--memo-navy);
}

.memo-title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  color: var(--memo-navy);
}

.memo-title__reliving {
  font-style: italic;
  font-weight: 700;
}

.memo-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 90px;
}

.memo-meta__col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.memo-meta__label {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  color: var(--memo-muted);
}

.memo-meta__value {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #000;
}

.memo-lead__rule {
  width: 2px;
  min-height: 200px;
  background: var(--memo-navy);
  align-self: center;
  flex-shrink: 0;
}

.memo-chips {
  flex: 0 1 510px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
}

.memo-chips__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.memo-chips__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-start;
}

/* Flowing chip layout — wraps naturally 2-3 per row */
.memo-chips__flow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: flex-start;
}

.memo-chips__bento {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.memo-chips__bento .memo-chips__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px 12px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
}

.memo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  min-height: 30px;
  background: var(--memo-chip-bg);
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}

/* ——— Main column ——— */

.memo-main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px var(--memo-pad-x) 120px;
}

.memo-stack {
  max-width: var(--memo-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.memo-divider {
  border: none;
  border-top: 1px solid var(--memo-line);
  width: 100%;
  margin: 0;
}

.memo-divider--after-squares {
  margin-top: 50px;
  margin-bottom: 50px;
}

.memo-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.memo-section--idea {
  gap: 0;
}

.memo-section--idea .memo-eyebrow {
  margin-bottom: 8px;
}

.memo-section--idea .memo-h2 {
  margin: 0;
}

.memo-idea-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  margin-top: 50px;
}

.memo-idea-columns .memo-body-text,
.memo-idea-columns .memo-quote-list {
  flex: 1 1 280px;
  min-width: 0;
}

.memo-section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.memo-eyebrow {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.15em;
  color: var(--memo-muted);
}

.memo-h2 {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
  color: #000;
}

.memo-body-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #000;
}

.memo-video-wrap {
  width: 100%;
  max-width: var(--memo-max);
}

.memo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a18;
  border: 1px solid var(--memo-line);
  border-radius: 20px;
  box-sizing: border-box;
  object-fit: cover;
}

.memo-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.memo-split--logos {
  flex-wrap: nowrap;
  align-items: flex-start;
}

.memo-split--logos .memo-split__col:first-child {
  flex: 0 0 370px;
}

.memo-split--logos .memo-split__col:last-child {
  flex: 0 0 343px;
}

.memo-split__col {
  flex: 1 1 280px;
  min-width: 0;
}

.memo-split__col--centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.memo-quote-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 53px;
}

.memo-quote-list li {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
}

.memo-stat-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 54px;
  justify-content: flex-start;
}

.memo-stat-row--centered {
  justify-content: center;
}

.memo-stat {
  flex: 0 1 140px;
}

.memo-stat__big {
  margin: 0 0 25px;
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
}

.memo-stat__small {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
}

.memo-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
  width: 100%;
}

.memo-process-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.memo-process-step__n {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
  color: var(--memo-muted);
}

.memo-process-step__title {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.1em;
}

.memo-process-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 17px;
}

.memo-process-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  line-height: 17px;
}

.memo-process-step__list li {
  position: relative;
  padding-left: 0.85em;
}

.memo-process-step__list li::before {
  content: "·";
  position: absolute;
  left: 0;
}

.memo-brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-end;
}

.memo-brand-row__text {
  flex: 1 1 300px;
  max-width: 368px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.memo-figure {
  margin: 0;
}

.memo-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.memo-logo-pair {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.memo-logo-pair img {
  flex: 0 0 172px;
  width: 172px;
  max-width: 172px;
  border: 1px solid var(--memo-line);
  border-radius: 10px;
  box-sizing: border-box;
}

.memo-logo-final {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.memo-split__col > .memo-eyebrow {
  margin-bottom: 10px;
}

.memo-logo-final__box {
  position: relative;
  border: 1px solid var(--memo-line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.memo-logo-final__box--dark {
  background: var(--memo-navy);
}

.memo-logo-final__box img {
  width: 100%;
  max-width: none;
  height: auto;
}

.memo-logo-final__img {
  transform: scale(1.08);
  transform-origin: center;
}

.memo-logo-caption {
  display: block;
  margin-top: 0;
}

/* 50px space between construction grid and caption (logo construction column) */
.memo-split--logos .memo-split__col:first-child figure.memo-figure + .memo-body-text {
  margin-top: 50px;
}

.memo-type-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 46px 65px;
  align-items: flex-start;
}

.memo-type-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: -92px;
  margin-left: auto;
  width: max-content;
}

.memo-type-sample {
  display: flex;
  flex-direction: row;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 0;
}

.memo-type-box {
  width: 71px;
  height: 101px;
  border: 1px solid var(--memo-line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  line-height: 1;
  font-family: "Inter", system-ui, sans-serif;
  font-synthesis: weight;
}

.memo-type-copy__lead {
  margin-bottom: 25px;
}

.memo-type-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  margin-top: 0;
  width: max-content;
  margin-left: 0;
  align-items: flex-start;
  text-align: left;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
}

.memo-type-rail span {
  display: block;
  width: max-content;
  text-align: left;
}

.memo-product-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Text block left-aligned, phones row centered */
.memo-product-grid > div:nth-child(1) {
  text-align: left;
}

.memo-product-phones {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.memo-product-phone-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  line-height: 0;
}

.memo-product-phone-video {
  display: block;
  width: 220px;
  height: auto;
  aspect-ratio: 430 / 932;
  object-fit: cover;
  vertical-align: top;
}

.memo-product-vr-wrap {
  width: 100%;
  max-width: 640px;
}

.memo-product-vr-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--memo-line);
  box-sizing: border-box;
}

.memo-placeholder {
  border: 1px solid #000;
  border-radius: 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--memo-muted);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
}

.memo-placeholder--tall {
  min-height: 426px;
}

.memo-collateral-hero img {
  border-radius: 10px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.memo-purple-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.memo-purple-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
  align-items: flex-start;
}

.memo-purple-card {
  flex: 1 1 280px;
  padding: 20px 22px;
  background: var(--memo-gradient);
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.memo-purple-row > .memo-purple-card:first-child,
.memo-purple-card--packaging {
  flex: 0 0 366px;
  height: 350px;
  min-height: 350px;
  max-height: 350px;
  padding: 27px;
}

.memo-purple-row > .memo-purple-grid {
  flex: 0 0 344px;
  gap: 50px !important;
}

.memo-purple-row > .memo-purple-grid .memo-purple-card {
  padding: 12px 18px;
}

/* Hard-lock right stack card heights */
.memo-purple-card--app-store,
.memo-purple-card--physical {
  height: 150px !important;
  min-height: 150px !important;
  max-height: 150px !important;
  padding: 18px 24px !important;
  justify-content: flex-start;
}

.memo-purple-card__label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.memo-purple-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
}

.memo-purple-card__desc {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.memo-square-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: flex-start;
}

.memo-square {
  flex: 0 0 237px;
  max-width: 237px;
  min-height: 212px;
  padding: 32px 24px;
  background: var(--memo-gradient);
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-sizing: border-box;
}

.memo-square img {
  max-width: 100%;
  height: auto;
}

.memo-square__title {
  margin: 2px 0 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.memo-square__sub {
  margin: 6px 0 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
}

.memo-links-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 21px 26px;
}

.memo-link-card {
  flex: 1 1 300px;
  max-width: 369px;
  padding: 15px 20px;
  background: var(--memo-gradient);
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  box-sizing: border-box;
}

.memo-link-card:hover {
  opacity: 0.95;
}

.memo-link-card__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.memo-link-card__icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.memo-link-card__text {
  flex: 1;
  min-width: 0;
}

.memo-link-card__title {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
}

.memo-link-card__sub {
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  opacity: 0.95;
}

.memo-link-card__arrow {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.memo-quote-banner {
  background: #000;
  color: #fff;
  padding: 88px 24px;
  text-align: center;
}

.memo-quote-banner blockquote {
  margin: 0 auto;
  max-width: 1154px;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.22;
}

/* True full-viewport-width bleed regardless of parent max-width */
.memo-main .memo-quote-banner--bleed {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  margin-top: 80px;
  margin-bottom: 0;
  box-sizing: border-box;
}

/* ============================================================
   HOVER POP-OUT ANIMATIONS — every interactive element
   ============================================================ */

/* Chips */
.memo-chip {
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
  cursor: default;
}
.memo-chip:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 17, 45, 0.3);
}

/* Stat blocks */
.memo-stat {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.memo-stat:hover {
  transform: translateY(-6px) scale(1.04);
}

/* Process steps */
.memo-process-step {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}
.memo-process-step:hover {
  transform: translateY(-5px);
}

/* All figures / images */
.memo-figure {
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.28s ease;
}
.memo-figure:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}
.memo-figure img { display: block; width: 100%; height: auto; }

/* Logo pair images */
.memo-logo-pair img {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.memo-logo-pair img:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Logo final boxes */
.memo-logo-final__box {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.memo-logo-final__box:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Type sample boxes */
.memo-type-box {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease;
}
.memo-type-box:hover {
  transform: scale(1.12) translateY(-4px);
  background: var(--memo-navy);
  color: #fff;
}

/* Purple collateral cards */
.memo-purple-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.memo-purple-card:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 36px rgba(17, 17, 45, 0.4);
}

/* Square icon cards */
.memo-square {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.memo-square:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 16px 36px rgba(17, 17, 45, 0.4);
}

/* Link cards */
.memo-link-card {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.25s ease;
}
.memo-link-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 28px rgba(17, 17, 45, 0.4);
  opacity: 1;
}

/* Intro video — ambient loop, no control chrome (matches product section videos) */
.memo-video {
  pointer-events: none;
}

@media (max-width: 900px) {
  .memo-lead__rule { display: none; }
  .memo-process-grid { grid-template-columns: 1fr 1fr; }
  .memo-hero { min-height: auto; }
  .memo-idea-columns {
    margin-top: 32px;
    gap: 32px;
  }

  body.memo-page > header.nav-bar {
    width: calc(100% - 32px);
    padding: 12px 24px;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
  }
  body.memo-page > header.nav-bar .nav-bar__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .memo-process-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MOBILE — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {

  /* Hero fills viewport, no min-height lock */
  .memo-hero { min-height: 60vw; }

  /* Fix hero nav bar padding override */
  body.memo-page > header.nav-bar {
    padding: 10px 16px;
    gap: 6px;
    border-radius: 20px;
    width: calc(100% - 20px);
  }
  body.memo-page > header.nav-bar .nav-bar__links { gap: 14px; font-size: 14px; }

  /* Hero art fills width naturally */
  .memo-hero__art { width: 100%; height: auto; }

  /* Lead: minimal vertical padding, full-width content */
  .memo-lead { padding: 24px 16px 32px; }
  .memo-lead__row { flex-direction: column; gap: 20px; }
  .memo-lead__main { max-width: 100%; }
  .memo-chips { flex: none; width: 100%; border: none; padding: 0; }
  .memo-kicker { font-size: 13px; }
  .memo-title { font-size: clamp(26px, 8vw, 42px); }
  .memo-meta { gap: 16px 24px; }

  /* Main content column */
  .memo-main { padding: 24px 16px 80px; }
  .memo-stack { gap: 60px; }

  /* Intro video */
  .memo-video { border-radius: 12px; }
  .memo-video-wrap { width: 100%; }

  /* Splits → stack vertically */
  .memo-split { flex-direction: column; gap: 28px; }
  .memo-split__col { flex: none; width: 100%; }

  /* Stats row */
  .memo-stat-row { gap: 24px 32px; }
  .memo-stat { flex: 0 1 calc(50% - 16px); }
  .memo-stat__big { font-size: 24px; }

  /* Process grid → 1 col */
  .memo-process-grid { grid-template-columns: 1fr 1fr; }

  /* Logo pair */
  .memo-logo-pair img { max-width: 50%; }

  /* Type row */
  .memo-type-row { gap: 28px; }
  .memo-type-right { margin-top: 0; margin-left: 0; width: 100%; }
  .memo-type-sample { gap: 16px; margin-top: 0; }

  /* Purple cards */
  .memo-purple-card { padding: 20px 20px; }
  .memo-square-row { gap: 16px; }
  .memo-square { flex: 0 1 calc(50% - 8px); min-height: 160px; padding: 20px 16px; }

  /* Link cards */
  .memo-links-grid { gap: 12px; }
  .memo-link-card { flex: none; max-width: 100%; width: 100%; padding: 12px 16px; }

  /* Quote banner */
  .memo-main .memo-quote-banner--bleed { padding: 56px 20px; margin-top: 60px; }
  .memo-quote-banner blockquote { font-size: clamp(18px, 5vw, 26px); }
}
