@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --color-accent: #8B2635;
  --color-accent-hover: #6d1e2a;
  --color-accent-soft: #f8f2f3;
  --color-accent-pill-bg: rgba(139, 38, 53, 0.08);
  --color-fireside-pill-bg: rgba(180, 83, 9, 0.1);
  --color-talk-accent: #3d5168;
  --color-talk-accent-soft: rgba(61, 81, 104, 0.42);
  --color-text: #1a1816;
  --color-text-muted: #5c5752;
  --color-bg: #faf9f7;
  --color-surface: #ffffff;
  --color-border: #e5e2dc;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 720px;
  --header-height: 56px;
  --site-top-height: var(--header-height);
  --radius: 6px;
  --radius-sm: 4px;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.8125rem;
  --text-section: 1.5rem;
  --text-subsection: 1.0625rem;
  --text-hero: clamp(1.625rem, 2.75vw, 1.875rem);
  --leading-base: 1.65;
  --leading-compact: 1.5;
  --avatar-size: 3.5rem;
  --avatar-size-talk: 4rem;
  --avatar-size-featured: 5rem;
  --avatar-border: 2px solid var(--color-border);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-top-height) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Site top (sticky header) ── */

.site-top {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ── Header ── */

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-height);
  gap: 1rem;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.375rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.0625rem;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.nav-links > li {
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  display: block;
  padding: 0.375rem 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.375rem 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: " ▾";
  font-size: 0.7em;
}

.nav-dropdown[open] > summary,
.nav-dropdown > summary:hover {
  color: var(--color-accent);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  list-style: none;
  margin: 0;
  padding: 0.375rem;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  border-radius: 4px;
  font-size: 0.8125rem;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  text-decoration: none;
}

/* ── Hero ── */

.hero {
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: calc(var(--max-width) + 3rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1.5rem;
  align-items: center;
}

.hero-eyebrow {
  margin: 0 0 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-content h1 {
  margin: 0 0 0.625rem;
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--color-text);
  text-wrap: balance;
}

.hero-meta {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-compact);
  color: var(--color-text-muted);
}

.hero-meta a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-register {
  margin: 0.875rem 0 0;
  padding: 0;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.hero-photo figcaption {
  margin-top: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

/* ── Page layout ── */

.page-body {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ── Content ── */

.content section {
  margin-bottom: 0;
  scroll-margin-top: calc(var(--site-top-height) + 24px);
  padding: 3.5rem max(1.5rem, calc((100% - var(--max-width)) / 2));
}

.content section:nth-child(odd) {
  background: var(--color-bg);
}

.content section:nth-child(even) {
  background: var(--color-surface);
}

.content section:last-child {
  margin-bottom: 0;
}

.content h2 {
  font-family: var(--font-serif);
  font-size: var(--text-section);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  color: var(--color-text);
  line-height: 1.25;
}

.content h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2.75rem 0 0.875rem;
  color: var(--color-text-muted);
}

.content p {
  margin: 0 0 1rem;
  font-size: var(--text-base);
  line-height: var(--leading-base);
}

.content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  font-size: var(--text-base);
  line-height: var(--leading-base);
}

.content li {
  margin-bottom: 0.35rem;
}

.content li:last-child {
  margin-bottom: 0;
}

.overview-more[hidden] {
  display: none;
}

.overview-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  cursor: pointer;
  transition: color 0.15s ease;
}

.overview-toggle:hover {
  color: var(--color-accent-hover);
}

.overview-chevron {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.overview-toggle.is-expanded .overview-chevron {
  transform: rotate(180deg);
}

/* ── How to Arrive ── */

.arrive-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin: 1.25rem 0 0;
}

.arrive-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
  aspect-ratio: 4 / 3;
}

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

.arrive-map {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
  aspect-ratio: 4 / 3;
}

.arrive-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 640px) {
  .arrive-media {
    gap: 0.875rem;
  }
}

/* ── Key dates ── */

.key-dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.date-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.date-card-value {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
}

/* ── Schedule ── */

