/* Run Riot featured quote — Figma 843:299. Navy, logo + attribution, black quote bubble, stars. */
/* Superseded on desktop by the new "For the people" section — desktop-hidden,
   kept for the mobile layout (pending the mobile pass). */
@media (min-width: 601px) { .riot { display: none; } }
/* Run Riot featured quote — Figma 843:299. logo ~238px, quote 46.436px,
   attribution 15.841px, stars 39px. */
.riot {
  position: relative;
  background: var(--navy);
  padding-block: calc(64 * var(--px));
  overflow: hidden;
}
.riot__graffiti {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(520 * var(--px));
  opacity: 0.23;
  pointer-events: none;
}
.riot__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(80 * var(--px));
}
.riot__attr { text-align: center; flex: 0 0 auto; }
.riot__logo { width: calc(238 * var(--px)); height: auto; margin: 0 auto calc(14 * var(--px)); }
.riot__by {
  font-family: var(--font-sans);
  font-size: calc(15.841 * var(--px));
  line-height: 1.35;
}
.riot__by strong { font-weight: 700; }

.riot__quote { flex: 0 1 auto; }
.riot__bubble {
  position: relative;
  background: #000;
  color: #fff;
  border-radius: calc(48 * var(--px));
  padding: calc(44 * var(--px)) calc(92 * var(--px));
  max-width: calc(876 * var(--px));
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: calc(46.436 * var(--px));
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
}
.riot__bubble::before {
  content: "";
  position: absolute;
  left: calc(-20 * var(--px));
  top: 50%;
  transform: translateY(-50%);
  border: calc(20 * var(--px)) solid transparent;
  border-right-color: #000;
  border-left: 0;
}
.riot__stars {
  margin-top: calc(24 * var(--px));
  text-align: center;
  color: #fff;
  font-size: calc(39 * var(--px));
  letter-spacing: calc(10 * var(--px));
}

@media (max-width: 820px) {
  /* stacked: quote bubble + stars on top, then Run Riot logo + attribution
     (Figma mobile 862:16 — reverse of the desktop logo-left / quote-right row) */
  .riot__inner { flex-direction: column-reverse; gap: 28px; }
}

/* Not in the Figma mobile flow — the section is desktop-only. */
@media (max-width: 600px) {
  .riot { display: none; }
}
