.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.rating-criticos {
  font-weight: 600;
  width: 30px;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.rating-publico {
  font-weight: 600;
  width: 30px;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transition: 0.5s;
  transform: scale(1.01);
}

.filters-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  padding-bottom: 0.5rem;
}

.filters-bar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

@media (max-width: 768px) {
  .filters-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .clear-filters {
    margin-left: 0;
    flex-shrink: 0;
  }
}

.filter-btn-active {
  background-color: #0a376e;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn-active:hover {
  background-color: #0a376e;
}

.filter-btn-dropdown {
  background-color: #fff;
  color: #1a1a2e;
  border: 0.5px solid #1a1a2e;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.2s;
}

.filter-btn-dropdown:hover {
  background-color: #f8f9fa;
}

.filter-btn-dropdown::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #1a1a2e;
  margin-left: 0.25rem;
}

.blog-homepage-videos-container {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.blog-homepage-video-featured {
  width: 100%;
  max-width: 795px;
  height: 497px;
  border-radius: 8px 0px 0px 8px;
  overflow: hidden;
}

.blog-homepage-video-featured iframe {
  width: 100%;
  height: 100%;
}

.blog-homepage-videos-listing-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  background-color: var(--color-dark, #1a1a2e);
  padding: 16px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-left: 0px;
  max-height: 497px;
  min-height: 497px;
  height: 100%;
  max-width: 401px;
}

.blog-homepage-videos-listing-item {
  display: flex;
  gap: 24px;
  align-items: center;
  transition: opacity 0.3s ease;
}

.blog-homepage-videos-listing-item:hover {
  opacity: 0.8;
}

.blog-homepage-videos-listing-item.active {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 8px;
}

.blog-homepage-videos-listing-item-thumbnail {
  width: 150px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-homepage-videos-listing-item-title h3 {
  font-size: 16px;
  font-weight: normal;
  color: var(--color-white, #fff);
  margin: 0;
}

@media (max-width: 991.98px) {
  .blog-homepage-videos-container {
    flex-direction: column;
  }

  .blog-homepage-video-featured {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }

  .blog-homepage-videos-listing-items {
    max-width: 100%;
    border-radius: 8px;
    margin-left: 0;
    max-height: none;
    min-height: auto;
    overflow-y: visible;
  }

  .blog-homepage-videos-listing-item {
    gap: 16px;
  }

  .blog-homepage-videos-listing-item-thumbnail {
    width: 120px;
    height: 68px;
  }

  .blog-homepage-videos-listing-item-title h3 {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  .blog-homepage-videos-listing-item {
    gap: 12px;
  }

  .blog-homepage-videos-listing-item-thumbnail {
    width: 100px;
    height: 56px;
  }

  .blog-homepage-videos-listing-item-title h3 {
    font-size: 13px;
  }
}
