.page-home section.networks {
  border: 1px solid #ebb710;
  border-left: none;
  border-right: none;
}

.page-home h1 {
  font-size: 3em;
  font-weight: 300;
  margin: 5vh 0;
  font-family: 'Cormorant Garamond';
  text-transform: lowercase;;
}

.page-home h1 .fa {
  line-height: 1em;
  transform: scale(0.85) translateY(2px);
  transform-origin: left bottom;
  color: rgb(236, 86, 12);
}

.page-home section.news-section {
  background: linear-gradient(transparent, #fff);
}

.page-home .news-item {
  display: flex;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
  /* border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  flex-direction: row;
}

.page-home .news-item-image-container {
  flex: 0 0 40%;
  min-height: 260px;
  background-size: cover;
  background-position: center center;
}

.page-home .news-item-image-wrapper {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}

.page-home .news-item-image {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 768px) {
  .page-home .news-item {
    flex-direction: column;
  }
}

.page-home .news-item-content {
  padding: 20px;
  flex: 1 1 auto;
  background-color: #efefef;
}

.page-home .news-item-title {
  max-width: 100%;
}

.page-home .more-news-section {
  padding: 5vh 0 10vh;
  background-image: url('/assets/backgrounds/dark-paper.jpg');
  /* border-top-left-radius: 20px;
  border-top-right-radius: 20px; */
}

.page-home .more-news-section h2 {
  color: white;
  text-shadow: 2px 2px 0 black;
}

/* Video section */

.page-home section.video-section {
}

.page-home section.video-section iframe {
  border: 3px solid #333;
  border-radius: 5px;
  overflow: hidden;
  min-height: 220px;
}

/* Music section */

.page-home section.music-section {

}

.page-home section.music-section .playList {
  background-color: #232323;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Store section! */

.page-home section.store-section {
  padding: 50px 0;
  background-image: url('/assets/backgrounds/dark-paper.jpg');
  color: #efefef;
}

.page-home section.store-section .store-item-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}

.page-home section.store-section .store-item {
  padding: 15px;
  flex: 1 1 100%;
}

@media (min-width: 769px) {
  .page-home section.store-section .store-item {
    flex: 1 1 50%;
  }
}

@media (min-width: 1199px) {
  .page-home section.store-section .store-item {
    flex: 1 1 33%;
  }
}

.page-home section.store-section .store-item-image {
  max-width: 100%;
  border-radius: 10px;
  transition: transform 0.25s;
}

.page-home section.store-section .store-item-image:hover {
  transform: scale(0.96);
}

.page-home section.store-section .store-item-description {
}

.page-home section.store-section .store-item-addl-info {
  font-weight: bold;
}

.page-home section.store-section .store-item-price {
  font-size: 2em;
  display: inline-block;
  letter-spacing: -1px;
}

.page-home section.store-section .store-item-price small {
  color: #898989;
}

.page-home section.store-section .store-item-buy-link {
  float: right;
  margin-top: 10px;
}

/* ABOUT SECTION */

.page-home section.about-section {
  padding: 50px 0;
}

.page-home section.about-section .about-sidebar {
  text-align: center;
  letter-spacing: -1px;
  /* text-shadow: 0 0 2px #ebb710; */
}

.page-home section.about-section .about-sidebar h3 {
  text-align: center;
  font-weight: 200;
}

.page-home section.about-section img.band-photo {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 30px;
}

.album-players-container  {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.album-players-container .playList {
  flex: 0 0 32%;
}

@media(max-width: 768px) {
  .album-players-container  {
      flex-direction: column;
    {}

  .album-players-container .playList {
    flex: 0 0 100%;
  }
}
