/* =============================================================
   WP Agenda Eventos Pro — agenda.css v4
   Flat minimal list view — Vertegrande https://vertegrande.com/
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --c-navy:    #0b2346;
  --c-ink:     #304160;
  --c-ink-lt:  #4a5e78;
  --c-muted:   #6c757d;
  --c-border:  #e9ebf0;
  --c-border2: #d7d7d7;
  --c-surface: #f5f6f8;
  --c-white:   #ffffff;
  --r:      10px;
  --r-sm:   7px;
  --r-pill: 999px;
  --s0: 0 1px 3px rgba(48,65,96,.06);
  --s1: 0 3px 10px rgba(48,65,96,.08);
  --t: .15s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Base ──────────────────────────────────────────────────── */
.wae-agenda-wrap {
  font-family: var(--font);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
}
.wae-agenda-wrap *, .wae-agenda-wrap *::before, .wae-agenda-wrap *::after { box-sizing: border-box; }
.wae-agenda-wrap a { color: var(--c-ink); text-decoration: none; }
.wae-agenda-wrap a:hover { color: var(--c-navy); }

/* ================================================================
   DAY TABS — horizontal bar estilo imagen referencia
   ================================================================ */
.wae-tabs-header {
  border-bottom: 2px solid var(--c-border);
  margin-bottom: 28px;
}
.wae-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wae-day-tabs .wae-tab-item { flex: 1 1 auto; }
.wae-day-tabs .wae-tab-btn {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--c-muted);
  background: transparent;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color var(--t), border-color var(--t), background var(--t);
  text-align: center;
  line-height: 1;
}
.wae-day-tabs .wae-tab-btn .tab-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  color: inherit;
}
.wae-day-tabs .wae-tab-btn .tab-date {
  font-size: 11px;
  font-weight: 400;
  color: inherit;
  opacity: .65;
  margin-top: 3px;
}
.wae-day-tabs .wae-tab-btn .tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: var(--r-pill);
  background: var(--c-surface);
  font-size: 9.5px; font-weight: 700;
  color: var(--c-muted);
  margin-top: 6px;
  transition: background var(--t), color var(--t);
}
.wae-day-tabs .wae-tab-btn:hover {
  color: var(--c-ink);
  background: var(--c-surface);
}
.wae-day-tabs .wae-tab-btn.wae-tab-active {
  color: var(--c-navy);
  border-bottom-color: var(--c-navy);
}
.wae-day-tabs .wae-tab-btn.wae-tab-active .tab-label { font-weight: 800; }
.wae-day-tabs .wae-tab-btn.wae-tab-active .tab-count {
  background: var(--c-navy);
  color: #fff;
}

/* ================================================================
   LIST ROW — formato listado tipo imagen referencia
   ================================================================ */
.wae-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--s0);
}

.wae-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--t);
  position: relative;
}
.wae-row:last-child { border-bottom: none; }
.wae-row:hover { background: var(--c-surface); }
.wae-row.wae-finalizada { opacity: .45; }
.wae-row.wae-en-vivo { background: #fff8f8; }

/* accent bar izquierda */
.wae-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--wae-color, var(--c-border2));
  opacity: .7;
}

/* hora columna */
.wae-row-hora {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 16px 18px;
  border-right: 1px solid var(--c-border);
  flex-shrink: 0;
  gap: 2px;
}
.wae-row-hora-ini {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-navy);
  letter-spacing: -.01em;
  line-height: 1;
}
.wae-row-hora-sep {
  font-size: 9px;
  color: var(--c-muted);
  opacity: .5;
  line-height: 1;
}
.wae-row-hora-fin {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-muted);
  line-height: 1;
}

/* contenido columna */
.wae-row-body {
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.wae-row-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 4px;
}

.wae-row-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
  margin: 0;
}
.wae-row-subtitle {
  font-size: 12.5px;
  color: var(--c-muted);
  line-height: 1.4;
  margin: 3px 0 6px;
}

/* meta line: disertante / lugar */
.wae-row-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}
.wae-row-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1;
}
.wae-row-meta-icon {
  font-size: 11px;
  opacity: .55;
  flex-shrink: 0;
}
.wae-row-meta-sep {
  width: 1px;
  height: 12px;
  background: var(--c-border2);
  opacity: .6;
  flex-shrink: 0;
}