.schedule-tentative {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.225rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.5rem;
  transform: translateY(-0.125rem);
  color: var(--color-text-muted);
  background: var(--color-border);
}

.status-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.225rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.5rem;
  transform: translateY(-0.125rem);
}

.status-badge--closed {
  color: #fff;
  background: var(--color-text-muted);
}

.status-badge--virtual {
  color: #3d5168;
  background: #dce8f5;
}

.cfp-status {
  margin: -0.25rem 0 1.5rem;
  padding: 1rem 1.125rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.cfp-status p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-base);
}

.date-card--closed {
  opacity: 0.72;
}

.date-card--closed .date-card-value {
  text-decoration: line-through;
  text-decoration-color: var(--color-text-muted);
}

.schedule-date {
  margin: -0.75rem 0 1.75rem;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  color: var(--color-text-muted);
}

.schedule-welcome {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1rem;
  min-width: 0;
}

.schedule-welcome .schedule-title {
  flex: 0 0 auto;
  margin: 0;
}

.schedule-people {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}

.schedule-person {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
}

.schedule-person-hit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}

.schedule-person-hit .talk-avatar-wrap {
  will-change: transform;
}

.schedule-person-hit:focus-visible .talk-avatar-wrap {
  outline: 2px solid var(--color-talk-accent);
  outline-offset: 3px;
}

.schedule-person-tooltip {
  position: absolute;
  bottom: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.2rem);
  opacity: 0;
  pointer-events: none;
  min-width: 8rem;
  max-width: 12rem;
  text-align: center;
  font-family: var(--font-sans);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.5625rem;
  box-shadow: 0 2px 10px rgba(26, 24, 22, 0.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.schedule-person-hit:hover .schedule-person-tooltip,
.schedule-person-hit:focus-visible .schedule-person-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.schedule-person-tooltip-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

.schedule-person-tooltip-affiliation {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.schedule-item {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-time {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.schedule-time-mdt {
  font-size: var(--text-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  white-space: nowrap;
}

.schedule-title {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--leading-compact);
}

.schedule-title--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.schedule-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}

.schedule-item--refreshment {
  padding: 0.75rem 0;
}

.schedule-item--coffee {
  grid-template-columns: auto 1fr;
  gap: 0.625rem 0.875rem;
  padding: 0.375rem 0;
  align-items: center;
}

.schedule-item--refreshment .schedule-time-mdt {
  color: var(--color-text);
  font-weight: 600;
  font-style: normal;
}

.schedule-item--refreshment .schedule-title--with-icon {
  align-items: center;
}

.schedule-item--activity .schedule-icon {
  display: none;
}

.schedule-avatar-wrap--activity {
  background: linear-gradient(135deg, var(--color-talk-accent) 0%, var(--color-talk-accent-soft) 100%);
  box-shadow: 0 2px 10px rgba(61, 81, 104, 0.2);
}

.schedule-item--activity .schedule-featured-pill {
  color: var(--color-talk-accent);
  background: rgba(61, 81, 104, 0.1);
}

.schedule-featured {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  min-width: 0;
}

.schedule-featured-copy {
  flex: 1 1 0;
  min-width: 0;
}

.schedule-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
}

.schedule-featured-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.25rem;
}

.schedule-featured-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.1875rem 0.4375rem;
  border-radius: 999px;
  line-height: 1;
  color: var(--color-accent);
  background: var(--color-accent-pill-bg);
}

.schedule-item--fireside .schedule-featured-pill {
  color: #b45309;
  background: var(--color-fireside-pill-bg);
}

.schedule-featured-identity {
  display: flex;
  flex-direction: column;
  gap: 0.0625rem;
  min-width: 0;
}

.schedule-featured-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.schedule-featured-name:hover {
  color: var(--color-accent);
}

.schedule-featured-talk-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-text);
  text-wrap: balance;
}

.schedule-featured-submeta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35rem;
  row-gap: 0.0625rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.schedule-featured-submeta-sep {
  opacity: 0.45;
  user-select: none;
}

.schedule-featured-submeta-sep[hidden] {
  display: none;
}

