﻿.bestSectionsPage .tableOfContents {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

  .bestSectionsPage .tableOfContents a {
    color: rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.2s linear;
  }

    .bestSectionsPage .tableOfContents a:hover {
      color: var(--rust-red);
      border-color: currentColor;
    }

/* Sections */

.bestSectionsWrap .section {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

  .bestSectionsWrap .section > .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

.bestSectionsWrap h2 {
  text-align: initial;
  text-transform: initial;
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 500;
}

.bestSectionsWrap .creator-count {
  display: flex;
  gap: 5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Creators */

.creator-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

  .creator-list .creator {
    background-color: var(--bs-lighter-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
  }

  .creator-list .header {
    display: flex;
    gap: 10px 20px;
  }

  .creator-list .header .left {
    min-width: 40px;
  }

    .creator-list .header img {
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
    }

  .creator-list .creator-title {
    font-family: inherit;
    text-transform: initial;
    font-weight: 500;
    font-size: 1.1rem;
  }

    .creator-list .creator-title .red {
      color: var(--rust-red);
    }

  .creator-list .play-style-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
  }

    .creator-list .play-style-pills a {
      color: rgba(255,255,255,0.5);
      background-color: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0px 5px;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 400;
      transition: 0.2s linear;
    }

      .creator-list .play-style-pills a:hover {
        color: var(--rust-red);
        border-color: currentColor;
      }

  .creator-list .creator-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 15px;
  }

.creator-stats .stat {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  line-height: 1;
}

  .creator-stats .stat span {
    color: rgba(255,255,255,0.7);
  }

.creator-list .bio {
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.creator-list .videosLinks {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px 0;
}

.creator-list .recentVideos {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.creator-list .videoItem {
  background-position: center center;
  background-size: 100%;
  border-radius: 10px;
  transition: 0.2s linear;
  position: relative;
}

  .creator-list .videoItem:hover {
    background-size: 105%;
  }

  .creator-list .videoItem svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
  }

  .creator-list .videoItem:after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
    background-color: rgba(0,0,0,0.2);
  }

  .creator-list .videoItem img {
    max-width: 140px;
  }

.creator-list .links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 767px) {
  .creator-list .videosLinks {
    flex-direction: row;
  }

    .creator-list .videosLinks .recentVideos {
      flex-basis: 50%;
    }

    .creator-list .videosLinks .links {
      flex: 1;
    }
}
