html.se-lock,
  html.se-lock body {
  overflow: hidden;
}

.se-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: flex-end;
  background: rgba(23, 23, 23, 0.8);
}

.se-overlay[hidden] {
  display: none;
}

.se-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  width: 40%;
  height: 100%;
  padding: 32px;
  overflow: hidden;
  background: #151515;
  color: #fff;
  font-family: 'Raleway', sans-serif;
}

.se-modal__head {
  position: relative;
  width: 100%;
}

.se-modal__logo {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: var(--se-logo-d, 201px);
}

.se-modal__logo img {
  width: 100%;
  height: auto;
}

.se-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.se-speaker {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.se-speaker__photo {
  width: 99px;
  height: 113px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.se-speaker__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.se-speaker__bio {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
}

.se-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.se-pill[hidden] {
  display: none;
}

.se-pill--live {
  background: #232323;
  border: 1px solid #f51414;
  color: #fff;
}

.se-pill--soon {
  width: 100%;
  background: #01ffb4;
  color: #151515;
}

.se-modal__head,
  .se-speaker,
  .se-cta {
  flex-shrink: 0;
}

.se-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-height: 0;
  flex: 0 1 auto;
}

.se-events__title {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.se-events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 140px;
  max-height: calc(100dvh - 26rem);
  overflow: auto;
}

.se-events__list--more {
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
          mask-image: linear-gradient(180deg, #000 80%, transparent);
}

.se-events__hint {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  color: #ababb4;
}

.se-card {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: #232323;
  border: 1px solid #3c3c3c;
}

.se-card--soon {
  border: 2px solid #465fff;
}

.se-card__when {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}

.se-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 70px;
  height: 70px;
  background: #465fff;
  color: #fff;
  font-weight: 700;
}

.se-card__day {
  font-size: 24px;
  line-height: 32px;
}

.se-card__month {
  font-size: 14px;
  line-height: 20px;
}

.se-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  flex: 1;
}

.se-card__name,
  .se-card__desc,
  .se-card__place {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.se-card__name {
  font-weight: 700;
}

.se-card__time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.se-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 24px;
  border: 1px solid #fff;
  border-radius: 49px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Fira Code', 'Fira Mono', monospace;
  font-size: 16px;
  line-height: normal;
  flex-shrink: 0;
}

.se-cta:hover,
  .se-cta:focus {
  color: #fff;
}

@media (max-width: 980px) {
  .se-modal {
    width: 100%;
    max-width: none;
  }

  .se-modal__logo {
    width: var(--se-logo-t, 180px);
  }
}

@media (max-width: 768px) {
  .se-modal__logo {
    width: var(--se-logo-m, 160px);
  }

  .se-card {
    align-items: flex-start;
  }
}

.se-flex {
  display: flex;
}

.se-h-full {
  height: 100%;
}

.se-flex-col {
  flex-direction: column;
}

.se-items-center {
  align-items: center;
}

.se-justify-end {
  justify-content: flex-end;
}

.se-gap-6 {
  gap: 1.5rem;
}