/* tipo/badge pills */
.wae-row-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.wae-badge-tipo {
  display: inline-block;
  font-size: 8.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px;
  border: 1px solid var(--wae-color, var(--c-border2));
  color: var(--wae-color, var(--c-ink-lt));
  opacity: .8;
}
.wae-badge-tema {
  font-size: 10px; font-weight: 500; padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--c-surface); color: var(--c-muted);
  border: 1px solid var(--c-border);
}
.wae-badge-modalidad {
  font-size: 10px; font-weight: 600; padding: 2px 8px;
  border-radius: var(--r-pill);
  background: var(--c-surface); color: var(--c-ink-lt);
  border: 1px solid var(--c-border2);
}
.wae-badge-live {
  display: inline-flex; align-items: center; gap: 4px;
  background: #c9352a; color: #fff;
  font-size: 8.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 7px; border-radius: var(--r-pill);
}
.wae-badge-live::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #fff;
  animation: waeLive 1.2s ease-in-out infinite;
}
@keyframes waeLive { 0%,100%{opacity:1} 50%{opacity:.3} }

/* estado badges */
.wae-badge-estado { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; }
.wae-estado-confirmado   { background: #eaf4ee; color: #2d7a4f; }
.wae-estado-tentativo    { background: #fdf3e3; color: #8a5e1c; }
.wae-estado-suspendido   { background: #fdecea; color: #a93226; }
.wae-estado-reprogramado { background: #e8edf5; color: #304160; }
.wae-estado-completo     { background: var(--c-surface); color: var(--c-muted); }
.wae-estado-finalizado   { background: var(--c-surface); color: #adb5bd; }

/* accion columna */
.wae-row-action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 14px 18px 14px 14px;
  gap: 6px;
  flex-shrink: 0;
  min-width: 118px;
  border-left: 1px solid var(--c-border);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.wae-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  font-family: var(--font); font-size: 12.5px; font-weight: 600; line-height: 1;
  padding: 8px 16px; border-radius: var(--r-sm); border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: all var(--t); white-space: nowrap;
}
.wae-btn-primary { background: var(--c-ink); color: #fff !important; border-radius:33px;border-color: var(--c-ink); }
.wae-btn-primary:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.wae-btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-border2); }
.wae-btn-ghost:hover { background: var(--c-surface); border-color: var(--c-ink); color: var(--c-navy); }
.wae-btn-sm { font-size: 11.5px; padding: 7px 12px; border-radius: 6px; }
.wae-row-action .wae-btn { width: 100%; justify-content: center; font-size: 12px; }
.wae-btn-full { width: 100%; justify-content: center; }

/* ================================================================
   FILTERS
   ================================================================ */
.wae-filtros {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 22px; box-shadow: var(--s0);
}
.wae-search-bar { display: flex; gap: 7px; margin-bottom: 14px; }
.wae-search-wrap { flex: 1; position: relative; }
.wae-search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--c-muted); pointer-events: none; display: flex; align-items: center;
}
.wae-search-input {
  width: 100%; height: 38px; padding: 0 12px 0 38px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  font-family: var(--font); font-size: 13.5px; color: var(--c-ink);
  background: var(--c-surface); transition: border-color var(--t); outline: none;
}
.wae-search-input::placeholder { color: var(--c-muted); opacity: .6; }
.wae-search-input:focus { border-color: var(--c-ink); background: var(--c-white); }
.wae-filter-label { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 7px; }
.wae-filter-pills { display: flex; flex-wrap: wrap; gap: 4px; }
.wae-filter-pill {
  display: inline-flex; align-items: center; gap: 3px;
  font-family: var(--font); font-size: 11.5px; font-weight: 500;
  padding: 4px 11px; border-radius: var(--r-pill);
  border: 1.5px solid var(--c-border); background: var(--c-white); color: var(--c-muted);
  cursor: pointer; transition: all var(--t); user-select: none; -webkit-user-select: none; line-height: 1;
}
.wae-filter-pill input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.wae-filter-pill:hover { border-color: var(--c-ink); color: var(--c-ink); background: var(--c-surface); }
.wae-filter-pill.active { background: var(--c-ink); border-color: var(--c-ink); color: #fff; }
.wae-pill-check { display: none; font-size: 9px; }
.wae-filter-pill.active .wae-pill-check { display: inline; }

/* ================================================================
   TIMELINE (vista alternativa)
   ================================================================ */
.wae-timeline-item {
  display: grid; grid-template-columns: 48px 20px 1fr; gap: 0 14px;
  margin-bottom: 14px; align-items: start;
}
.wae-timeline-hora {
  text-align: right; padding-top: 13px;
  font-size: 11.5px; font-weight: 700; color: var(--c-ink);
  white-space: nowrap; line-height: 1.2;
}
.wae-timeline-hora small { display: block; font-size: 9px; font-weight: 400; color: var(--c-muted); margin-top: 1px; }
.wae-timeline-spine { display: flex; flex-direction: column; align-items: center; padding-top: 13px; }
.wae-timeline-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--c-ink);
  flex-shrink: 0; z-index: 1; border: 2px solid var(--c-white);
  outline: 1.5px solid var(--c-ink);
}
.wae-timeline-dot.live-dot { background: #c9352a; outline-color: #c9352a; }
.wae-timeline-line { flex: 1; width: 1px; background: var(--c-border2); margin-top: 4px; min-height: 18px; }
.wae-timeline-card {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-sm); padding: 12px 14px; box-shadow: var(--s0);
  transition: box-shadow var(--t), transform var(--t); position: relative; overflow: hidden; margin-bottom: 3px;
}
.wae-timeline-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--wae-color, var(--c-ink)); opacity: .6; }
.wae-timeline-card:hover { box-shadow: var(--s1); transform: translateX(2px); }
.wae-timeline-card-title { font-size: 13.5px; font-weight: 700; color: var(--c-navy); line-height: 1.3; margin-bottom: 4px; }
.wae-timeline-card-meta { font-size: 11px; color: var(--c-muted); display: flex; flex-wrap: wrap; gap: 8px; }
.wae-timeline-card-meta span { display: inline-flex; align-items: center; gap: 3px; }
.wae-timeline-card-actions { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.wae-timeline-item.wae-finalizada .wae-timeline-card { opacity: .4; }

/* ================================================================
   CARDS (vista alternativa)
   ================================================================ */
.wae-card {
  position: relative; background: var(--c-white); border-radius: var(--r);
  border: 1px solid var(--c-border); box-shadow: var(--s0);
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
}
.wae-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--wae-color, var(--c-ink)); opacity: .7;
}
.wae-card:hover { box-shadow: var(--s1); transform: translateY(-2px); border-color: var(--c-border2); }
.wae-card.wae-finalizada { opacity: .42; filter: grayscale(.6); pointer-events: none; }
.wae-card-body { padding: 16px 16px 10px; flex: 1; display: flex; flex-direction: column; }
.wae-hora-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--c-surface); border: 1px solid var(--c-border);
  color: var(--c-ink); font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--r-pill); width: fit-content; margin-bottom: 10px;
}
.wae-hora-chip .sep { opacity: .3; }
.wae-hora-chip .fin { font-weight: 400; opacity: .55; }
.wae-badges-row { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.wae-tipos-row  { display: flex; flex-wrap: wrap; gap: 3px; margin-bottom: 7px; }
.wae-card-title { font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--c-navy); margin: 0 0 4px; }
.wae-card-subtitle { font-size: 12px; color: var(--c-muted); margin-bottom: 9px; line-height: 1.45; }
.wae-meta-list { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--c-border); }
.wae-meta-row { display: flex; align-items: flex-start; gap: 5px; font-size: 11.5px; color: var(--c-muted); line-height: 1.35; }
.wae-meta-icon { font-size: 11px; flex-shrink: 0; opacity: .6; width: 13px; text-align: center; margin-top: 1px; }
.wae-temas-row { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 9px; }
.wae-card-footer {
  padding: 10px 16px 13px; display: flex; align-items: center; gap: 7px;
  border-top: 1px solid var(--c-border); background: var(--c-surface);
}

