/* ============================================================
   Governing for Wellbeing — DEEP R2I 2026
   Color palette from conference poster
   ============================================================ */

:root {
  --teal:       #3DC4C7;
  --teal-dark:  #28A9AC;
  --teal-deep:  #1A8B8E;
  --mint-bg:    #EDF9F9;
  --mint-mid:   #C8EEEE;
  --black:      #1A1A1A;
  --gray-dark:  #374151;
  --gray-mid:   #6B7280;
  --gray-light: #E5E7EB;
  --white:      #FFFFFF;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-w:      1140px;
  --radius:     8px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- Layout helpers ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 4rem; }
.section-sm { padding-block: 2.5rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-nav.scrolled {
  border-bottom-color: var(--teal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1.2;
}
.nav-brand span { color: var(--teal-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-links a:hover { background: var(--mint-bg); color: var(--teal-deep); }
.nav-links a.active { color: var(--teal-deep); font-weight: 600; }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.nav-lang a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  color: var(--teal-deep);
  background: var(--white);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-lang a.current {
  background: var(--teal);
  color: var(--white);
}
.nav-lang a:hover:not(.current) { background: var(--mint-bg); }

.nav-register {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: var(--radius);
  padding: 0.4rem 1rem !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.15s !important;
}
.nav-register:hover { background: var(--teal-deep) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    gap: 0.25rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.5rem 0.75rem; }
}

/* ============================================================
   HERO — Split layout
   ============================================================ */
.hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 0;
  padding-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--teal-deep);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mint-bg);
  border: 1.5px solid var(--mint-mid);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep);
}

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

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: var(--white); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 2px solid var(--teal);
}
.btn-outline:hover { background: var(--mint-bg); text-decoration: none; }

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-bg);
  padding: 2rem 1.5rem;
  min-height: 360px;
}
.hero-image img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-text {
    padding: 3rem 1.5rem 2rem;
  }
  .hero-image {
    min-height: 240px;
    order: -1;
  }
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--mint-bg);
  border-top: 2px solid var(--mint-mid);
  border-bottom: 2px solid var(--mint-mid);
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.fact-chip {
  background: var(--white);
  border: 1.5px solid var(--mint-mid);
  border-radius: var(--radius);
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}
.fact-chip strong { display: block; color: var(--teal-deep); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.1rem; }

.about-body {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}
.about-text p { color: var(--gray-dark); margin-bottom: 0.75rem; line-height: 1.7; }

.org-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  border-top: 1px solid var(--mint-mid);
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}
.org-bar-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  white-space: nowrap;
}
.org-bar-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.org-bar-logos a { display: flex; align-items: center; }
.org-bar-logos img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.org-logo-text {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-dark);
}

@media (max-width: 640px) {
  .about-body { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   SESSIONS TEASER
   ============================================================ */
.sessions-teaser h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.panel-teasers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.panel-teaser-card {
  background: var(--mint-bg);
  border: 1.5px solid var(--mint-mid);
  border-top: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.panel-teaser-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(61,196,199,0.15);
  text-decoration: none;
}
.panel-teaser-card .panel-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
}
.panel-teaser-card .panel-time {
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 0.4rem;
}
.panel-teaser-card .panel-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

/* ============================================================
   LOGO STRIP
   ============================================================ */
.logo-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}
.logo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding-block: 2rem;
}
.logo-strip-inner img {
  height: 36px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.logo-strip-inner img:hover { opacity: 1; filter: none; }
/* Text fallback when no logo image */
.logo-text {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  padding-block: 3rem;
  color: var(--white);
}
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ============================================================
   AGENDA PAGE
   ============================================================ */
.agenda-timeline {
  display: flex;
  overflow-x: auto;
  gap: 0;
  margin-bottom: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.timeline-block {
  flex: 1;
  min-width: 80px;
  text-align: center;
  padding: 0.6rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-right: 1px solid var(--white);
  color: var(--white);
}
.timeline-block:last-child { border-right: none; }
.timeline-block.panel-block { background: var(--teal); }
.timeline-block.break-block { background: var(--teal-dark); opacity: 0.7; }
.timeline-block.lunch-block { background: var(--gray-mid); }
.timeline-block.open-block  { background: var(--black); }
.timeline-block .tl-time { display: block; opacity: 0.85; font-weight: 400; font-size: 0.65rem; }

.agenda-section { margin-bottom: 1.5rem; }

.agenda-card {
  border: 1.5px solid var(--gray-light);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
}
.agenda-card.break-card { border-left-color: var(--gray-light); }
.agenda-card.open-card  { border-left-color: var(--black); }

.agenda-card-header {
  padding: 1rem 1.25rem 0.75rem;
  background: var(--white);
}
.agenda-card-header .session-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.agenda-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.agenda-card-header .session-theme {
  font-style: italic;
  color: var(--gray-dark);
  font-size: 0.88rem;
  line-height: 1.5;
}

.agenda-speakers {
  background: var(--mint-bg);
  border-top: 1px solid var(--mint-mid);
  padding: 0.75rem 1.25rem;
}
.agenda-speakers ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.agenda-speakers li {
  font-size: 0.85rem;
  color: var(--gray-dark);
}
.agenda-speakers li a {
  color: var(--teal-deep);
  font-weight: 600;
}
.agenda-speakers li .speaker-role {
  color: var(--gray-mid);
}
.agenda-speakers li .badge-video {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  margin-left: 0.3rem;
  vertical-align: middle;
}

.break-card .agenda-card-header {
  background: var(--gray-light);
}
.break-card .agenda-card-header .session-time { color: var(--gray-mid); }
.break-card .agenda-card-header h3 { color: var(--gray-dark); font-size: 0.9rem; }

/* ============================================================
   SPEAKERS PAGE
   ============================================================ */
.panel-group { margin-bottom: 3.5rem; }

.panel-group-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--teal);
}
.panel-group-header h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.panel-group-header .panel-time-label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-weight: 500;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .speakers-grid { grid-template-columns: 1fr; }
}

