:root {
  --orange: #f59b00;
  --blue: #0f4263;
  --cyan: #00d4ff;
  --ink: #101827;
  --soft: #f6f8fb;
  --muted: #657182;
  --white: #ffffff;
  font-family: Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(15, 66, 99, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  font-weight: 900;
}

.brand span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--blue);
}

nav {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 70px);
  grid-template-columns: minmax(0, 1fr) 21rem;
  align-items: end;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  filter: saturate(1.06);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 66, 99, 0.92), rgba(15, 66, 99, 0.55), rgba(245, 155, 0, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68));
}

.hero-copy,
.hero-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #ffe3a5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 7.5rem);
  line-height: 0.88;
}

.hero p,
.split p,
.totem-section p,
.memory p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.1rem;
  font-weight: 900;
}

.primary {
  background: var(--orange);
  color: var(--blue);
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.dark {
  border-color: rgba(16, 24, 39, 0.18);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-card {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.event-logo {
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
}

.hero-card span,
.hero-card small {
  color: #ffe3a5;
  font-weight: 900;
  text-transform: uppercase;
}

.signal,
.info-grid,
.split,
.totem-section,
.memory,
.speakers,
.realization,
.supporters,
footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.signal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  color: var(--blue);
  font-weight: 900;
}

.signal span {
  color: var(--muted);
  font-weight: 700;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 4rem 0;
}

.info-grid article,
.schedule article,
.mock-form,
.email-card,
.operator-board,
.qr-grid article,
.data-list,
.speaker-card,
.realization-grid article,
.supporter-grid article {
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.flow,
.operator,
.qr-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.flow h2,
.operator h2,
.qr-flow h2 {
  max-width: 12ch;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.94;
}

.flow p,
.operator p,
.qr-flow p,
.mock-form,
.email-card p {
  color: var(--muted);
  line-height: 1.6;
}

.mock-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
}

.mock-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--blue);
  font-weight: 900;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 8px;
  padding: 0.85rem;
  background: #f8fafc;
  color: #475569;
  font: inherit;
}

.mock-form textarea {
  min-height: 5rem;
  resize: vertical;
}

.accept {
  border-radius: 8px;
  padding: 0.9rem;
  background: rgba(245, 155, 0, 0.14);
  color: var(--blue);
  font-weight: 900;
}

.email-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(245, 155, 0, 0.16), transparent 16rem),
    #ffffff;
}

.email-card span,
.email-card small {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.email-card strong {
  color: var(--blue);
  font-size: 1.3rem;
}

.operator-board {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
}

.board-head,
.operator-board article {
  display: grid;
  grid-template-columns: 4rem 8rem minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.board-head {
  grid-template-columns: 1fr auto;
  color: var(--blue);
}

.operator-board article {
  border-radius: 8px;
  padding: 0.8rem;
  background: #f8fafc;
}

.operator-board b {
  color: var(--orange);
}

.operator-board span {
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  background: rgba(15, 66, 99, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.operator-board button {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.qr-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(245, 155, 0, 0.35), transparent 34%),
    linear-gradient(135deg, rgba(15, 66, 99, 0.98), rgba(8, 33, 52, 0.98));
  color: var(--white);
  box-shadow: 0 2rem 5rem rgba(16, 24, 39, 0.18);
}

.qr-flow::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.qr-flow .section-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.qr-flow .eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(245, 155, 0, 0.42);
  border-radius: 999px;
  background: rgba(245, 155, 0, 0.12);
  color: #ffd186;
}

.qr-flow h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.96;
}

.qr-flow p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.78);
}

.qr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.qr-grid article {
  display: grid;
  gap: 0.75rem;
  min-height: 12.4rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.14);
}

.qr-grid span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), #ffc766);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.qr-grid strong {
  color: var(--blue);
  font-size: 1.05rem;
  line-height: 1.15;
}

.qr-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.data-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
}

.data-list span {
  border-radius: 8px;
  padding: 0.85rem;
  background: #f8fafc;
  color: var(--blue);
  font-weight: 800;
}

.info-grid span,
.schedule span {
  color: var(--orange);
  font-weight: 900;
}

.info-grid p,
.supporters p {
  color: var(--muted);
  line-height: 1.6;
}

.split,
.totem-section,
.memory {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.split h2,
.totem-section h2,
.memory h2,
.supporters h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.94;
  color: var(--blue);
}

.split p,
.totem-section p,
.memory p {
  color: var(--muted);
}

.schedule {
  display: grid;
  gap: 0.8rem;
}

.totem-section {
  border-radius: 8px;
  padding: 2rem;
  background: var(--white);
}

.totem-section img,
.memory img {
  width: min(100%, 24rem);
  justify-self: center;
  border-radius: 16px;
  box-shadow: 0 1.4rem 3rem rgba(16, 24, 39, 0.18);
}

.work-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.work-cards img {
  width: 100%;
  border-radius: 8px;
}

.memory {
  border-radius: 8px;
  padding: 2rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(245, 155, 0, 0.16), transparent 22rem),
    #ffffff;
}

.supporters {
  padding: 4rem 0;
}

.speakers {
  padding: 5rem 0 1rem;
}