/* ================================================================
   SPEAKER CARDS
   ================================================================ */
.wae-disertante-card {
  background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r);
  box-shadow: var(--s0); transition: box-shadow var(--t), transform var(--t);
  overflow: hidden; height: 100%; display: flex; flex-direction: column;
}
.wae-disertante-card:hover { box-shadow: var(--s1); transform: translateY(-2px); }
.wae-dis-header-bg { height: 52px; background: var(--c-navy); position: relative; flex-shrink: 0; }
.wae-dis-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 16px 16px;
}
.wae-dis-body { padding: 0 18px 18px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.wae-dis-avatar-wrap { width: 64px; height: 64px; margin: -32px auto 10px; position: relative; z-index: 1; }
.wae-dis-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 3px solid var(--c-white); box-shadow: var(--s1); }
.wae-dis-avatar-ph { width: 64px; height: 64px; border-radius: 50%; background: var(--c-ink); display: flex; align-items: center; justify-content: center; font-size: 22px; border: 3px solid var(--c-white); box-shadow: var(--s1); }
.wae-dis-name { font-size: 14px; font-weight: 700; color: var(--c-navy); margin-bottom: 2px; }
.wae-dis-cargo { font-size: 11.5px; color: var(--c-muted); line-height: 1.4; }
.wae-dis-empresa { font-size: 11.5px; font-weight: 600; color: var(--c-ink); margin-top: 2px; }
.wae-dis-loc { font-size: 10.5px; color: var(--c-muted); margin-top: 2px; }
.wae-dis-social { display: flex; justify-content: center; gap: 5px; margin: 10px 0; }
.wae-social-btn { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; border: 1.5px solid var(--c-border); color: var(--c-muted); text-decoration: none; transition: all var(--t); background: var(--c-white); }
.wae-social-btn:hover { border-color: var(--c-ink); color: var(--c-ink); }
.wae-dis-events-list { text-align: left; border-top: 1px solid var(--c-border); margin-top: auto; padding-top: 10px; }
.wae-dis-events-label { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; display: block; }
.wae-dis-ev-btn { display: flex; align-items: flex-start; gap: 6px; padding: 4px 6px; border-radius: 5px; border: none; background: none; cursor: pointer; text-align: left; width: 100%; color: var(--c-muted); font-family: var(--font); font-size: 11px; font-weight: 500; transition: background var(--t), color var(--t); line-height: 1.35; }
.wae-dis-ev-btn:hover { background: var(--c-surface); color: var(--c-ink); }
.wae-dis-ev-date { flex-shrink: 0; font-size: 9.5px; font-weight: 700; color: var(--c-ink); white-space: nowrap; margin-top: 1px; }

