/* PRESS GRID */
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 640px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
}

/* Featured */
.press-card-featured {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 3px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  transition: box-shadow .25s, transform .2s;
}

.press-card-featured:hover {
  #box-shadow: 0 10px 32px rgba(109, 26, 52, .1);
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .press-card-featured {
    grid-template-columns: 1fr;
  }
}

/* Regular */
.press-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .2s;
}

.press-card:hover {
  #box-shadow: 0 8px 24px rgba(109, 26, 52, .09);
  transform: translateY(-3px);
}

/* Image */
.pc-img {
  overflow: hidden;
  flex-shrink: 0;
}

.press-card-featured .pc-img {
  height: 100%;
  min-height: 260px;
}

.press-card .pc-img {
  height: 180px;
}

.pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s;
}

.press-card:hover .pc-img img,
.press-card-featured:hover .pc-img img {
  transform: scale(1.04);
}

@media (max-width: 700px) {
  .press-card-featured .pc-img {
    height: 200px;
  }
}

/* Body */
.pc-body {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.press-card-featured .pc-body {
  padding: 2rem;
}

/* Meta */
.pc-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: .7rem;
  flex-wrap: wrap;
}

.pc-source {
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pc-source::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--red);
}

.pc-year {
  font-size: .62rem;
  color: var(--muted);
  padding: 1px 7px;
  border: 1px solid var(--bdr);
  border-radius: 1px;
}

.pc-format {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1px 7px;
  border-radius: 1px;
}

.pc-format.pdf {
  background: rgba(94, 135, 182, .08);
  border: 1px solid rgba(94, 135, 182, .2);
  color: #3d6a9a;
}

.pc-format.img {
  background: rgba(90, 122, 58, .07);
  border: 1px solid rgba(90, 122, 58, .2);
  color: var(--acc);
}

/* Title */
.pc-title {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .55rem;
}

.press-card-featured .pc-title {
  font-size: 1.6rem;
}

.press-card .pc-title {
  font-size: 1.1rem;
}

/* Excerpt */
.pc-excerpt {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

.press-card-featured .pc-excerpt {
  font-size: .88rem;
}

/* Link */
.pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 1px solid rgba(109, 26, 52, .2);
  padding-bottom: 1px;
  transition: gap .15s;
  width: fit-content;
}

.btn-link {
	margin-top:20px;  
}

/* SIDEBAR */
.sb-box {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 2px;
  padding: 1.4rem;
  margin-bottom: 14px;
}

.sb-box:first-child {
  border-top: 3px solid var(--red);
}

.sb-ttl {
  font-size: .59rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1.1rem;
}

.sb-ttl::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--red);
}

/* Booking */
.bbook {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .95rem 1.1rem;
  border-radius: 2px;
  transition: all .15s;
  text-decoration: none;
  margin-bottom: 9px;
}

.bbook:last-child {
  margin-bottom: 0;
}

.bbook.primary {
  background: var(--red);
  color: #fff;
}

.bbook.primary:hover {
  background: var(--red2);
}

.bbook.secondary {
  background: var(--cream2);
  border: 1px solid var(--bdr);
}

.bbook.secondary:hover {
  border-color: var(--red);
  background: rgba(109, 26, 52, .05);
}

.bbook-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bbook-text strong {
  display: block;
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.2;
}

.bbook.primary .bbook-text strong {
  color: #fff;
}

.bbook.secondary .bbook-text strong {
  color: var(--dark);
}

.bbook-text span {
  font-size: .69rem;
  opacity: .65;
  display: block;
}

.bbook.primary .bbook-text span {
  color: rgba(255, 255, 255, .8);
}


@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hbg {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-logo {
    margin-right: 0;
  }

  #mob-p {
    display: none;
    background: #fff;
    border-top: 1px solid var(--bdr);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  }

  #mob-p.open {
    display: block;
  }

  .mob-it {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--bdr);
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
    font-family: var(--sans);
  }

  .mob-it:hover {
    background: var(--cream);
  }

  .mob-sub {
    display: none;
    background: var(--cream);
    border-bottom: 1px solid var(--bdr);
  }

  .mob-sub.open {
    display: block;
  }

  .mob-sub a {
    display: block;
    padding: 9px 20px 9px 36px;
    font-size: 13px;
    color: var(--muted);
  }

  .mob-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 20px;
    background: var(--cream);
  }

  .mob-cta a {
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 2px;
  }

  .mob-cb {
    background: var(--red);
    color: #fff;
  }

  .mob-cg {
    color: var(--red);
    border: 1px solid rgba(109, 26, 52, .3);
  }

  .mob-arr {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid var(--muted);
    border-bottom: 1.5px solid var(--muted);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .mob-it.open .mob-arr {
    transform: rotate(225deg);
    border-color: var(--acc);
  }
}