.content .schedule-session-moderator {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-compact);
  color: var(--color-text-muted);
}

.schedule-item--talks .schedule-title {
  display: inline-flex;
  margin: 0 0 0.25rem;
  padding-bottom: 0;
  border-bottom: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-subsection);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.schedule-item--talks .schedule-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.schedule-item--talks .schedule-session-moderator {
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-border);
}

.schedule-keynote {
  display: contents;
}

.speaker-bio {
  width: 100%;
  min-width: 0;
  padding-top: 0.125rem;
  border-top: 1px solid rgba(139, 38, 53, 0.12);
}

.speaker-bio-label {
  margin: 0.625rem 0 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.speaker-bio + .speaker-bio {
  padding-top: 0.875rem;
  border-top: 1px solid rgba(139, 38, 53, 0.1);
}

.schedule-item--fireside .speaker-bio + .speaker-bio {
  border-top-color: rgba(180, 83, 9, 0.12);
}

.speaker-bio-text {
  width: 100%;
  font-size: var(--text-sm);
  line-height: var(--leading-base);
  color: #3d3a36;
}

.speaker-bio-text:not(.is-expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--preview-lines, 4);
  line-clamp: var(--preview-lines, 4);
  overflow: hidden;
  width: 100%;
}

.speaker-bio-text:not(.is-expanded) p {
  display: inline;
  margin: 0;
}

.speaker-bio-text--paragraph-preview:not(.is-expanded) {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.speaker-bio-text--paragraph-preview:not(.is-expanded) p {
  display: block;
  margin: 0 0 0.75rem;
}

.speaker-bio-text--paragraph-preview:not(.is-expanded) .speaker-bio-text-more {
  display: none;
}

.speaker-bio-text:not(.is-expanded) p + p::before {
  content: ' ';
}

.speaker-bio-text.is-expanded {
  display: block;
}

.speaker-bio-text p {
  margin: 0 0 0.75rem;
}

.speaker-bio-text p:last-child {
  margin-bottom: 0;
}

.speaker-bio-text em {
  font-style: italic;
}

.speaker-bio-toggle {
  margin-top: 0.5rem;
  padding: 0.25rem 0;
  text-underline-offset: 0.15em;
}

.speaker-bio-toggle:hover {
  text-decoration: underline;
}

.speaker-tabs {
  width: 100%;
  min-width: 0;
  padding-top: 0;
  border-top: none;
}

.speaker-tabs-nav {
  display: flex;
  gap: 0.25rem;
  margin: 0 0 0.4375rem;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}

.speaker-tab {
  margin: 0;
  padding: 0.4375rem 0.75rem;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.speaker-tab:hover {
  color: var(--color-text);
}

.speaker-tab[aria-selected="true"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: var(--color-accent-pill-bg);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.speaker-tabs .speaker-tab-panel {
  border-top: none;
  padding-top: 0;
}

.schedule-item--fireside .speaker-tabs {
  border-top-color: rgba(180, 83, 9, 0.14);
}

.schedule-item--fireside .speaker-tab[aria-selected="true"] {
  color: #b45309;
  border-bottom-color: #b45309;
  background: var(--color-fireside-pill-bg);
}

.schedule-item--fireside .speaker-bio {
  border-top-color: rgba(180, 83, 9, 0.14);
}

.schedule-item--fireside .speaker-bio-label {
  color: #b45309;
}

.schedule-avatar {
  flex-shrink: 0;
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  object-fit: cover;
  border: var(--avatar-border);
  background: var(--color-border);
}

.talk-avatar-wrap {
  flex-shrink: 0;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-talk-accent) 0%, var(--color-talk-accent-soft) 100%);
  box-shadow: 0 2px 8px rgba(61, 81, 104, 0.16);
}

.talk-avatar-wrap--zoom .talk-avatar-clip {
  display: block;
  width: var(--avatar-size-talk);
  height: var(--avatar-size-talk);
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-surface);
  box-sizing: border-box;
}