/* ================================================================
   OFFCANVAS
   ================================================================ */
#waeOffcanvas { font-family: var(--font); -webkit-font-smoothing: antialiased; border-left: none !important; box-shadow: -8px 0 32px rgba(11,35,70,.1); width: min(560px,100vw) !important; }
#waeOffcanvas .offcanvas-header, #waeOffcanvas .offcanvas-body { padding: 0; border: none; }
.wae-oc-hero { position: relative; background: var(--c-navy); padding: 46px 24px 22px; color: #fff; overflow: hidden; }
.wae-oc-hero-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 20px 20px; }
.wae-oc-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.wae-oc-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--wae-color, var(--c-ink)); }
.wae-oc-close-btn { position: absolute; top: 12px; right: 14px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); border: none; color: rgba(255,255,255,.75); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; z-index: 2; transition: background var(--t); }
.wae-oc-close-btn:hover { background: rgba(255,255,255,.2); color: #fff; }
.wae-oc-eyebrow { font-size: 8.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.wae-oc-title { font-size: 17px; font-weight: 700; line-height: 1.28; color: #fff; margin: 0 0 8px; }
.wae-oc-meta-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
.wae-oc-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 500; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.1); }
.wae-oc-chip a { color: inherit; }
.wae-oc-chip a:hover { color: #fff; }
.wae-oc-scroll { overflow-y: auto; max-height: calc(100vh - 195px); padding: 22px; display: flex; flex-direction: column; gap: 20px; }
.wae-oc-section-label { font-size: 8.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--c-muted); padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--c-border); display: block; }
.wae-oc-prose { font-size: 13.5px; line-height: 1.72; color: var(--c-ink-lt); }
.wae-oc-prose p { margin-bottom: 9px; }
.wae-oc-speaker { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: var(--r-sm); background: var(--c-surface); border: 1px solid var(--c-border); margin-bottom: 7px; }
.wae-oc-speaker:last-child { margin-bottom: 0; }
.wae-oc-speaker img, .wae-oc-speaker .sp-ph { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.wae-oc-speaker .sp-ph { background: var(--c-ink); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.wae-oc-sp-name { font-size: 13px; font-weight: 700; color: var(--c-navy); }
.wae-oc-sp-sub { font-size: 11px; color: var(--c-muted); margin-top: 1px; line-height: 1.35; }
.wae-oc-sp-links { display: flex; gap: 5px; margin-top: 4px; }
.wae-oc-sp-link { font-size: 9.5px; font-weight: 700; color: var(--c-ink); text-decoration: none; padding: 1px 6px; border-radius: 4px; background: var(--c-surface); border: 1px solid var(--c-border); transition: background var(--t); }
.wae-oc-sp-link:hover { background: var(--c-border); color: var(--c-navy); }
.wae-oc-materials { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 7px; }
.wae-oc-mat-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 14px 10px; border-radius: var(--r-sm); border: 1.5px solid var(--c-border); background: var(--c-white); font-family: var(--font); font-size: 11.5px; font-weight: 600; color: var(--c-ink); text-decoration: none; cursor: pointer; transition: all var(--t); text-align: center; }
.wae-oc-mat-btn:hover { border-color: var(--c-ink); color: var(--c-navy); background: var(--c-surface); transform: translateY(-1px); }
.wae-oc-mat-icon { font-size: 22px; line-height: 1; }
.wae-share-bar { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.wae-share-label { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-right: 2px; flex-shrink: 0; }
.wae-share-btn { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font); font-size: 11.5px; font-weight: 500; padding: 5px 12px; border-radius: var(--r-pill); border: 1.5px solid var(--c-border); background: var(--c-white); color: var(--c-ink); cursor: pointer; text-decoration: none; transition: all var(--t); }
.wae-share-btn:hover { border-color: var(--c-ink); color: var(--c-navy); background: var(--c-surface); }
.wae-copy-ok { border-color: #2d7a4f !important; color: #2d7a4f !important; background: #eaf4ee !important; }

/* ================================================================
   SINGLE PAGE
   ================================================================ */
.wae-single-wrap { font-family: var(--font); -webkit-font-smoothing: antialiased; max-width: 880px; margin: 0 auto; padding: 0 0 56px; }
.wae-single-back { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--c-muted); text-decoration: none; margin-bottom: 18px; padding: 6px 12px; border-radius: var(--r-pill); border: 1.5px solid var(--c-border); background: var(--c-white); transition: all var(--t); }
.wae-single-back:hover { color: var(--c-navy); border-color: var(--c-ink); background: var(--c-surface); }
.wae-single-back svg { flex-shrink: 0; }
.wae-single-hero { background: var(--c-navy); border-radius: var(--r); overflow: hidden; position: relative; padding: 44px 40px 36px; color: #fff; margin-bottom: 22px; }
.wae-single-hero-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 20px 20px; }
.wae-single-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.wae-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(155deg, rgba(11,35,70,.88) 40%, rgba(11,35,70,.6) 100%); }
.wae-single-hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--wae-color, var(--c-ink)); }
.wae-single-hero-content { position: relative; z-index: 1; }
.wae-single-eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 12px; }
.wae-single-title { font-size: clamp(20px,3.5vw,30px); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: #fff; margin: 0 0 8px; }
.wae-single-subtitle { font-size: 15px; font-weight: 400; color: rgba(255,255,255,.6); margin-bottom: 22px; line-height: 1.55; max-width: 560px; }
.wae-single-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.wae-single-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11.5px; font-weight: 500; padding: 5px 11px; border-radius: var(--r-pill); background: rgba(255,255,255,.08); color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.12); }
.wae-single-live { display: inline-flex; align-items: center; gap: 5px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); background: #c9352a; color: #fff; }
.wae-single-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: waeLive 1.2s ease-in-out infinite; }
.wae-single-grid { display: grid; grid-template-columns: 1fr 264px; gap: 18px; align-items: start; }
.wae-single-section { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r); padding: 22px; margin-bottom: 14px; box-shadow: var(--s0); }
.wae-single-section:last-child { margin-bottom: 0; }
.wae-section-label { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 14px; padding-bottom: 11px; border-bottom: 1px solid var(--c-border); }
.wae-single-prose { font-size: 14px; line-height: 1.78; color: var(--c-ink-lt); }
.wae-single-prose p { margin-bottom: 11px; }
.wae-single-prose p:last-child { margin-bottom: 0; }
.wae-single-speaker { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--c-surface); border: 1px solid var(--c-border); margin-bottom: 9px; transition: border-color var(--t); }
.wae-single-speaker:last-child { margin-bottom: 0; }
.wae-single-speaker:hover { border-color: var(--c-ink); }
.wae-single-speaker img, .wae-single-speaker .sp-ph { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--c-white); box-shadow: var(--s0); }
.wae-single-speaker .sp-ph { background: var(--c-ink); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.wae-sp-name { font-size: 14px; font-weight: 700; color: var(--c-navy); line-height: 1.2; }
.wae-sp-role { font-size: 11.5px; color: var(--c-muted); margin-top: 2px; line-height: 1.4; }
.wae-sp-bio { font-size: 12px; color: var(--c-muted); margin-top: 7px; line-height: 1.55; }
.wae-sp-links { display: flex; gap: 5px; margin-top: 8px; }
.wae-sp-link { font-size: 9.5px; font-weight: 700; color: var(--c-ink); text-decoration: none; padding: 2px 8px; border-radius: 4px; background: var(--c-white); border: 1px solid var(--c-border); transition: all var(--t); }
.wae-sp-link:hover { background: var(--c-border); color: var(--c-navy); }
.wae-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wae-info-label { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 3px; display: block; }
.wae-info-value { font-size: 13px; font-weight: 600; color: var(--c-navy); line-height: 1.4; }
.wae-info-value small { font-size: 11px; font-weight: 400; color: var(--c-muted); display: block; margin-top: 1px; }
.wae-info-value a { color: var(--c-ink); text-decoration: underline; text-decoration-color: var(--c-border2); }
.wae-info-value a:hover { color: var(--c-navy); }
.wae-info-full { grid-column: 1 / -1; }
.wae-cta-block { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r); padding: 18px; text-align: center; box-shadow: var(--s0); }
.wae-temas-block { display: flex; flex-wrap: wrap; gap: 5px; }
.wae-single-share { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }

