/************************************************* PRESS POST TYPE ************************************************/

/* GLOBAL BACKGROUND (FIXED LIKE OTHER PAGES) */

body.post-type-archive-press {
  background-image: url('https://thealpineclub.com/wp-content/uploads/alpine-bg-scaled.jpg');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* MOBILE FIX */

@media (max-width: 1024px) {
  body.post-type-archive-press {
    background-attachment: scroll;
  }
}

/* CONTAINER */

.PressArchive .BaseLayout.boxed {
  padding-top: 115px;
}

.PressArchive__customcontent {
  max-width: 900px;
  margin: 50px auto 100px;
  text-align: center;
}

/* TITLE */

.PressArchive__title {
  margin: 0 auto 20px;
  text-align: center;
  color: #8D9A93;

  opacity: 0;
  transform: translateY(30px);
  animation: pressFadeUp 0.8s ease forwards;
  animation-delay: 0.05s;
}

/* COPY */

.PressArchive__copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
  color: #F8EFE1;

  opacity: 0;
  transform: translateY(30px);
  animation: pressFadeUp 0.8s ease forwards;
  animation-delay: 0.15s;
}

.PressArchive__copy p:last-child {
  margin-bottom: 0;
}

/* CARD LAYOUT */

.PressCard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 80px;
  border: 3px solid rgba(255,255,255,0.2);

  opacity: 0;
  transform: translateY(40px);
  animation: pressFadeUp 0.8s ease forwards;
}

/* STAGGER EFFECT */

.PressCard:nth-of-type(1) { animation-delay: 0.1s; }
.PressCard:nth-of-type(2) { animation-delay: 0.2s; }
.PressCard:nth-of-type(3) { animation-delay: 0.3s; }
.PressCard:nth-of-type(4) { animation-delay: 0.4s; }
.PressCard:nth-of-type(5) { animation-delay: 0.5s; }

/* IMAGE */

.PressCard__image {
  height: 500px;
  overflow: hidden;
}

.PressCard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.PressCard__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;

  background: transparent;
  color: #fff;
}

p.PressCard__source {
  margin: 0;
  margin-block-start: 0 !important;
  text-transform: uppercase;
  font-size: 14px;
  color: #8D9A93;
  letter-spacing: 1px;
}

/* TITLE */

.PressCard__title {
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #F8EFE1;
}

/* DATE */

.PressCard__date {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.PressCard__date::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin-top: 20px;
}

/* EXCERPT */

.PressCard__excerpt {
  margin-top: 20px;
  line-height: 1.6;
  color: #F8EFE1;
  opacity: 0.9;
}

/* BUTTON */

.PressCard__content .btn {
  margin-top: 30px;
  align-self: flex-start;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

  .PressCard {
    grid-template-columns: 1fr;
  }

  .PressCard__image {
    height: 350px;
  }

  .PressCard__content {
    padding: 40px;
  }

}

@media (max-width: 768px) {

  .PressArchive {
    padding: 60px 0;
  }

  .PressArchive .BaseLayout.boxed {
    padding-top: 90px;
  }

  .PressArchive__customcontent {
    margin: 30px auto 60px;
  }

  .PressCard__content {
    padding: 30px;
  }

  .PressCard__title {
    font-size: 22px;
  }

}

/* KEYFRAMES */

@keyframes pressFadeUp {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/************************************************* PRESS POST TYPE END ************************************************/