.talk-avatar-wrap--zoom .talk-avatar {
  width: 100%;
  height: 100%;
  border: none;
}

/* Speaker-specific avatar crops — isolated so tweaks don't affect each other */
.talk-avatar-wrap--alexandra-lyn .talk-avatar {
  object-position: center 16%;
}

.talk-avatar-wrap--meghna-manoj-nair.talk-avatar-wrap--zoom .talk-avatar {
  object-position: center 24%;
  transform: scale(1.95);
  transform-origin: center 54%;
}

.talk-avatar {
  display: block;
  width: var(--avatar-size-talk);
  height: var(--avatar-size-talk);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-surface);
  background: var(--color-border);
}

.schedule-avatar-wrap .schedule-avatar {
  width: var(--avatar-size-featured);
  height: var(--avatar-size-featured);
  border: 2.5px solid var(--color-surface);
  box-shadow: none;
}

.schedule-icon--featured {
  color: var(--color-accent);
}

.schedule-avatar-wrap {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, rgba(139, 38, 53, 0.45) 100%);
  box-shadow: 0 2px 10px rgba(139, 38, 53, 0.18);
}

.schedule-avatar-wrap--fireside {
  background: linear-gradient(135deg, #b45309 0%, rgba(139, 38, 53, 0.55) 100%);
  box-shadow: 0 2px 10px rgba(180, 83, 9, 0.2);
}

.schedule-item--fireside .schedule-icon--featured {
  color: #b45309;
}

.schedule-item--featured .schedule-title {
  margin: 0;
}

.schedule-item--keynote,
.schedule-item--fireside,
.schedule-item--activity {
  align-items: start;
  row-gap: 0.875rem;
  background: linear-gradient(90deg, var(--color-accent-soft) 0%, #fff 72%);
  border: 1px solid rgba(139, 38, 53, 0.18);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(139, 38, 53, 0.07);
  padding: 1.125rem 1rem 1.125rem 0.875rem;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.schedule-item--keynote .schedule-time,
.schedule-item--fireside .schedule-time,
.schedule-item--activity .schedule-time {
  grid-column: 1;
  grid-row: 1;
}

.schedule-item--keynote .schedule-featured,
.schedule-item--fireside .schedule-featured,
.schedule-item--activity .schedule-featured {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
}

.schedule-item--keynote .speaker-bio,
.schedule-item--fireside .speaker-bio,
.schedule-item--keynote .speaker-sections,
.schedule-item--fireside .speaker-sections {
  grid-column: 1 / -1;
  width: 100%;
}

.schedule-item--keynote .speaker-sections,
.schedule-item--fireside .speaker-sections {
  margin-top: 0.625rem;
  padding-top: 0.4375rem;
  border-top: 1px solid rgba(139, 38, 53, 0.15);
}

.schedule-item--fireside .speaker-sections {
  border-top-color: rgba(180, 83, 9, 0.15);
}

.schedule-item--fireside {
  background: linear-gradient(90deg, #fdf6ef 0%, #fff 72%);
  border-color: rgba(180, 83, 9, 0.22);
  border-left-color: #b45309;
  box-shadow: 0 2px 12px rgba(180, 83, 9, 0.08);
}

.schedule-item--activity {
  background: linear-gradient(90deg, #f3f6f9 0%, #fff 72%);
  border-color: rgba(61, 81, 104, 0.2);
  border-left-color: var(--color-talk-accent);
  box-shadow: 0 2px 12px rgba(61, 81, 104, 0.08);
}

.schedule-item--keynote .schedule-time-mdt,
.schedule-item--fireside .schedule-time-mdt,
.schedule-item--activity .schedule-time-mdt {
  color: var(--color-accent);
  font-weight: 700;
}

.schedule-item--fireside .schedule-time-mdt {
  color: #b45309;
}

.schedule-item--activity .schedule-time-mdt {
  color: var(--color-talk-accent);
}

.schedule-item--keynote .schedule-title,
.schedule-item--fireside .schedule-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: var(--text-subsection);
  color: var(--color-text);
}

.schedule-item--break {
  padding: 0.75rem 0;
}

.schedule-item--break .schedule-time-mdt {
  color: var(--color-text);
  font-weight: 600;
}

.schedule-item--break .schedule-title--with-icon {
  align-items: center;
}

.schedule-break-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-border);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.schedule-pill-icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

.schedule-item--talks {
  align-items: start;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.schedule-content {
  min-width: 0;
}

/* ── Talk cards (embedded in schedule) ── */

.talk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.talk-card {
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.talk-card:last-child {
  border-bottom: none;
}

.talk-card-toggle {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  flex-wrap: nowrap;
}

.talk-card-toggle:hover {
  background: none;
}

.talk-card-toggle:hover .talk-name {
  color: var(--color-accent);
}

.talk-card.is-expanded .talk-card-toggle {
  border-bottom: none;
}

.talk-order {
  flex-shrink: 0;
  width: 1.375rem;
  margin-top: 0.3rem;
  border-radius: 0;
  background: none;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.talk-avatars {
  display: flex;
  flex-shrink: 0;
  align-self: flex-start;
  gap: 0.35rem;
  margin-top: 0.05rem;
}

.talk-card .talk-avatar-wrap,
.talk-panel-speaker-hit .talk-avatar-wrap,
.schedule-person-hit .talk-avatar-wrap {
  position: relative;
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.talk-card .talk-avatar-wrap::before,
.talk-panel-speaker-hit .talk-avatar-wrap::before,
.schedule-person-hit .talk-avatar-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-talk-accent) 0%, var(--color-talk-accent-soft) 100%);
  box-shadow: 0 2px 8px rgba(61, 81, 104, 0.16);
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.talk-card .talk-avatar,
.talk-panel-speaker-hit .talk-avatar,
.schedule-person-hit .talk-avatar {
  position: relative;
  z-index: 1;
}

.talk-card .talk-avatar-wrap .talk-avatar-clip,
.talk-panel-speaker-hit .talk-avatar-wrap .talk-avatar-clip,
.schedule-person-hit .talk-avatar-wrap .talk-avatar-clip {
  position: relative;
  z-index: 1;
}

.talk-card.is-expanded .talk-avatar-wrap,
.talk-panel-speaker-hit:hover .talk-avatar-wrap,
.talk-panel-speaker-hit:focus-visible .talk-avatar-wrap,
.schedule-person-hit:hover .talk-avatar-wrap,
.schedule-person-hit:focus-visible .talk-avatar-wrap {
  transform: scale(1.07);
  z-index: 1;
}

.talk-card.is-expanded .talk-avatar-wrap::before,
.talk-panel-speaker-hit:hover .talk-avatar-wrap::before,
.talk-panel-speaker-hit:focus-visible .talk-avatar-wrap::before,
.schedule-person-hit:hover .talk-avatar-wrap::before,
.schedule-person-hit:focus-visible .talk-avatar-wrap::before {
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    var(--color-accent) 0deg,
    #5a7390 60deg,
    #89b0d4 120deg,
    var(--color-talk-accent) 180deg,
    #4a6278 240deg,
    #a63d4f 300deg,
    var(--color-accent) 360deg
  );
  box-shadow:
    0 4px 20px rgba(61, 81, 104, 0.36),
    0 0 0 1px rgba(139, 38, 53, 0.12);
  animation: talk-avatar-ring-spin 2.75s linear infinite;
}

.talk-card.is-expanded .talk-avatar,
.talk-panel-speaker-hit:hover .talk-avatar,
.talk-panel-speaker-hit:focus-visible .talk-avatar,
.schedule-person-hit:hover .talk-avatar,
.schedule-person-hit:focus-visible .talk-avatar {
  border-color: #fff;
}

.talk-card.is-expanded .talk-avatar-wrap--zoom .talk-avatar-clip,
.talk-panel-speaker-hit:hover .talk-avatar-wrap--zoom .talk-avatar-clip,
.talk-panel-speaker-hit:focus-visible .talk-avatar-wrap--zoom .talk-avatar-clip,
.schedule-person-hit:hover .talk-avatar-wrap--zoom .talk-avatar-clip,
.schedule-person-hit:focus-visible .talk-avatar-wrap--zoom .talk-avatar-clip {
  border-color: #fff;
}

@keyframes talk-avatar-ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.talk-avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.talk-panel {
  margin-top: 1rem;
  padding: 0.875rem 0 0;
  border: none;
  border-top: 1px solid var(--color-border);
  border-radius: 0;
  background: transparent;
}

.talk-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.talk-panel-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-accent);
}

.talk-panel-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 1.75rem 0 0;
}

.talk-panel-speaker {
  display: flex;
  flex: 0 0 auto;
}

.talk-panel-speaker-avatars {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.talk-panel-speaker-hit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  outline: none;
}

.talk-panel-speaker-hit .talk-avatar-wrap {
  will-change: transform;
}

.talk-panel-speaker-name {
  position: absolute;
  bottom: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.2rem);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.3125rem 0.5625rem;
  box-shadow: 0 2px 10px rgba(26, 24, 22, 0.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.talk-panel-speaker-hit:hover .talk-panel-speaker-name,
.talk-panel-speaker-hit:focus-visible .talk-panel-speaker-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.talk-panel-speaker-hit:focus-visible .talk-avatar-wrap {
  outline: 2px solid var(--color-talk-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .talk-card .talk-avatar-wrap,
  .talk-panel-speaker-hit .talk-avatar-wrap,
  .talk-panel-speaker-name,
  .schedule-person-hit .talk-avatar-wrap,
  .schedule-person-tooltip {
    transition: none;
  }

  .talk-card.is-expanded .talk-avatar-wrap::before,
  .talk-panel-speaker-hit:hover .talk-avatar-wrap::before,
  .talk-panel-speaker-hit:focus-visible .talk-avatar-wrap::before,
  .schedule-person-hit:hover .talk-avatar-wrap::before,
  .schedule-person-hit:focus-visible .talk-avatar-wrap::before {
    animation: none;
    background: conic-gradient(
      from -45deg,
      var(--color-accent) 0deg,
      #5a7390 90deg,
      var(--color-talk-accent) 180deg,
      #a63d4f 270deg,
      var(--color-accent) 360deg
    );
  }

  .talk-card.is-expanded .talk-avatar-wrap,
  .talk-panel-speaker-hit:hover .talk-avatar-wrap,
  .talk-panel-speaker-hit:focus-visible .talk-avatar-wrap,
  .schedule-person-hit:hover .talk-avatar-wrap,
  .schedule-person-hit:focus-visible .talk-avatar-wrap {
    transform: none;
  }

  .talk-panel-speaker-hit:hover .talk-panel-speaker-name,
  .talk-panel-speaker-hit:focus-visible .talk-panel-speaker-name,
  .schedule-person-hit:hover .schedule-person-tooltip,
  .schedule-person-hit:focus-visible .schedule-person-tooltip {
    transform: translateX(-50%) translateY(0);
  }
}

.talk-summary {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.1rem;
}

.talk-card-toggle .talk-name {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.talk-card-toggle .talk-affiliation {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.4;
  white-space: pre-line;
}

.talk-card-toggle .talk-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.45;
  color: var(--color-text);
}

.talk-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
}

.talk-theme {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-text);
}

.talk-chevron {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.35rem;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
}

.talk-card.is-expanded .talk-chevron {
  transform: rotate(180deg);
}

.talk-card-details {
  padding: 0 0 1rem 2.125rem;
}

.talk-card-details[hidden] {
  display: none;
}

.talk-contributors {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.talk-line-with {
  font-style: italic;
}

.talk-abstract {
  font-size: var(--text-sm);
  line-height: var(--leading-base);
  color: var(--color-text-muted);
}

.talk-abstract p {
  margin: 0 0 0.75rem;
}

.talk-abstract p:last-child {
  margin-bottom: 0;
}

/* ── CTA ── */

.cta-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--color-text);
}