.speaker-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.speaker-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.speaker-card-top {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

/* Avatar */
.speaker-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}
.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-info { flex: 1; min-width: 0; }
.speaker-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}
.speaker-title {
  font-size: 0.78rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 0.1rem;
}
.speaker-org {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.3;
}
.badge-video {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-top: 0.3rem;
}

.speaker-card-bio {
  padding: 0.75rem 1.25rem 1.25rem;
}
.speaker-card-bio .bio-text {
  font-size: 0.82rem;
  color: var(--gray-dark);
  line-height: 1.6;
}
.bio-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bio-toggle {
  background: none;
  border: none;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.3rem 0;
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.bio-toggle:hover { text-decoration: underline; }
.bio-toggle .arrow { transition: transform 0.2s; display: inline-block; }
.bio-toggle.expanded .arrow { transform: rotate(180deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding-block: 2.5rem;
  font-size: 0.82rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
}
.footer-brand small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-links a:hover { color: var(--teal); text-decoration: none; }

/* ============================================================
   AGENDA v2 — Two-column layout with vertical timeline
   ============================================================ */

/* Enhanced page header for agenda */
.agenda-header-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.agenda-header-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.agenda-header-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.2rem 0.8rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.92);
}
.agenda-moderator-line {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
}
.agenda-moderator-line strong {
  color: var(--white);
  font-weight: 600;
}

/* Two-column layout wrapper */
.agenda-layout-v2 {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0 2.75rem;
  align-items: start;
  padding-block: 2.5rem 4rem;
}
@media (max-width: 900px) {
  .agenda-layout-v2 {
    grid-template-columns: 1fr;
    padding-block: 2rem 3rem;
  }
  .agenda-sidenav-v2 { display: none; }
}

/* Sticky sidebar */
.agenda-sidenav-v2 {
  position: sticky;
  top: 82px;
}
.sidenav-v2-label {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}
.sidenav-v2-list {
  list-style: none;
}
.sidenav-v2-list li + li { margin-top: 0.05rem; }
.snav2-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.36rem 0.55rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
  color: var(--gray-dark);
  font-size: 0.78rem;
  line-height: 1.3;
}
.snav2-link:hover {
  background: var(--mint-bg);
  color: var(--teal-deep);
  text-decoration: none;
}
.snav2-link.is-active {
  background: var(--mint-bg);
  color: var(--teal-deep);
  font-weight: 600;
}
.snav2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.snav2-link--panel .snav2-dot  { background: var(--teal); }
.snav2-link--open .snav2-dot   { background: var(--teal-deep); }
.snav2-link--break .snav2-dot  { background: var(--gray-light); border: 1.5px solid var(--gray-mid); width: 7px; height: 7px; }
.snav2-link--lunch .snav2-dot  { background: var(--gray-mid); }
.snav2-link--reg .snav2-dot    { background: var(--gray-light); border: 1.5px solid var(--gray-mid); width: 7px; height: 7px; }
.snav2-time {
  font-size: 0.68rem;
  color: var(--gray-mid);
  flex-shrink: 0;
  min-width: 32px;
  font-variant-numeric: tabular-nums;
}
.snav2-name { font-weight: 500; }

