nav.yt-playlist-btn ul {
  background: #FDF6E8;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}
nav.yt-playlist-btn ul li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  background-color: #E05648;
  padding: 0.5em;
  line-height: 1.5;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
}
nav.yt-playlist-btn ul li a:hover {
  background-color: #E87A6E;
}
nav.yt-playlist-btn ul li a.yt-playing {
  background-color: #60C4E5;
  color: #fff;
  transition: 0.3s;
}
nav.yt-playlist-btn ul li a.yt-playing:hover {
  background-color: #7FD0EB;
}
nav.yt-playlist-btn ul li a.yt-playing:after {
  content: "Now Playing";
  background-color: #fff;
  border: 1px solid #60C4E5;
  color: #60C4E5;
  display: inline-block;
  line-height: 1.25;
  font-size: 70%;
  padding: 0 .5em .1em;
  position: absolute;
  top: -7px;
  right: -4px;
  border-radius: 4px;
}
#story nav.yt-playlist-btn ul {
  background: #FDF6E8;
}
@media all and (min-width: 992px) {
  nav.yt-playlist-btn ul li {
    width: calc((100% - 8*2px)/3);
    /*    width: calc((100% - 8 * 1px) / 2);*/
  }
  nav.yt-playlist-btn ul li a {
    font-size: 130%;
  }
  #story nav.yt-playlist-btn ul li {
    /*    width: calc((100% - 8px)/2);*/
    /*    width: calc((100% - 8 * 1px) / 2);*/
    width: calc((100% - 8*2px)/3);
  }
}
@media all and (max-width: 991px) {
  nav.yt-playlist-btn ul {
    padding: 1.5%;
    gap: 1vw;
    display: flex;
    flex-wrap: wrap;
  }
  nav.yt-playlist-btn ul li {
    width: calc((100% - 1vw)/2);
  }
  nav.yt-playlist-btn ul li:nth-child(1) {
    width: 100%;
  }
  /*
  nav.yt-playlist-btn ul li:nth-child(3), nav.yt-playlist-btn ul li:nth-child(4), nav.yt-playlist-btn ul li:nth-child(5) {
    width: calc((100% - 2vw)/3);
  }
*/
  nav.yt-playlist-btn ul li a {
    padding: 1.8vw;
    font-size: 3.5vw;
  }
  #info nav.yt-playlist-btn ul li a {
    font-size: 3.5vw;
    line-height: 125%;
  }
  nav.yt-playlist-btn ul li a.yt-playing:after {
    font-size: 2.5vw;
  }
}
