/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== ROOT VARIABLES ===== */
:root {
  --blue:        #3b82f6;
  --blue-dark:   #1d4ed8;
  --blue-header: #acd5ff;
  --white:       #ffffff;
  --text:        #000000;
  --muted:       #1a1a1a;
  --light:       rgba(248, 250, 255, 0.92);
  --card:        #ffffff;
  --border:      rgba(59, 130, 246, 0.2);
}

/* ===== BACKGROUND (campus photo) ===== */
html {
  background: url("stpeter.jpg") no-repeat center center fixed;
  background-size: cover;
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: #f5f5f541;
  color: var(--text);
  overflow-x: hidden;
}


/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: var(--blue-header);
  box-shadow: 0 2px 16px rgba(59, 130, 246, 0.18);
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.logo-tag {
  font-size: 9px;
  letter-spacing: 2px;
  color: #1e3a6e;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

/* ===== NAV ===== */
nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

nav a {
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1e3a6e;
  text-decoration: none;
  transition: background 0.2s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.nav-register {
  background: #1d4ed8;
  color: #fff !important;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.3);
}

.nav-register:hover {
  background: #1e40af !important;
  transform: translateY(-1px);
}

/* ===== MOBILE MENU BUTTON ===== */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1e3a6e;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-header);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 24px;
  gap: 4px;
}

.mobile-nav a {
  color: #1e3a6e;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 14px;
}

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

/* ===== PAGE / HERO ===== */
.page {
  padding-top: 64px;
}

.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroUp 0.8s ease both;
}

@keyframes heroUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25), 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  animation: popIn 0.6s ease 0.1s both;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.conf-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(59, 130, 246, 0.3));
  animation: popIn 0.6s ease 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.12);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: #1d4ed8;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1);   }
  50%       { opacity: .4; transform: scale(.7); }
}

.hero-title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 22px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 13px 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Instrument Sans', sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.btn-outline {
  padding: 13px 32px;
  background: rgba(255, 255, 255, 0.85);
  color: #1d4ed8;
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Instrument Sans', sans-serif;
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: #fff;
  border-color: #3b82f6;
  transform: translateY(-2px);
}

/* ===== COUNTDOWN BAR ===== */
.countdown-bar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-top:    2px solid rgba(59, 130, 246, 0.15);
  border-bottom: 2px solid rgba(59, 130, 246, 0.15);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.countdown-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: #1d4ed8;
  text-transform: uppercase;
  font-weight: 700;
}

.countdown-units {
  display: flex;
  gap: 16px;
  align-items: center;
}

.c-unit {
  text-align: center;
  min-width: 54px;
}

.c-num {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  display: block;
}

.c-lbl {
  font-size: 9px;
  color: #94a3b8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  display: block;
  margin-top: 3px;
}

.c-sep {
  font-size: 1.8rem;
  color: #3b82f6;
  line-height: 1;
  padding-top: 4px;
  font-weight: 700;
}

/* ===== CONTENT CONTAINER ===== */
.content-container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 50px 20px 70px;
}

/* ===== SECTION CARDS ===== */
.content-section {
  background: #ffffff;
  backdrop-filter: blur(8px);
  padding: 36px;
  margin-bottom: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.content-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.content-section h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
}

.section-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  margin-bottom: 18px;
}

.content-section p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 10px;
  font-size: 15px;
}

p {
  color: var(--muted);
}

small {
  color: var(--muted);
}

/* ===== LIST ITEMS ===== */
.content-section ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-section li {
  color: #000000;
  padding: 8px 14px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.content-section li:hover {
  background: rgba(59, 130, 246, 0.14);
}

/* ===== CHIPS ===== */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip {
  background: rgba(59, 130, 246, 0.1);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  color: #1d4ed8;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

/* ===== TWO COLUMN GRID ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== INNER CARDS ===== */
.inner-card {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: background 0.25s;
}

.inner-card:hover {
  background: rgba(59, 130, 246, 0.1);
}

.inner-card-icon  { font-size: 1.6rem; margin-bottom: 10px; }
.inner-card-title { font-weight: 700; font-size: 14px; color: #0f172a; margin-bottom: 6px; }
.inner-card-text  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== TOPICS GRID ===== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.topic-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(59, 130, 246, 0.07);
  border: 1.5px solid rgba(59, 130, 246, 0.18);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
  cursor: default;
}

.topic-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
  background: rgba(59, 130, 246, 0.13);
}

.topic-icon { font-size: 1.4rem; }
.topic-name { font-size: 13px; color: #0f172a; font-weight: 600; line-height: 1.3; }

/* ===== FEES TABLE ===== */
.fees-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.fees-table thead tr {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.fees-table th {
  padding: 13px 18px;
  text-align: left;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.fees-table th:first-child { border-radius: 10px 0 0 0; }
.fees-table th:last-child  { border-radius: 0 10px 0 0; }

.fees-table tbody tr {
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: background 0.2s;
}

.fees-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.07);
}

.fees-table td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--muted);
}

.fees-table td:first-child {
  color: #0f172a;
  font-weight: 600;
}