.sidenav-v2-register {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-light);
  padding-inline: 0.25rem;
}
.sidenav-v2-register .btn {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* ---- Vertical timeline ---- */
.agenda-sessions-v2 {
  position: relative;
}
.agenda-sessions-v2::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 0.5rem;
  bottom: 1rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: 99px;
}

/* Individual session wrapper */
.asess {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.25rem;
}

/* Timeline dot */
.asess::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 1.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  z-index: 1;
}
.asess--open::before,
.asess--discussion::before,
.asess--closing::before {
  border-color: var(--teal-deep);
  background: var(--mint-bg);
}
.asess--break::before,
.asess--lunch::before,
.asess--reg::before {
  width: 10px;
  height: 10px;
  left: 5px;
  top: 0.75rem;
  border-color: var(--gray-mid);
  border-width: 2px;
  background: var(--white);
}

/* Session card — full panel style */
.asess-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.18s;
}
.asess-card:hover {
  box-shadow: 0 4px 20px rgba(61,196,199,0.13);
}
.asess--open .asess-card,
.asess--discussion .asess-card,
.asess--closing .asess-card {
  border-left-color: var(--teal-deep);
}

/* Compact card for breaks/lunch/registration */
.asess--break .asess-card,
.asess--lunch .asess-card,
.asess--reg .asess-card {
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--gray-light);
  background: transparent;
  box-shadow: none;
}
.asess--break .asess-card:hover,
.asess--lunch .asess-card:hover,
.asess--reg .asess-card:hover {
  box-shadow: none;
}

/* Card header */
.asess-header {
  padding: 1rem 1.25rem 0.9rem;
}
.asess-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}
.asess-tag {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--mint-bg);
  color: var(--teal-deep);
  padding: 0.15rem 0.65rem;
  border-radius: 100px;
  border: 1px solid var(--mint-mid);
}
.asess--open .asess-tag,
.asess--discussion .asess-tag,
.asess--closing .asess-tag {
  background: rgba(26,139,142,0.08);
  border-color: rgba(26,139,142,0.25);
  color: var(--teal-deep);
}
.asess-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-mid);
  font-variant-numeric: tabular-nums;
}
.asess-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}
.asess-desc {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0;
}

/* Speaker list */
.asess-speakers {
  border-top: 1px solid var(--mint-mid);
  background: var(--mint-bg);
  padding: 0.75rem 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.asess-speakers li {
  font-size: 0.83rem;
  color: var(--gray-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.asess-speakers li::before {
  content: '·';
  color: var(--teal);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.asess-speakers a {
  color: var(--teal-deep);
  font-weight: 600;
}
.asess-speakers .sp-role {
  color: var(--gray-mid);
  font-size: 0.79rem;
}
.badge-video {
  display: inline-block;
  background: var(--gray-dark);
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 700;
  padding: 0.1rem 0.42rem;
  border-radius: 100px;
  margin-left: 0.25rem;
  vertical-align: middle;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Compact break/lunch/registration rows */
.asess--break .asess-header,
.asess--lunch .asess-header,
.asess--reg .asess-header {
  padding: 0.52rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.asess--break .asess-title,
.asess--lunch .asess-title,
.asess--reg .asess-title {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-dark);
  margin: 0;
  font-family: var(--font-body);
}
.asess--break .asess-time,
.asess--lunch .asess-time,
.asess--reg .asess-time {
  margin-left: auto;
  color: var(--gray-mid);
}

/* Mobile */
@media (max-width: 640px) {
  .agenda-sessions-v2::before { left: 7px; }
  .asess { padding-left: 2rem; }
  .asess::before { left: 1px; }
  .asess--break::before,
  .asess--lunch::before,
  .asess--reg::before { left: 3px; }
  .asess-header { padding: 0.85rem 1rem 0.72rem; }
  .asess-speakers { padding: 0.65rem 1rem; }
  .asess-title { font-size: 0.96rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
