:root {
  --ink: #05080d;
  --ink-2: #0a111a;
  --ink-3: #0d1620;
  --panel: rgba(12, 20, 30, 0.82);
  --line: rgba(124, 233, 255, 0.16);
  --line-strong: rgba(124, 233, 255, 0.42);
  --cyan: #7ce9ff;
  --cyan-deep: #2ab8c9;
  --jade: #8fe6c2;
  --amber: #e9c58d;
  --paper: #f3efe3;
  --muted: #96a8b4;
  --serif: "Noto Serif SC", "Source Han Serif SC", "STZhongsong", "SimSun", serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Helvetica Neue", sans-serif;
  --display-en: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 233, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 233, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 78%);
}

::selection {
  background: rgba(124, 233, 255, 0.32);
  color: #ffffff;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--cyan);
  color: #061016;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 3.2rem;
  background: rgba(5, 8, 13, 0.62);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  border: 1px solid var(--cyan-deep);
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(42, 184, 201, 0.16), rgba(124, 233, 255, 0.04));
}

.brand-mark span {
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-size: 1rem;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.24s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 4.4vw 5rem;
  overflow: hidden;
}

#scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.9) 0%, rgba(5, 8, 13, 0.58) 42%, rgba(5, 8, 13, 0.08) 72%),
    linear-gradient(to top, rgba(5, 8, 13, 0.94) 0%, rgba(5, 8, 13, 0.18) 42%, transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 1.1rem;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 6.6rem;
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 0 28px rgba(124, 233, 255, 0.2);
}

.title-en {
  margin-top: 0.55rem;
  font-family: var(--display-en);
  font-size: 1.28rem;
  color: rgba(243, 239, 227, 0.86);
  letter-spacing: 0;
}

.subtitle {
  margin-top: 1.35rem;
  color: var(--jade);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-quote {
  max-width: 610px;
  margin-top: 1.6rem;
  color: rgba(243, 239, 227, 0.84);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--line-strong);
  font-size: 0.96rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #061016;
  font-weight: 700;
}

.btn-ghost {
  background: rgba(9, 16, 25, 0.42);
  color: var(--cyan);
  backdrop-filter: blur(8px);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--jade);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--jade);
}

.hero-stats {
  position: absolute;
  right: 4.4vw;
  bottom: 4.6rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(88px, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.hero-stats div {
  min-width: 96px;
  padding: 1rem 1.15rem;
  background: rgba(7, 13, 21, 0.76);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
}

.hero-stats span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Shared bands */
.band {
  position: relative;
  z-index: 1;
  padding: 7rem 4.4vw;
  border-top: 1px solid var(--line);
}

.band-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.35rem;
  align-items: start;
  margin-bottom: 3.4rem;
}

.section-index {
  padding-top: 0.2rem;
  color: var(--cyan-deep);
  font-family: var(--display-en);
  font-size: 1rem;
}

.section-kicker {
  color: var(--cyan-deep);
  font-family: var(--display-en);
  font-size: 0.78rem;
}

.section-title {
  margin-top: 0.45rem;
  font-family: var(--serif);
  font-size: 2.55rem;
  line-height: 1.3;
}

/* Profile */
.profile-band {
  background: linear-gradient(180deg, rgba(9, 16, 25, 0.65), rgba(5, 8, 13, 0.95));
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 3.2rem;
  align-items: start;
}

.portrait {
  position: relative;
  margin: 0;
}

.portrait::before {
  content: "";
  position: absolute;
  inset: -1rem -1rem auto auto;
  width: 64%;
  height: 62%;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  pointer-events: none;
}

.portrait img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(124, 233, 255, 0.12));
}

.portrait figcaption {
  position: relative;
  margin-top: 1rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--amber);
  color: var(--amber);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.profile-lead {
  max-width: 660px;
  margin-bottom: 1.7rem;
  color: rgba(243, 239, 227, 0.88);
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.9;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.info-cell {
  padding: 0.95rem 1.1rem;
  background: var(--panel);
}

.info-cell dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.info-cell dd {
  margin-top: 0.25rem;
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.5;
}

.resonance-report {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1.4rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(233, 197, 141, 0.24);
  background: linear-gradient(135deg, rgba(233, 197, 141, 0.08), rgba(124, 233, 255, 0.05));
}

.report-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber);
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.resonance-report h3 {
  margin-bottom: 0.35rem;
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1rem;
}

.resonance-report p {
  color: rgba(243, 239, 227, 0.76);
  font-size: 0.9rem;
}

.voice-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3rem;
}

.voice-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(8, 14, 22, 0.6);
}

.voice-line span {
  color: var(--muted);
  font-size: 0.78rem;
}

.voice-line strong {
  color: var(--cyan);
  font-size: 0.95rem;
}

/* Skills */
.skills-band {
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.9), rgba(10, 18, 28, 0.7));
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.skill-card {
  position: relative;
  min-height: 262px;
  padding: 1.6rem 1.5rem 1.45rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(155deg, rgba(16, 27, 40, 0.9), rgba(8, 14, 22, 0.94));
  overflow: hidden;
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.skill-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(124, 233, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 233, 255, 0.1), transparent 62%);
  pointer-events: none;
}

.skill-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-deep), transparent 68%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.skill-card:hover,
.skill-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan-deep);
  color: var(--cyan);
  background: rgba(42, 184, 201, 0.08);
}

.skill-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skill-type {
  margin-top: 1.25rem;
  color: var(--cyan-deep);
  font-family: var(--display-en);
  font-size: 0.72rem;
}

.skill-card h3 {
  margin-top: 0.3rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.3;
}

