.appliste-live-desk {
  --appliste-blue: #1677ff;
  --appliste-blue-dark: #075fd3;
  --appliste-card: #fff;
  --appliste-text: #101828;
  --appliste-muted: #667085;
  --appliste-border: #e5e7eb;
  --appliste-shadow: 0 18px 46px rgba(16, 24, 40, .08);
  color: var(--appliste-text);
  margin-top: -24px;
  padding: 0 0 64px;
}

.appliste-live-desk * {
  box-sizing: border-box;
}

.appliste-live-desk .live-desk-shell {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
}

.appliste-live-desk .live-hero,
.appliste-live-desk .presented-panel,
.appliste-live-desk .timeline-card {
  border: 1px solid var(--appliste-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(16, 24, 40, .06);
}

.appliste-live-desk .live-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  padding: 22px;
}

.appliste-live-desk .live-status-row,
.appliste-live-desk .timeline-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.appliste-live-desk h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.02;
}

.appliste-live-desk .live-pill,
.appliste-live-desk .update-pill,
.appliste-live-desk .type-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.appliste-live-desk .live-pill {
  background: #fff1f0;
  color: #b42318;
}

.appliste-live-desk .live-pill.is-status-scheduled {
  background: #eef6ff;
  color: var(--appliste-blue-dark);
}

.appliste-live-desk .live-pill.is-status-ended {
  background: #ecfdf3;
  color: #067647;
}

.appliste-live-desk .update-pill,
.appliste-live-desk .type-badge {
  background: #eef6ff;
  color: var(--appliste-blue-dark);
}

.appliste-live-desk .status-dot {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: #f04438;
  box-shadow: 0 0 0 5px rgba(240, 68, 56, .13);
}

.appliste-live-desk .live-pill.is-status-scheduled .status-dot {
  background: var(--appliste-blue);
  box-shadow: 0 0 0 5px rgba(22, 119, 255, .13);
}

.appliste-live-desk .live-pill.is-status-live .status-dot {
  animation: liveStatusPulse 1.35s ease-out infinite;
}

.appliste-live-desk .live-pill.is-status-ended .status-dot {
  background: #12b76a;
  box-shadow: 0 0 0 5px rgba(18, 183, 106, .13);
}

.appliste-live-desk .liquid-refresh {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(238, 246, 255, .68));
  cursor: pointer;
  padding: 7px 8px 7px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 14px 34px rgba(16, 24, 40, .08);
}

.appliste-live-desk .liquid-refresh-copy {
  display: grid;
  gap: 1px;
  min-width: 158px;
  text-align: left;
}

.appliste-live-desk .liquid-refresh-copy span {
  font-size: 14px;
  font-weight: 850;
}

.appliste-live-desk .liquid-refresh-copy small {
  color: var(--appliste-muted);
  font-size: 12px;
  font-weight: 750;
}

.appliste-live-desk .liquid-switch {
  position: relative;
  width: 58px;
  height: 34px;
  border-radius: 999px;
  background: #eaecf0;
}

.appliste-live-desk .liquid-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 7px 14px rgba(16, 24, 40, .17);
  transition: transform .26s ease;
}

.appliste-live-desk .liquid-refresh.is-enabled .liquid-switch {
  background: linear-gradient(145deg, #4da0ff, var(--appliste-blue-dark));
}

.appliste-live-desk .liquid-refresh.is-enabled .liquid-switch-thumb {
  transform: translateX(24px);
}

.appliste-live-desk .presented-panel {
  margin-bottom: 20px;
  border-color: rgba(22, 119, 255, .16);
  background: linear-gradient(180deg, rgba(238, 246, 255, .82), rgba(255, 255, 255, .94));
  overflow: hidden;
  padding: 0;
}

.appliste-live-desk .presented-panel.is-empty {
  display: none;
}

.appliste-live-desk .presented-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: var(--appliste-blue-dark);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.appliste-live-desk .presented-panel summary::-webkit-details-marker {
  display: none;
}

.appliste-live-desk .presented-toggle {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .15);
}

.appliste-live-desk .presented-toggle::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--appliste-blue-dark);
  border-bottom: 2px solid var(--appliste-blue-dark);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}

.appliste-live-desk .presented-panel[open] .presented-toggle::before {
  transform: rotate(225deg) translate(-2px, -1px);
}

.appliste-live-desk .presented-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 18px 18px;
}