/* ================================================================
   PROXIMAS / DAY HEADING
   ================================================================ */
.wae-proxima-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--c-border); }
.wae-proxima-item:last-child { border-bottom: none; }
.wae-proxima-fecha { text-align: center; min-width: 44px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: 4px 6px; flex-shrink: 0; }
.pf-day { font-size: 19px; font-weight: 800; color: var(--c-navy); line-height: 1; letter-spacing: -.02em; }
.pf-mon { font-size: 8.5px; font-weight: 700; text-transform: uppercase; color: var(--c-muted); letter-spacing: .07em; margin-top: 1px; }
.wae-proxima-title { font-size: 13px; font-weight: 700; color: var(--c-navy); margin-bottom: 3px; }
.wae-proxima-sub { font-size: 11px; color: var(--c-muted); }
.wae-dia-titulo { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.wae-dia-titulo::before { content: ''; width: 3px; height: 14px; background: var(--c-ink); border-radius: 2px; flex-shrink: 0; opacity: .6; }

/* ================================================================
   LOADING / EMPTY
   ================================================================ */
.wae-empty { text-align: center; padding: 48px 24px; background: var(--c-surface); border: 1.5px dashed var(--c-border); border-radius: var(--r); color: var(--c-muted); }
.wae-empty p { font-size: 13.5px; margin: 0; }
.wae-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px; gap: 12px; color: var(--c-muted); font-size: 13px; }
.wae-spinner { width: 28px; height: 28px; border-radius: 50%; border: 2.5px solid var(--c-border); border-top-color: var(--c-ink); animation: waeSpinner .6s linear infinite; }
@keyframes waeSpinner { to { transform: rotate(360deg); } }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .wae-row { grid-template-columns: 70px 1fr; }
  .wae-row-action { display: none; }
  .wae-row-body { padding: 13px 14px; }
  .wae-row-hora { padding: 13px 10px 13px 14px; }
  .wae-row-hora-ini { font-size: 13px; }
  .wae-single-grid { grid-template-columns: 1fr; }
  .wae-single-hero { padding: 32px 20px 26px; }
  .wae-info-grid { grid-template-columns: 1fr; gap: 11px; }
  .wae-timeline-item { grid-template-columns: 40px 16px 1fr; gap: 0 10px; }
  .wae-oc-scroll { max-height: calc(100vh - 165px); padding: 16px; }
}
@media (max-width: 576px) {
  .wae-day-tabs .wae-tab-btn { padding: 12px 8px 10px; }
  .wae-day-tabs .wae-tab-btn .tab-label { font-size: 11.5px; }
  .wae-day-tabs .wae-tab-btn .tab-date { font-size: 10px; }
  .wae-single-hero { padding: 26px 16px 20px; }
  .wae-filtros { padding: 14px; }
  .wae-search-bar { flex-direction: column; }
  .wae-oc-hero { padding: 42px 16px 18px; }
  .wae-row-meta { gap: 7px; }
  .wae-row-meta-sep { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wae-badge-live::before, .wae-timeline-dot.live-dot, .wae-single-live::before { animation: none; }
  .wae-card, .wae-disertante-card, .wae-timeline-card, .wae-row { transition: none; }
}
