#category-selectors {
  text-align: center;
  margin-bottom: 40px;
}

#category-selectors ul {
  list-style: none;
  display: inline-block;
  padding: 0;
}

#category-selectors ul li {
  display: inline-block;
  float: left;
  margin-right: 20px;
}

#category-selectors ul li:last-of-type {
  margin-right: 0;
}

#category-selectors ul li a {
  font-family: brandon-grotesque, sans-serif;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  transition: 0.3s ease;
  position: relative;
}
#category-selectors ul li.selected a,
#category-selectors ul li a:hover {
  color: #a64235;
}
#category-selectors ul li.selected a::after {
  content: "";
  border-bottom: 2px solid #a64235;
  height: 1px;
  width: 15px;
  position: absolute;
  bottom: -5px;
  z-index: 99999;
  left: 50%;
  transform: translateX(-50%);
}

.category-container {
  display: none;
}
.category-container.selected {
  display: block;
  overflow: hidden;
  min-height: 55vh;
  width: 100%;
}
.single-post,
.has-single {
  display: inline-block;
  float: left;
  width: 32%;
  margin-bottom: 40px;
  margin-right: 2%;
}
.single-post:nth-of-type(3n),
.has-single:nth-of-type(3n) {
  margin-right: 0;
}
.single-post:nth-of-type(3n + 1),
.has-single:nth-of-type(3n + 1) {
  clear: left;
}
.single-post h2,
.has-single h2 {
  font-family: brandon-grotesque, sans-serif;
  font-weight: bold !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #a64235;
}
.single-post p {
  margin: 0;
  font-weight: bold;
  color: #a64235;
}
.single-post p span {
  color: black;
}
.fusion-video iframe,
iframe {
  background: black !important;
}

/*---------------------------------------------------------------------------------
    MEDIA QUERIES
---------------------------------------------------------------------------------*/

/* Phones */
@media (min-width: 320px) and (max-width: 480px) and (orientation: portrait) {
  #category-selectors ul li a {
    font-size: 12px;
  }
  .single-post {
    width: 100%;
  }
}
