.categories {
  margin-bottom: 30px;
}
.categories > a {
  padding: 2px 15px;
  border-right: 1px solid #ccc;
  font-weight: bold;
}
.categories > a.current {
  color: #999999 !important;
  text-decoration: none !important;
  cursor: default;
}
.categories > a:first-child {
  padding-left: 0;
}
.categories > a:last-child {
  border-right: none;
}
.videos {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.videos > div {
  width: 315px;
  flex: 0 0 auto;
  padding: 0 20px 20px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 710px) {
  .videos > div {
    width: 50%;
  }
}
@media screen and (max-width: 420px) {
  .videos > div {
    width: 100%;
    padding-right: 0;
  }
}
.videos > div > a {
  text-decoration: none !important;
}
.videos > div > a > .thumb-wrapper {
  display: block;
  position: relative;
  padding-bottom: 55.25%;
  background-color: #CC0B00;
  overflow: hidden;
}
.videos > div > a > .thumb-wrapper > .thumb {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.videos > div > a > .title {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}
.videos > div > a:hover > .thumb-wrapper > .thumb {
  opacity: 0.7;
}
.videos > div > a:hover > .title {
  text-decoration: underline;
}
.video-page-wrapper#page-wrapper {
  max-width: 1400px;
}
.video-page-wrapper .video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 25px;
}
.video-page-wrapper .video-embed iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