.appliste-live-desk .presented-panel li {
  margin: 0;
  padding: 0;
}

.appliste-live-desk .presented-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(22, 119, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .68);
  color: var(--appliste-blue-dark);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.3;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.appliste-live-desk .presented-link:hover {
  border-color: rgba(22, 119, 255, .32);
  background: #fff;
  transform: translateY(-1px);
}

.appliste-live-desk .presented-arrow {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--appliste-blue-dark);
  font-weight: 900;
}

.appliste-live-desk .timeline {
  display: grid;
  gap: 12px;
}

.appliste-live-desk .timeline-card {
  padding: 18px;
}

.appliste-live-desk .timeline-item {
  transition: opacity .24s ease, transform .24s ease;
}

.appliste-live-desk .timeline-item.is-removing {
  opacity: 0;
  transform: translateY(-8px);
}

.appliste-live-desk .timeline-item.is-newly-published {
  animation: liveItemIn .5s ease both;
}

.appliste-live-desk .timeline-item.is-important .timeline-card {
  border-left: 4px solid var(--appliste-blue);
}

.appliste-live-desk .timeline-card p {
  margin: 10px 0 0;
  color: #1d2939;
  font-size: 17px;
  font-weight: 650;
}

.appliste-live-desk .timeline-media {
  margin: 15px 0 0;
  overflow: hidden;
  border-radius: 16px;
}

.appliste-live-desk .timeline-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.appliste-live-desk .youtube-preview {
  position: relative;
  margin: 15px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: #101828;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 28px rgba(16, 24, 40, .12);
}

.appliste-live-desk .youtube-preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.appliste-live-desk .article-preview-link {
  display: grid;
  grid-template-columns: minmax(170px, 240px) 1fr;
  gap: 16px;
  margin-top: 14px;
  color: inherit;
  text-decoration: none;
}

.appliste-live-desk .article-preview-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #eef2f6;
}

.appliste-live-desk .article-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform .24s ease;
}

.appliste-live-desk .article-preview-link:hover .article-preview-media img {
  transform: scale(1.03);
}

.appliste-live-desk .article-preview-body {
  display: grid;
  align-content: center;
  gap: 8px;
}

.appliste-live-desk .article-preview-kicker {
  color: var(--appliste-blue-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.appliste-live-desk .article-preview-title {
  color: var(--appliste-text);
  font-size: 23px;
  font-weight: 860;
  line-height: 1.12;
}

.appliste-live-desk .article-preview-excerpt {
  color: var(--appliste-muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.appliste-live-desk .article-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--appliste-blue-dark);
  font-weight: 850;
}

.appliste-live-desk .article-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(22, 119, 255, .18);
  border-radius: 999px;
  background: #eef6ff;
  color: var(--appliste-blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.appliste-live-desk .composing-card {
  border-color: rgba(22, 119, 255, .28);
  background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(238, 246, 255, .82));
}

.appliste-live-desk .composing-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #1d2939;
}

.appliste-live-desk .composing-line strong {
  margin-left: 5px;
  font-size: 16px;
}

.appliste-live-desk .typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--appliste-blue);
  animation: typingPulse 1s ease-in-out infinite;
}

.appliste-live-desk .typing-dot:nth-child(2) {
  animation-delay: .14s;
}

.appliste-live-desk .typing-dot:nth-child(3) {
  animation-delay: .28s;
}

.appliste-live-desk .source-note {
  margin: 20px auto 0;
  color: var(--appliste-muted);
  font-size: 13px;
  text-align: center;
}

@keyframes typingPulse {
  0%, 80%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@keyframes liveItemIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes liveStatusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 68, 56, .42), 0 0 0 5px rgba(240, 68, 56, .13);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(240, 68, 56, 0), 0 0 0 5px rgba(240, 68, 56, .13);
    transform: scale(1.08);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(240, 68, 56, 0), 0 0 0 5px rgba(240, 68, 56, .13);
    transform: scale(1);
  }
}

@media (max-width: 760px) {
  .appliste-live-desk {
    margin-top: -36px;
  }

  .appliste-live-desk .live-hero {
    grid-template-columns: 1fr;
  }

  .appliste-live-desk .liquid-refresh {
    justify-content: space-between;
    width: 100%;
  }

  .appliste-live-desk .article-preview-link {
    grid-template-columns: 1fr;
  }

  .appliste-live-desk .article-preview-media img {
    min-height: 190px;
  }
}
