
:root {
  --yt-bg: #0f0f0f;
  --yt-text: #f1f1f1;
  --yt-gray: #aaa;
}

body {
  background-color: var(--yt-bg);
  font-family: "Roboto", Arial, sans-serif;
  color: var(--yt-text);
}

.video-card-YT {
  width: 100%;
  height: fit-content;
  cursor: pointer;
  border-radius: 8px !important;
  border: none !important;
  /* background-color: var(--yt-bg); */
  background-color: #09090B;
}

/* Thumbnail */
.thumbnail-container-YT {
  position: relative;
  width: 100%;
}

.thumbnail-YT {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 15 / 8;
  object-fit: cover;
  pointer-events: none;
}

.video-time-YT {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

/* Container de Infos */
.info-container-YT {
  display: flex;
  padding: 8px;
  max-height: 100px;
  gap: 12px;
  position: relative;
  background-color: rgba(20, 15, 15, 0);
}

.channel-avatar-YT {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.info-results-YT {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.card-title-YT {
  font-size: 0.9em;
  margin: 0 0 6px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Corta o texto em 2 linhas */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.channel-name-YT,
.stats-YT {
  font-size: 14px;
  color: var(--yt-gray);
  margin: 0;
}

.stats-YT {
  margin-top: 2px;
}

.separator-YT {
  margin: 0 4px;
}

.menu-dots-YT {
  position: absolute;
  right: 5px;
  top: 5px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}