main:has(.best-jokes-feed) #main-container {
  padding-top: 8px;
  padding-bottom: 48px;
}

.best-jokes-feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.best-jokes-feed li {
  margin-bottom: 0;
}

.best-joke-item {
  display: block;
  min-width: 0;
}

.best-joke-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.best-joke-head .joke-row-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.best-joke-head .joke-row-toggle svg {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.best-joke-item--open .joke-row-toggle svg {
  transform: rotate(90deg);
}

.best-joke-body {
  display: none;
  padding-left: 32px;
  overflow: hidden;
}

.best-joke-item--open .best-joke-body {
  display: block;
}

.best-joke-content {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-content);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  padding-top: 8px;
  max-width: 80ch;
}

.joke-special-avatar {
  width: 42px;
  height: 42px;
  position: relative;
  top: 1px;
  margin-right: 7px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.joke-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.joke-text {
  flex: 1;
  color: var(--color-text-content);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.joke-special-name {
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: var(--color-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.joke-title-link {
  display: inline !important;
  padding: 0 !important;
  border: none !important;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.28px;
  color: var(--color-primary) !important;
  text-decoration: none;
}

a.joke-title-link:hover {
  text-decoration: underline;
}

a.joke-title-link::after {
  display: none !important;
}

.joke-timecode {
  flex-shrink: 0;
  padding: 5px;
  background: var(--color-surface);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
  white-space: nowrap;
}

.joke-stats {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.joke-stat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-primary);
  white-space: nowrap;
}

.joke-stat svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .best-jokes-feed {
    gap: 24px;
  }

  .best-joke-head {
    font-size: 16px;
  }

  .best-joke-content {
    font-size: 16px;
  }

  .joke-special-name {
    font-size: 12px;
    line-height: 1.6;
    text-transform: none;
  }

  a.joke-title-link {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
  }

  .joke-timecode {
    font-size: 16px;
    line-height: 1.6;
  }

  .joke-stat {
    font-size: 16px;
    line-height: 1.6;
  }
}