.realization {
  padding: 4rem 0 1rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.section-head p:last-child {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.65;
}

.speaker-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.speaker-card {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.speaker-card.featured {
  border-color: rgba(245, 155, 0, 0.42);
  box-shadow: 0 1.4rem 3rem rgba(245, 155, 0, 0.12);
}

.speaker-photo {
  display: grid;
  width: 5.4rem;
  height: 5.4rem;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 155, 0, 0.8), transparent 34%),
    linear-gradient(135deg, var(--blue), #082134);
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}

.speaker-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-card h3 {
  margin: 0.25rem 0;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.speaker-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.speaker-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.realization-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.realization-grid article {
  display: grid;
  grid-template-rows: 7.8rem auto auto;
  gap: 0.6rem;
  align-items: center;
  justify-items: center;
  min-height: 13.6rem;
  overflow: hidden;
  text-align: center;
}

.logo-mark {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  place-items: center;
  border: 1px solid rgba(15, 66, 99, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 15%, rgba(245, 155, 0, 0.36), transparent 38%),
    #f8fafc;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.realization-logo {
  width: 100%;
  max-width: 10rem;
  height: 5.2rem;
  object-fit: contain;
  border-radius: 8px;
  background: #f8fafc;
}

.realization-grid strong {
  color: var(--blue);
}

.realization-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.supporter-grid article {
  display: grid;
  min-height: 7rem;
  place-items: center;
  text-align: center;
  font-weight: 900;
  color: var(--blue);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 3rem 0 2rem;
  color: var(--muted);
}

footer strong {
  color: var(--blue);
}

/* Realization wall: fixed logo area to keep mixed logo proportions aligned. */
.realization-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.realization-grid article {
  display: grid;
  grid-template-rows: 7.8rem auto auto;
  gap: 0.6rem;
  align-items: center;
  justify-items: center;
  min-height: 13.6rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.realization-logo {
  width: 100%;
  max-width: 8.8rem;
  height: 7.2rem;
  object-fit: contain;
  object-position: center;
  padding: 0.45rem;
  border-radius: 8px;
  background: #f8fafc;
}

.realization-grid strong {
  display: -webkit-box;
  min-height: 2.1rem;
  margin: 0;
  overflow: hidden;
  color: var(--blue);
  font-size: 0.78rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.realization-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Premium modules added after the core layout, kept at the end to avoid older cached rules. */
.speakers,
.realization {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.speakers {
  padding: 5rem 0 1rem;
}

.realization {
  padding: 4rem 0 1rem;
}

.speakers .section-head,
.realization .section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 1.2rem;
}

.speakers .section-head h2,
.realization .section-head h2 {
  max-width: 12ch;
  margin: 0.35rem 0 0;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.94;
}

.speakers .section-head > p,
.realization .section-head > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.speaker-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 1rem;
}

.speaker-card,
.realization-grid article {
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.speaker-card {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 1rem;
  align-items: start;
}

.speaker-card.featured {
  border-color: rgba(245, 155, 0, 0.42);
  box-shadow: 0 1.4rem 3rem rgba(245, 155, 0, 0.12);
}

.speaker-photo,
.logo-mark {
  display: grid;
  width: 5.4rem;
  height: 5.4rem;
  place-items: center;
  border-radius: 8px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.speaker-photo {
  background:
    radial-gradient(circle at 70% 20%, rgba(245, 155, 0, 0.8), transparent 34%),
    linear-gradient(135deg, var(--blue), #082134);
  color: var(--white);
}

.speaker-card span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-card h3 {
  margin: 0.25rem 0;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.speaker-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink);
}

.speaker-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.realization-grid article {
  display: grid;
  gap: 0.7rem;
  align-content: center;
  justify-items: center;
  min-height: 11rem;
  text-align: center;
}

.logo-mark {
  border: 1px solid rgba(15, 66, 99, 0.12);
  background:
    radial-gradient(circle at 75% 15%, rgba(245, 155, 0, 0.36), transparent 38%),
    #f8fafc;
  color: var(--blue);
}

.realization-logo {
  width: 100%;
  max-width: 8.8rem;
  height: 7.2rem;
  object-fit: contain;
  object-position: center;
  padding: 0.45rem;
  border-radius: 8px;
  background: #f8fafc;
}

.realization-grid strong {
  display: -webkit-box;
  min-height: 2.1rem;
  margin: 0;
  overflow: hidden;
  color: var(--blue);
  font-size: 0.78rem;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.realization-grid span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 860px) {
  nav {
    overflow-x: auto;
  }

  .hero,
  .info-grid,
  .flow,
  .operator,
  .qr-flow,
  .split,
  .split.reverse,
  .totem-section,
  .memory,
  .speaker-grid,
  .realization-grid,
  .qr-grid,
  .data-list,
  .supporter-grid {
    grid-template-columns: 1fr;
  }

  .speakers .section-head,
  .realization .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .speaker-more,
  .all-speakers-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .all-speakers-grid {
    grid-template-columns: 1fr;
  }

  .board-head,
  .operator-board article {
    grid-template-columns: 1fr;
  }

  .signal,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Speaker photo refinement for official imported portraits. */
.speaker-photo {
  overflow: hidden;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.speaker-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.speaker-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.speaker-more span {
  font-weight: 700;
}

.all-speakers-hero,
.all-speakers-tools,
.all-speakers-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.all-speakers-hero {
  padding: 5rem 0 2rem;
}

.all-speakers-hero h1 {
  max-width: 12ch;
  margin: 0.35rem 0 1rem;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.9;
}

.all-speakers-hero p {
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.65;
}

.all-speakers-tools {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.all-speakers-tools input {
  width: min(100%, 32rem);
  border: 1px solid rgba(16, 24, 39, 0.12);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  outline: none;
}

.all-speakers-tools span {
  color: var(--muted);
}

.all-speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 4rem;
}

.speaker-list-card {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 1rem;
  min-height: 13rem;
  padding: 1rem;
  border: 1px solid rgba(16, 24, 39, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1rem 2rem rgba(16, 24, 39, 0.05);
}

.speaker-list-card img {
  width: 5.6rem;
  height: 5.6rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.speaker-list-card span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.speaker-list-card h3 {
  margin: 0.25rem 0;
  color: var(--blue);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.speaker-list-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.85rem;
}

.speaker-list-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
