/* Headings */
#podcast h3 {
  font-family: "Montserrat_regular", "Segoe UI", arial, sans-serif;
  margin-bottom: 10px;
}

#podcast h6 {
  font-family: "Montserrat_regular", "Segoe UI", arial, sans-serif;
}

#podcast .category_title {
  text-transform: capitalize;
}

/* Podcast Container Responsive */
/* XS */
@media only screen and (max-width: 767px) {
  #podcast {
    margin-top: 40px;
  }

  #podcast h3 {
    font-size: 1.8em;
  }
}

/* SM */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #podcast {
    margin-top: 40px;
  }
}

/* MD */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #podcast {
    margin-top: 80px;
  }
}

/* LG */
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  #podcast {
    margin-top: 80px;
  }
}

/* XL */
@media only screen and (min-width: 1600px) and (max-width: 1920px) {
  #podcast {
    margin-top: 80px;
  }
}

/* Podcast Reccomendation */

#podcast .channel .overlay img {
  width: 1400px;
}

#podcast .info h6 {
  margin-top: 7px;
  margin-bottom: 7px;
  font-size: 1em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#podcast .info p {
  font-size: 0.9em;
  line-height: 1.5em;
}

#podcast .info {
  color: #ffffff;
  cursor: pointer;
  display: block;
}

#podcast .info:hover {
  color: #e6c515;
  text-decoration: none;
  transition: 0.5s;
}

#podcast .info:active,
#podcast .info:visited {
  text-decoration: none;
}

#podcast figure.overlay.imghvr-fade:hover {
  transform: scale(1.1);
}

#podcast figcaption {
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#podcast figcaption:hover {
  transform: scale(1.1);
}

#podcast figcaption .play-button {
  width: 60%;
  height: 60%;
  cursor: pointer;
}

/* Podcast Reccomendation */

#podcast hr {
  border-top: 1px solid #555;
}

/* Podcast Categories */

#podcast > #categories .row {
  margin: 0 -15px;
}

#podcast > #categories .item {
  margin-bottom: 15px;
}

@media screen and (max-width: 319px) {
  #podcast > #categories .item {
    width: 100%;
  }
}

#podcast > #categories .item > .menu {
  color: #ffffff;
  font-size: 1em;
  text-decoration: none;
  background-color: #19191a;
  background-image: url("../../images/podcast/icons/arrow.png");
  background-position: center right;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  padding: 0 10px;
  min-height: 42px;
  border-radius: 3px;
  align-items: center; /* Vertical center alignment */
}

#podcast > #categories .item > .menu:hover {
  background-color: #e6c515;
  background-image: url("../../images/podcast/icons/arrow-black.png");
  background-position: center right;
  background-repeat: no-repeat;
  color: #20232a;
  transition: 0.5s;
  transform: scale(1.1);
}

#podcast > #categories .item > .menu > .icon {
  margin-right: 10px;
}
/* Podcast Categories */

/* Podcast Category Page */

#podcast_category .subcategory_title {
  text-transform: capitalize;
  font-size: 1.5em;
  margin-bottom: 20px;
  font-family: "Montserrat_regular", "Segoe UI", arial, sans-serif;
}

#podcast .category_back {
  color: #fff;
}

/* Podcast Category Page */

/* Helper Class */
.vertical-align {
  display: flex;
  justify-content: center;
}