.skill-card p:last-child {
  margin-top: 0.75rem;
  color: rgba(243, 239, 227, 0.72);
  font-size: 0.9rem;
  line-height: 1.75;
}

.sequence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.6rem;
  border: 1px solid var(--line);
  background: var(--line);
}

.sequence-strip div {
  min-height: 110px;
  padding: 1rem 1.15rem;
  background: rgba(8, 14, 22, 0.86);
}

.sequence-strip span {
  color: var(--amber);
  font-family: var(--serif);
  font-size: 1rem;
}

.sequence-strip p {
  margin-top: 0.4rem;
  color: rgba(243, 239, 227, 0.7);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Story */
.story-band {
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.55), rgba(5, 8, 13, 0.95));
}

.story-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
  position: relative;
}

.story-track::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan-deep), transparent 76%);
}

.story-step {
  padding-top: 1.5rem;
}

.story-no {
  color: var(--cyan-deep);
  font-family: var(--display-en);
  font-size: 0.9rem;
}

.story-step h3 {
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
}

.story-step p:last-child {
  margin-top: 0.7rem;
  color: rgba(243, 239, 227, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.story-quote {
  position: relative;
  max-width: 820px;
  margin: 4rem auto 0;
  padding: 2.1rem 2.2rem;
  border: 1px solid rgba(233, 197, 141, 0.26);
  background: linear-gradient(135deg, rgba(233, 197, 141, 0.07), rgba(124, 233, 255, 0.04));
}

.story-quote::before {
  content: "“";
  position: absolute;
  left: 0.6rem;
  top: -1.4rem;
  color: rgba(233, 197, 141, 0.42);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 1;
}

.story-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.9;
}

.story-quote cite {
  display: block;
  margin-top: 0.7rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-style: normal;
}

/* Voices */
.voices-band {
  background: linear-gradient(180deg, rgba(5, 8, 13, 0.92), rgba(9, 17, 26, 0.8));
}

.voice-panel {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 2.4rem;
  align-items: stretch;
}

.voice-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(124, 233, 255, 0.06), transparent 55%),
    rgba(8, 14, 22, 0.7);
  overflow: hidden;
}

.voice-art::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(124, 233, 255, 0.22);
  pointer-events: none;
}

.voice-art img {
  width: 70%;
  max-height: 290px;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.02);
}

.voice-stage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 1.9rem 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(16, 27, 40, 0.9), rgba(8, 14, 22, 0.94));
}

.voice-label {
  color: var(--cyan-deep);
  font-family: var(--display-en);
  font-size: 0.8rem;
}

.voice-quote {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 170px;
  margin: 1.3rem 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.9;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.voice-quote.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.voice-controls {
  display: flex;
  gap: 0.7rem;
}

.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(9, 16, 25, 0.5);
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(124, 233, 255, 0.14);
  border-color: var(--cyan);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Relations */
.relations-band {
  background: linear-gradient(180deg, rgba(9, 17, 26, 0.65), rgba(5, 8, 13, 0.96));
}

.relations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.relation-card {
  position: relative;
  min-height: 210px;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 18, 28, 0.78);
  transition: border-color 0.24s ease, transform 0.24s ease;
}

.relation-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.relation-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.9rem;
  border: 1px solid var(--cyan-deep);
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.relation-card h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
}

.relation-card p {
  margin-top: 0.55rem;
  color: rgba(243, 239, 227, 0.68);
  font-size: 0.86rem;
  line-height: 1.75;
}

.relation-focus {
  border-color: rgba(233, 197, 141, 0.32);
}

.relation-focus .relation-mark {
  border-color: var(--amber);
  color: var(--amber);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3rem 4.4vw 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
}

.site-footer p:nth-child(2) {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--cyan);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wind-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 1px solid rgba(124, 233, 255, 0.9);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

.wind-burst.is-active {
  animation: burst 0.75s ease-out;
}

@keyframes burst {
  0% {
    transform: scale(0.2);
    opacity: 0.9;
  }
  100% {
    transform: scale(14);
    opacity: 0;
  }
}

/* Mobile */
@media (max-width: 980px) {
  .site-nav {
    padding: 0.85rem 1.4rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero {
    padding: 8rem 1.4rem 4rem;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-stats {
    position: static;
    margin-top: 3.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    flex: 1 0 100%;
    width: 100%;
  }

  .hero-stats div {
    min-width: 0;
    padding: 0.8rem 0.6rem;
  }

  .band {
    padding: 5rem 1.4rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .portrait {
    max-width: 420px;
  }

  .skills-grid,
  .relations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sequence-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voice-panel {
    grid-template-columns: 1fr;
  }

  .voice-art {
    min-height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1.15rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 1.05rem;
    padding-bottom: 0.2rem;
  }

  .nav-links a {
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 100svh;
    padding: 7.2rem 1.15rem 2.6rem;
    align-items: flex-end;
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .title-en {
    font-size: 1rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .hero-quote {
    font-size: 1.02rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hero-stats {
    margin-top: 2.4rem;
  }

  .hero-stats strong {
    font-size: 0.98rem;
  }

  .hero-stats span {
    font-size: 0.68rem;
  }

  .band {
    padding: 4rem 1.15rem;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 2.2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .skills-grid,
  .relations-grid,
  .story-track,
  .sequence-strip {
    grid-template-columns: 1fr;
  }

  .skill-card {
    min-height: 0;
  }

  .story-quote {
    margin-top: 2.6rem;
    padding: 1.5rem 1.2rem;
  }

  .story-quote p {
    font-size: 1.12rem;
  }

  .voice-stage {
    padding: 1.4rem 1.2rem;
  }

  .voice-quote {
    font-size: 1.16rem;
  }

  .relation-card {
    min-height: 0;
  }
}
