/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root{
  --bg:#0a0a0a;
  --paper:#faf8f3;
  --text:#111;
  --text-on-dark:#fff;
  --muted:#666;
  --gold-start:#d4af37;
  --gold-end:#f4e5b8;
  --glass: rgba(255,255,255,.08);
}
body{
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
.container{ max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header{
  position: fixed; inset: 0 0 auto 0;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
  z-index:1000; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-content{ display:flex; align-items:center; gap:16px; justify-content:space-between; }
.logo{ height: 50px; width:auto; }
.nav{ display:flex; align-items:center; gap:16px; }
.nav-link{
  color:#fff; text-decoration:none; font-size:14px; opacity:.8; padding:8px 10px; border-radius:6px; transition:.25s;
}
.nav-link:hover{ opacity:1; background: rgba(255,255,255,.06); }
.desktop-only{ display:inline-block; }
@media (max-width: 860px){ .desktop-only{ display:none; } .nav-link{ display:none; } }

/* Buttons */
.btn{
  display:inline-block; padding:10px 20px; border-radius:5px;
  text-decoration:none; font-weight:700; letter-spacing:.02em; border:0; cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn-primary, .btn-hero, .btn-ticket{
  background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%); color:#000;
  box-shadow: 0 6px 18px rgba(212,175,55,.24);
}
.btn-primary:hover, .btn-hero:hover, .btn-ticket:hover{ transform: translateY(-2px); }
.btn-ghost{
  background: transparent; color:#fff; border:1px solid rgba(255,255,255,.35);
}
.btn-ghost:hover{ transform: translateY(-2px); background: rgba(255,255,255,.06); }
.btn-hero{ padding:16px 40px; font-size:18px; }
.btn-block{ width:100%; display:block; }

/* Hero */
.hero{ position:relative; min-height: 90vh; display:grid; place-items:center; overflow:hidden; margin-top:64px; background:#000; }
.hero-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit: cover; object-position: center;
 mix-blend-mode: screen;
}
.hero-container{ position: absolute; z-index:1; color:#fff; text-align:right; right: 10%;}
.hero-kicker{
  display:inline-block; padding:6px 12px; border-radius:999px;
  font-size:12px; letter-spacing:.12em; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15);
  margin-bottom:14px;
}
.hero-title{
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif;
  font-weight: 400; /* Yuji Syukuは通常1ウェイトなので軽めでOK */
  letter-spacing: 0.03em; /* 和文タイトルに少し余白を入れると整う */
  line-height: 1.2;
  color:#fff; text-shadow: 0 8px 30px rgba(0,0,0,.45);
  font-size: 3rem;
  margin-bottom: 50px;
}
.hero-subtitle{
  font-size: 2rem; opacity:.92; margin: 10px 0 20px;
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif;
  font-weight: 400; /* Yuji Syukuは通常1ウェイトなので軽めでOK */
  letter-spacing: 0.03em; /* 和文タイトルに少し余白を入れると整う */
  line-height: 1.2;
  color:#fff; text-shadow: 0 8px 30px rgba(0,0,0,.45);
}
.sp-br{ display:none; }
@media (max-width: 520px){ .sp-br{ display:inline; } }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap;justify-content: right;}
.hero-gradient-bottom{
  position:absolute; left:0; right:0; bottom:-1px; height:120px;
}
/* （任意）ヘッダー右上の「チケットを購入」をスマホでも表示したい場合 */
@media (max-width: 860px) {
  .desktop-only { display: inline-block; } /* 既存では非表示。これで表示 */
}



/* Section chrome */
.section-eyebrow{
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif;
  font-weight:700; letter-spacing:.18em; font-size:12px; color:#d4af37; text-align:center; margin-bottom:6px;
}
.section-title{
  font-weight:900; text-align:center; margin-bottom:36px; line-height:1.3; letter-spacing:.02em; color: #333;
  font-size: clamp(26px, 4.4vw, 40px);
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif;
}
.section-title-heavy{
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif;
  color:#d4af37;
}
.section-title.gold{ color: #d4af37; }
.section-title.white{ color:#fff; }

/* Concept */
/* === Concept 2カラムレイアウト === */
.concept {
  padding: 56px 0;
  background-color: #000;
}

.concept-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.concept-aside {
  position: relative;
  padding: 24px 0;
}

/* 中央の縦仕切り線 */
.concept-aside::after {
  content: "";
  position: absolute;
  top: 0;
  right: -24px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .22);
}

.concept-logo {
  width: 240px;
  max-width: 100%;
  margin: 0;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.08));
}

.concept-body { color: #fff; }

/* このセクションだけ左揃えに上書き */
.concept .section-eyebrow,
.concept .section-title { text-align: left; }

/* テキスト幅を抑えて読みやすく */
.concept .prose { max-width: 840px; text-align: left; }

/* レスポンシブ：1カラムへ */
@media (max-width: 900px) {
  .concept-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .concept-aside::after { display: none; }
  .concept .section-eyebrow,
  .concept .section-title { text-align: center; }
  .concept .prose { margin: 0 auto; text-align: left; }
}

.concept-logo{ width: 220px; margin: 0 auto 24px; filter: drop-shadow(0 8px 20px rgba(0,0,0,.08)); }
.concept-sub{
  font-family: "Yuji Syuku", "Yuji Syuku Fallback", serif; font-weight:700; font-size:18px; margin: 20px 0 6px; color:#fff;
}
.prose p{ font-size:16px; color:#fff; margin-bottom:12px; }

/* Event Details */
.event-details{
  padding: 120px 0 60px; position:relative; background: var(--paper);
}
.event-details::before{
  content:""; position:absolute; inset:0;
  background-image: url("../images/gold-silver-foil-bg.jpg");
  background-size: cover; background-position: center; opacity: .28; z-index:0;
}
.event-details .container{ position:relative; z-index:1; }
.event-grid{ display:grid; grid-template-columns: 1fr; gap: 28px; }
.event-item{ display:flex; flex-direction:column; gap:12px; }
.event-card{
  border-radius: 10px; overflow:hidden; aspect-ratio:12 / 9; display:flex; align-items:center; justify-content:center;
}
.gradient-card{ background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 100%); }
.event-card-content{ text-align:center; color:#fff; }
.event-number{ font-size: 72px; font-weight:900; line-height:1; letter-spacing:.04em; }
.event-month{ font-size: 18px; font-weight:700; letter-spacing:.22em; }
.event-hybrid{ font-size: 48px; font-weight: 900; line-height:1; letter-spacing:.02em; }
.event-type{ font-size: 18px; font-weight: 800; letter-spacing:.22em; }
.venue-card{ background:#000; }
.venue-image{ width:100%; height:100%; object-fit:cover; }
.event-details-text{ font-size:14px; line-height:1.7; }
.venue-name{ font-weight:800; font-size:16px; }
.event-note{ font-size:12px; color:#666; }
.event-meta{
  margin-top: 20px; font-size: 14px; color:#333; display:grid; gap:4px;
}
.meta-label{ color:#222; font-weight:700; }

@media (min-width: 768px){
  .event-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Benefits */
.benefits{ padding:64px 0; position:relative; background: var(--paper); }
.benefits::before{
  content:""; position:absolute; inset:0; background-image:url("../images/gold-silver-foil-bg.jpg");
  background-size:cover; background-position:center; opacity:.24; z-index:0;
}
.benefits .container{ position:relative; z-index:1; }
.benefits-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
.benefit-card{
  background: #222; border:1px solid rgba(0,0,0,.04);border: 2.5px solid var(--gold-start);
  border-radius:16px; padding:28px; box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover{ transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.12); }
.benefit-icon{ font-size:44px; margin-bottom:10px; }
.benefit-title{ font-size:20px; font-weight:900; margin-bottom:8px; color: #d4af37; }
.benefit-title span{ font-size:14px; font-weight:400; margin-bottom:0px; color: #d4af37;}
.benefit-text{ font-size:14px; color:#fff; line-height:1.9; }
@media (min-width: 768px){ .benefits-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .benefits-grid{ grid-template-columns: repeat(3, 1fr); } }

/* Program */
.program{ padding:64px 0; position:relative; background: var(--paper); }
.program::before{
  content:""; position:absolute; inset:0; background-image:url("../images/gold-silver-foil-bg.jpg");
  background-size:cover; background-position:center; opacity:.22; z-index:0;
}
.program .container{ position:relative; z-index:1; }
.program-placeholder{
  min-height: 280px; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.6); border:1px dashed rgba(0,0,0,.1); border-radius:16px;
}
.coming-soon{ font-size:40px; font-weight:900; color:#d05050; }
.program-note{ text-align:center; margin-top: 14px; color:#444; }

/* Tickets */
.tickets{ padding:64px 0; position:relative; background: var(--paper); }
.tickets::before{
  content:""; position:absolute; inset:0; background-image:url("../images/gold-silver-foil-bg.jpg");
  background-size:cover; background-position:center; opacity:.2; z-index:0;
}
.tickets .container{ position:relative; z-index:1; }
.tickets-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
.ticket-card{
  background:#111; border-radius:16px; padding:28px;
  border:1px solid rgba(0,0,0,.06); box-shadow: 0 8px 22px rgba(0,0,0,.08);
  position:relative; transition: transform .2s ease, box-shadow .2s ease;
}
.ticket-card:hover{ transform: translateY(-4px); box-shadow: 0 14px 26px rgba(0,0,0,.12); }
.ticket-featured{ border:2.5px solid var(--gold-start); }
.ticket-badge{
  position:absolute; top:-12px; right:24px; padding:6px 16px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end)); color:#000; font-size:18px; font-weight:900;
}
.ticket-header{ margin-bottom:18px; }
.ticket-title{ font-size:22px; font-weight:900; margin-bottom:6px; letter-spacing:.02em; color:#d4af37;}
.ticket-price{ font-size:34px; font-weight:900; color: #d4af37; }
.ticket-price span{ font-size:16px; font-weight:400; color: #d4af37; }
.ticket-features{ list-style:none; margin: 14px 0 20px; }
.ticket-features li{ padding:12px 0; border-bottom:1px solid #eee; font-size:16px; font-weight: bold; display: flex;justify-content: left;gap: 20px; color: #fff;}
.ticket-features li:last-child{ border-bottom:none; }
.ticket-features span{font-size: 14px; font-weight: 400;}
@media (min-width: 768px){ .tickets-grid{ grid-template-columns: repeat(2, 1fr); } }
.btn-ticket-flex {
  display: flex;
  gap: 10px;
}

/* Sponsors */
.sponsors{ padding:64px 0; background: var(--paper);}

.sponsors::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/gold-silver-foil-bg.jpg);
  background-size: cover;
  background-position: center;
  opacity: .2;
  z-index: -1;
}

.sponsors-section{ margin-bottom:64px; }
.sponsor-tier{ margin-bottom:40px; }
.sponsor-tier-title{
  font-size:16px; font-weight:900; color: #d4af37; margin-bottom:16px; text-align:center; letter-spacing:.2em; border-radius: 5px; background: #333;
}
.sponsor-logos{
  display:flex; flex-wrap:wrap; gap:20px; justify-content:center; align-items:center;
}
.sponsor-placeholder{
  background:#fff; border:2px solid #e5e5e5; border-radius:10px; padding:10px;
  display:flex; align-items:center; justify-content:center; color:#999; font-weight:800; width:100%; max-width:400px;
}
.sponsor-placeholder-medium{ max-width:300px; padding:5px; }
.sponsor-placeholder-small{ max-width:250px; padding:5px; }

/* FAQ */
.faq{ padding:64px 0; position:relative; background:#000; }
.faq-bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.faq-overlay{ position:absolute; inset:0; z-index:1; }
.faq-container{ position:relative; z-index:2; }
.faq-list{ max-width: 820px; margin:0 auto; }
.faq-item{ background:#fff; border: 2px solid #d4af37; border-radius:5px; margin-bottom:14px; overflow:hidden; }
.faq-question{
  width:100%; padding:18px 22px; background:none; border:none; color:#000; font-size:16px; font-weight:800;
  text-align:left; cursor:pointer; display:flex; justify-content:space-between; align-items:center; transition: background .2s ease;
}
.faq-question:hover{ background: rgba(255,255,255,.06); }
.faq-icon{ font-size:24px; font-weight:300; transition: transform .25s ease; }
.faq-item.active .faq-icon{ transform: rotate(45deg); }
.faq-answer{ max-height: 0; overflow:hidden; transition: max-height .3s ease; }
.faq-item.active .faq-answer{ max-height: 400px; }
.faq-answer p{ padding: 0 22px 18px; color: #000; font-size:14px; line-height:1.9; }

/* Notes (FAQ下の注意事項) */
.faq-notes{ max-width: 820px; margin: 28px auto 0; background: var(--glass); border:1px solid rgba(255,255,255,.14); border-radius:12px; padding:20px; color:#fff; }
.notes-title{ font-weight:900; letter-spacing:.1em; margin-bottom:8px; }
.notes-columns
.notes-columns h4{ font-family: "Shippori Mincho", serif; font-weight:700; margin-bottom:8px; margin-top:20px;}
.notes-columns ul{ padding-left: 1.2em; }
.notes-columns li{ margin: .3em 0;font-size: 14px;}

/* Footer */
.footer{ background:#000; color:#fff; padding:48px 0 24px; }
.footer-content{ display:grid; grid-template-columns:1fr; gap:28px; margin-bottom:28px; }
.footer-logo-img{ height:40px; width:auto; margin-bottom:10px; }
.footer-tagline{ font-size:14px; color: rgba(255,255,255,.75); }
.footer-links{ display:flex; flex-direction:column; gap:10px; }
.footer-link{ color: rgba(255,255,255,.7); text-decoration:none; font-size:14px; transition: color .2s; }
.footer-link:hover{ color: #d4af37; }
.footer-social{ display:flex; gap:12px; justify-content: flex-end;}
.social-link{
  width:40px; height:40px; border-radius:50%; background: rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; color:#fff; transition:.2s;
}
.social-link:hover{ background: var(--gold-start); transform: translateY(-2px); }
.footer-bottom{ text-align:center; padding-top:18px; border-top:1px solid rgba(255,255,255,.1); font-size:13px; color: rgba(255,255,255,.55); }
@media (min-width: 768px){
  .footer-content{ grid-template-columns: 1fr 1fr 1fr; }
  .footer-links{ flex-direction:row; gap:22px; }
}

/* Mobile Fixed Button */
.mobile-fixed-btn{
  position: fixed; left:0; right:0; bottom:0; padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 100%); backdrop-filter: blur(10px);
  z-index:999; display:block;
}


/* Program Timeline Styles */
.program-timeline-wrapper{
  max-width: 1200px;
  margin: 0 auto;
  background: #111;
  border: 2.5px solid var(--gold-start);
  border-radius: 12px;
  padding: 50px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

/* ... program-header, program-event-title, program-info は変更なし ... */
.program-header {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.program-event-title {
  font-family: "Yuji Syuku", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-start);
  margin-bottom: 4px;
}

.program-timeline {
  position: relative;
  /* コンテンツ全体を右にずらす padding-left を削除 */
  /* padding-left: 70px; */ 
}

/* タイムラインの縦線 (中央の線) */
.program-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  /* 縦線の位置: 画面左端から 85px の位置に設定 */
  width: 2px;
  height: 100%;
  background: var(--gold-start);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  /* コンテンツを縦線に合わせて右にずらす */
  margin-left: 20px; 
}

/* タイムスタンプ */
.timeline-time {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-end);
  letter-spacing: .05em;
}

/* タイムラインの丸い点 */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-start);
  border: 4px solid #111;
  z-index: 1;
}

.timeline-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-end);
  margin-bottom: 4px;
  /* コンテンツ開始位置の調整を削除 (margin-left: 100px で対応) */
  /* padding-left: 15px; */ 
}

.timeline-meta {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 12px;
  /* padding-left: 15px; */
}

.timeline-speaker {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  /* margin-left: 15px; */
}

.speaker-photo {
  width: 100px;
  height: 100px;
  min-width: 70px;
  border-radius: 50%;
  background: #999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Speaker Section Styles */
.speaker {
  padding: 80px 0;
  position: relative;
  background: var(--paper); /* 背景色は #faf8f3 */
}

/* 背景テクスチャの再現 */
.speaker::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/gold-silver-foil-bg.jpg"); /* 既存のテクスチャを流用 */
  background-size: cover;
  background-position: center;
  opacity: 0.35; /* 添付画像のように強めに */
  z-index: 0;
}

.speaker .container {
  position: relative;
  z-index: 1;
}

/* グリッドレイアウト (3x3) */
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* カード本体のスタイル */
.speaker-card {
  background: #fff; /* 白い背景 */
  border: 2px solid var(--gold-start); /* ゴールドの枠線 */
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

/* 登壇者写真（円形）のコンテナ */
.speaker-photo-circle {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: #ccc; /* 添付画像の薄い灰色を再現 */
  overflow: hidden;
  margin-right: 15px; /* テキストとの間隔 */
  float: left; /* テキストを右に回り込ませる */
}

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

.speaker-text-content {
  /* floatをクリアする要素 */
  overflow: auto; 
}

/* 登壇者名 */
.speaker-name {
  font-size: 16px;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
  margin-top: 5px; /* 写真の縦位置と合わせるための調整 */
  margin-bottom: 2px;
}

/* 役職 */
.speaker-title-card {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-start);
  margin-bottom: 12px;
}

.speaker-discussion{
  display: grid;
}

.timeline-speaker-grid{
  justify-content: space-evenly;
  align-items: flex-start;
}

/* 登壇者紹介文 */
.speaker-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  clear: both; /* float解除 */
  margin-top: 10px;
}


.program-timeline-small-p{
  text-align: center;
  margin-top: 20px;
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
  .speaker-grid {
    grid-template-columns: repeat(2, 1fr); /* 2カラム */
  }
}

@media (max-width: 768px) {
  .speaker-grid {
    grid-template-columns: 1fr; /* 1カラム */
    gap: 16px;
  }
  .speaker-card {
    padding: 16px;
  }
  .speaker-photo-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    margin-right: 12px;
  }
  .speaker-name {
    font-size: 15px;
  }
  .speaker-title-card {
    font-size: 12px;
  }
  .speaker-bio {
    font-size: 13px;
  }
}

@media (min-width: 768px){ .mobile-fixed-btn{ display:none; } }

/* Scroll-in animation */
.scroll-animate{ opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.scroll-animate.visible{ opacity:1; transform: translateY(0); }









/* ============================================= レスポンシブ (≤520px) ======================================== */


@media (max-width: 520px) {

  .logo {
    height: 40px;
  }

  .hero {
    display: flex;
    flex-direction: column; /* 上から順に積む */
    align-items: center;
    text-align: center;
    position: relative;
  }

  .hero-bg {
    position: static;       /* 背景扱いを解除 */
    width: 100%;
    height: 45vh;
    object-fit: cover;
    display: block;
    object-position: left center; /* ←左を基準に */
  }

  .hero-container {
    position: static;       /* 重なりを解除 */
    background: #000;       /* 黒背景にする（画像から独立） */
    color: #fff;
    padding: 40px 20px;
    width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 16px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: left;
  }

  .hero-cta .btn-hero {
display: none;
  }

  .ticket-price {
    font-size: 18px;
}
.ticket-price span {
  font-size: 14px;
}

.btn-ticket-flex{
  display: inline-grid;
  gap: 10px;
}

  .sponsor-placeholder-small {
    max-width: 150px;
}

.program-timeline-wrapper {
  padding: 20px;

}

.timeline-title {
  font-size: 18px;
}

.speaker-title{
  font-size: 14px;
}

.timeline-speaker-grid{
  display: block;
  gap: 10px;
}

.speaker-discussion {
  margin: 20px 0 20px 0;
  display: flex;
}


.speaker-photo {
  width: 60px;
  height: 60px;
  min-width: 60px;
}

}

