.fz-library-kicker {
  margin: 0 0 14px;
  color: #bca175;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.fz-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 16px;
}

.fz-library-poster {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #171716;
}

.fz-library-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.fz-library-poster > span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  background: #d8c39c;
  color: #111;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.fz-library-card:hover img {
  transform: scale(1.025);
  filter: brightness(.74);
}

.fz-library-poster.is-pending img {
  filter: grayscale(.35) brightness(.55);
}

.fz-library-poster.is-pending > span {
  background: #302d28;
  color: #c9c0b1;
}

.fz-library-card h3 {
  margin: 14px 0 3px;
  font-size: 22px;
  font-weight: 500;
}

.fz-library-card p,
.fz-library-empty p {
  color: #827e77;
}

.fz-library-card p {
  margin: 0;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fz-library-empty {
  max-width: 520px;
  padding: 70px 0;
}

.fz-library-empty > span {
  color: #2a2927;
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: 1;
}

.fz-player h2 {
  margin: 0 0 28px;
}

.fz-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}

.fz-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.fz-order-library-link {
  margin: 42px 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #36322c;
  background: #121210;
}

.fz-order-library-link h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  text-transform: uppercase;
}

.fz-order-library-link > p:not(.fz-library-kicker) {
  max-width: 560px;
  margin-bottom: 24px;
  color: #918b81;
}

@media (max-width: 700px) {
  .fz-library-grid {
    grid-template-columns: 1fr;
  }
}