.fees-table td:last-child {
  color: #1d4ed8;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}

/* ===== DATES TIMELINE ===== */
.dates-timeline {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.date-item {
  display: flex;
  align-items: stretch;
}

.date-left {
  width: 120px;
  flex-shrink: 0;
  text-align: right;
  padding: 2px 20px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.date-day {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1;
}

.date-day--highlight { color: #1d4ed8; font-size: 1.9rem; }

.date-month {
  font-size: 11px;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.date-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 32px;
}

.date-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 3px solid white;
  box-shadow: 0 0 0 2px #3b82f6;
  flex-shrink: 0;
  margin-top: 4px;
}

.date-dot--highlight {
  background: #1d4ed8;
  box-shadow: 0 0 0 2px #1d4ed8, 0 0 14px rgba(59, 130, 246, 0.5);
}

.date-line {
  flex: 1;
  width: 2px;
  background: rgba(59, 130, 246, 0.2);
  margin-top: 4px;
}

.date-item:last-child .date-line {
  display: none;
}

.date-right {
  flex: 1;
  padding: 2px 0 32px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.date-event         { font-size: 15px; font-weight: 700; color: #000000; }
.date-event--highlight { color: #1d4ed8; }
.date-note          { font-size: 12px; color: #4b5563; margin-top: 3px; }

/* ===== REGISTER SECTION ===== */
#register-section {
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
  text-align: center;
}

#register-section .section-eyebrow {
  display: block;
  margin-bottom: 8px;
}

#register-section h2 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

#register-section > p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* ===== FORM ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 20px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 10px;
  color: #3b82f6;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.form-field input,
.form-field select {
  background: rgba(241, 245, 249, 0.8);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  padding: 11px 14px;
  color: #0f172a;
  font-size: 14px;
  font-family: 'Instrument Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.form-field select option {
  background: #fff;
  color: #0f172a;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Instrument Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
}

.success-msg {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  border-radius: 12px;
  padding: 20px;
  color: #166534;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(59, 130, 246, 0.2);
  padding: 40px 20px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: auto;
}

.footer-conf {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 10px;
}

.footer-sub  { font-size: 13px; color: #94a3b8; line-height: 1.8; }
.footer-line { width: 60px; height: 1px; background: rgba(59,130,246,0.25); margin: 22px auto; }
.footer-copy { font-size: 12px; color: #64748b; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav        { display: none; }
  .menu-btn  { display: block; }
  .header-inner  { padding: 0 16px; }
  .countdown-bar { gap: 20px; padding: 20px 16px; }
  .content-container { padding: 30px 14px 50px; }
  .content-section   { padding: 24px; }
  #register-section  { padding: 28px 20px; }
  .two-col           { grid-template-columns: 1fr; }
  .form-grid         { grid-template-columns: 1fr; }
}

/* ===== SPEAKER SECTION ===== */
.speaker-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(59,130,246,0.2);
  border-radius: 18px;
  padding: 28px;
  margin-top: 8px;
}

.speaker-img-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  border: 2.5px solid rgba(59,130,246,0.35);
  box-shadow: 0 8px 24px rgba(59,130,246,0.18);
  background: rgba(30,41,59,0.6);
}

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

.speaker-info { flex: 1; }

.speaker-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 6px;
  font-family: 'Schibsted Grotesk', sans-serif;
}

.speaker-role {
  font-size: 0.92rem;
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 4px;
}

.speaker-org {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.speaker-note {
  font-size: 0.85rem;
  color: #64748b;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #3b82f6;
  padding: 8px 14px;
  border-radius: 0 8px 8px 0;
  margin: 0;
}

@media (max-width: 600px) {
  .speaker-card { flex-direction: column; align-items: center; text-align: center; }
  .speaker-note { text-align: left; }
}

/* ===== ADVISORY COMMITTEE ===== */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.committee-card {
  background: #ffffff;
  border: 1.5px solid rgba(59,130,246,0.18);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.committee-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,130,246,0.38);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.committee-icon { font-size: 1.6rem; margin-bottom: 10px; }
.committee-name { font-size: 0.98rem; font-weight: 700; color: #000000; margin-bottom: 6px; }
.committee-role { font-size: 0.82rem; color: #3b82f6; font-weight: 600; margin-bottom: 4px; }
.committee-org  { font-size: 0.8rem; color: #4b5563; line-height: 1.5; }

/* ===== PATRONS ===== */
.patrons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.patron-card {
  background: #ffffff;
  border: 1.5px solid rgba(59,130,246,0.18);
  border-radius: 12px;
  padding: 16px 22px;
  min-width: 180px;
  flex: 1 1 180px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.patron-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59,130,246,0.38);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.patron-name { font-size: 0.93rem; font-weight: 700; color: #000000; margin-bottom: 4px; }
.patron-role { font-size: 0.8rem; color: #3b82f6; font-weight: 600; }

/* ===== COMMITTEE MEMBERS ===== */
.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.member-pill {
  background: rgba(59,130,246,0.1);
  border: 1.5px solid rgba(59,130,246,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  color: #212222;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.member-pill:hover {
  background: rgba(59,130,246,0.2);
  border-color: rgba(59,130,246,0.5);
  color: #070c10;
}

/* ===== COMMITTEE CARD WITH PHOTO ===== */
.committee-card--photo .committee-photo-wrap {
  width: 110px;
  height: 125px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2.5px solid rgba(59,130,246,0.45);
  box-shadow: 0 6px 18px rgba(15,23,42,0.28);
}

.committee-card--photo .committee-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

#speakers .committee-card {
  background: #ffffff;
  border-color: rgba(59,130,246,0.18);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

#speakers .committee-card .committee-name {
  color: #000000;
}

#speakers .committee-card .committee-role {
  color: #3b82f6;
}

#speakers .committee-card .committee-org {
  color: #4b5563;
}

#speakers .committee-card .speaker-talk {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #3b82f6;
  font-weight: 600;
  line-height: 1.4;
}

#speakers .committee-card .speaker-talk span {
  color: #000000;
  font-weight: 500;
}

