/* Карточка мероприятия (S8) — «плавающая» раскладка: устойчива к длинным реальным
   названиям/залам/спискам спикеров (блоки идут потоком, не наезжают друг на друга). */


.evt-back { position: absolute; left: 32px; top: 226px; white-space: pre; cursor: pointer;
  font-weight: 500; font-size: 28px; line-height: 1.2; color: rgba(255,255,255,0.85); }

/* Контейнер контента — поток вниз от шапки. Область ограничена низом экрана и
   прокручивается пальцем (описание сессии бывает длинным), полосы прокрутки нет. */
.evt-body { position: absolute; left: 32px; top: 283px; width: 1016px; bottom: 560px;
  overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.evt-body::-webkit-scrollbar { width: 0; height: 0; }
.evt-body { mask-image: linear-gradient(to bottom, #000 calc(100% - 56px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 56px), transparent 100%); }
.evt-body.fits { mask-image: none; -webkit-mask-image: none; }

/* Заголовок + QR в одну строку (заголовок переносится в своей колонке) */
.evt-head { display: flex; gap: 28px; align-items: flex-start; }
.evt-title { flex: 1; font-weight: 700; font-size: 44px; line-height: 1.14; color: #fff;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.evt-qr { flex: none; width: 190px; height: 190px; background: #fff; border-radius: 12px; padding: 10px; }
.evt-qr img { width: 100%; height: 100%; display: block; }

/* Статус */
.evt-status { margin-top: 22px; display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 26px; }
.evt-status .dot { width: 16px; height: 16px; border-radius: 50%; background: #90d9f4; flex: none; }
.evt-status.now { color: #3fcb94; } .evt-status.now .dot { background: #3fcb94; }
.evt-status.soon { color: #90d9f4; } .evt-status.soon .dot { background: #90d9f4; }
.evt-status.past { color: rgba(255,255,255,0.5); } .evt-status.past .dot { background: rgba(255,255,255,0.5); }

/* Плитки дата/время/зал — flex-ряд, тянутся по высоте самого высокого */
.evt-cards { display: flex; gap: 20px; margin-top: 26px; align-items: stretch; }
.evt-card { flex: 1; min-height: 112px; border-radius: 16px; padding: 22px 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); }
.evt-card .lbl { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.5); }
.evt-card .val { margin-top: 10px; font-weight: 500; font-size: 28px; line-height: 1.12; color: #fff; }

/* «Как пройти к залу» — отдельная кнопка (не висит в плитке) */
.evt-route-btn { margin-top: 22px; height: 88px; border-radius: 16px; cursor: pointer;
  background: rgba(144,217,244,0.16); border: 1.5px solid rgba(144,217,244,0.45);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 600; font-size: 28px; color: #cdeefb; }

/* Темы + спикеры */
.evt-themes { margin-top: 26px; font-weight: 400; font-size: 24px; line-height: 1.25; color: rgba(255,255,255,0.55); }
.evt-themes:empty { display: none; }
.evt-themes b { font-weight: 500; color: #90d9f4; }

.evt-sp-h { margin-top: 30px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px;
  letter-spacing: 1.5px; color: #90d9f4; }
.evt-speakers { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; }
.evt-speakers .sp { font-weight: 400; font-size: 25px; line-height: 1.25; color: rgba(255,255,255,0.9);
  /* длинные должности переносим, а не режем многоточием — обрезанная строка выглядит как сбой */
  padding-left: 22px; text-indent: -22px; }

/* Описание сессии — целиком, без сворачивания: карточка прокручивается пальцем */
.evt-descr { margin-top: 34px; padding-bottom: 40px; }
.evt-descr-h { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 20px;
  letter-spacing: 1.5px; color: #90d9f4; }
.evt-descr-t { margin-top: 14px; font-weight: 400; font-size: 25px; line-height: 1.4;
  color: rgba(255,255,255,0.88); }