.cta-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ── Buttons ── */

.btn {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
}

.btn--outline:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

/* ── People ── */

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 2.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-items: center;
}

.people-grid li {
  margin: 0;
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
}

.person-card:hover {
  color: var(--color-text);
  text-decoration: none;
}

.person-avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-border);
  flex-shrink: 0;
  border: var(--avatar-border);
  transition: border-color 0.15s;
}

.person-card:hover .person-avatar {
  border-color: var(--color-text-muted);
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.person-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  max-width: 11rem;
}

.person-affiliation {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.person-card:hover .person-name {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Contact ── */

.content section#contact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

#contact h2 {
  margin-bottom: 0.75rem;
  font-size: var(--text-subsection);
}

#contact p {
  margin: 0;
  max-width: 36rem;
  font-size: var(--text-base);
  line-height: var(--leading-base);
  color: var(--color-text-muted);
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 1.75rem 1.5rem 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.site-footer a {
  color: var(--color-text-muted);
}

.site-footer a:hover {
  color: var(--color-accent);
}

.site-footer p {
  margin: 0;
}

/* ── Responsive ── */

@media (min-width: 769px) {
  .schedule-item--keynote,
  .schedule-item--fireside,
  .schedule-item--activity {
    --avatar-size-featured: 5.25rem;
    padding: 1.125rem 1rem 1.125rem 0.875rem;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 1.25rem 1.5rem 1rem;
  }

  .hero-inner {
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
  }

  .hero-photo {
    width: 88px;
  }

  .hero-photo figcaption {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.625rem;
  }

  .hero-meta {
    font-size: var(--text-sm);
  }

  .hero-register {
    margin-top: 0.75rem;
  }

  .hero-register .btn {
    font-size: var(--text-xs);
    padding: 0.4375rem 0.875rem;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.75rem 0;
  }

  .schedule-item--break,
  .schedule-item--refreshment {
    grid-template-columns: auto 1fr;
    gap: 0.5rem 0.75rem;
    align-items: center;
  }

  .schedule-item--keynote,
  .schedule-item--fireside,
  .schedule-item--activity {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .schedule-featured {
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .schedule-featured-copy {
    flex: 1 1 0;
    min-width: 0;
  }

  .schedule-featured-talk-title {
    overflow-wrap: break-word;
  }

  .speaker-tab {
    padding: 0.5625rem 0.875rem;
    font-size: 0.75rem;
  }

  .schedule-item--keynote .schedule-time,
  .schedule-item--fireside .schedule-time,
  .schedule-item--activity .schedule-time {
    grid-column: 1;
    grid-row: 1;
  }

  .schedule-item--keynote .schedule-featured,
  .schedule-item--fireside .schedule-featured,
  .schedule-item--activity .schedule-featured {
    grid-column: 1;
    grid-row: 2;
  }

  .schedule-item--keynote .speaker-bio,
  .schedule-item--fireside .speaker-bio,
  .schedule-item--keynote .speaker-sections,
  .schedule-item--fireside .speaker-sections {
    grid-column: 1;
  }

  .talk-card-toggle {
    gap: 0.625rem;
    padding: 0.75rem 0;
  }

  .talk-card-details {
    padding-left: 0;
  }

  .key-dates {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cta-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-surface);
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links > li:last-child a,
  .nav-links > li:last-child .nav-dropdown > summary {
    border-bottom: none;
  }

  .nav-dropdown > summary {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0.5rem 0.75rem;
    background: transparent;
  }

  .nav-inner {
    position: static;
  }

  .people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
    justify-items: center;
  }

  .people-grid li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .person-meta {
    max-width: 9.5rem;
  }

  .person-affiliation {
    font-size: var(--text-xs);
    line-height: 1.4;
  }

  .schedule-people {
    gap: 0.4375rem 0.5rem;
  }

  .schedule-person-tooltip {
    min-width: 7rem;
    max-width: 10rem;
  }
}

@media (min-width: 540px) and (max-width: 768px) {
  .people-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }

  .people-grid li:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: center;
  }

  .person-meta {
    max-width: 8.5rem;
  }
}
