.apple-tv-card-container {
  position: relative;
  width: 100%;
  padding-bottom: 3.5rem;
}
.apple-tv-card-container.no-title {
  padding-bottom: 0;
}
.apple-tv-card-container > .apple-tv-card {
  width: 100%;
  border-radius: min(max(8px, 8px), 8px);
  transform-origin: 50%;
  transition: transform 50ms ease-in-out;
  transform-style: preserve-3d;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.apple-tv-card-container > .apple-tv-card.not-rounded {
  border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
  .apple-tv-card-container > .apple-tv-card {
    transition: none;
  }
}
.apple-tv-card-container > .apple-tv-card.hover,
.apple-tv-card-container > .apple-tv-card:focus-within {
  box-shadow: 0 1.5rem 2rem 0.25rem #0005;
  outline: none;
  transform: translateZ(4rem);
}
.apple-tv-card-container > .apple-tv-card.hover + .apple-tv-card-title,
.apple-tv-card-container > .apple-tv-card:focus-within + .apple-tv-card-title {
  bottom: 0.9rem;
  opacity: 1;
}
.apple-tv-card-container > .apple-tv-card > .shadow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: #0002;
  opacity: 0;
  z-index: 3;
}
.apple-tv-card-container > .apple-tv-card > .reflection {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(#fff7, transparent 70%);
  transform: translateY(-100%);
  z-index: 4;
}
.apple-tv-card-container > .apple-tv-card > .content {
  display: flex;
  cursor: pointer;
}
.apple-tv-card-container > .apple-tv-card > .content > img {
  flex: 1;
  pointer-events: auto;
}
.apple-tv-card-container > .apple-tv-card > .content > a {
  pointer-events: auto;
}
.apple-tv-card-container > .apple-tv-card > .content * {
  pointer-events: none;
}
.apple-tv-card-container > .apple-tv-card > .parallax-content {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 50ms ease-in-out;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .apple-tv-card-container > .apple-tv-card > .parallax-content {
    transition: none;
  }
}
.apple-tv-card-container > .apple-tv-card-title {
  position: absolute;
  pointer-events: none;
  bottom: 1.3rem;
  left: 0;
  right: 0;
  opacity: 0;
  text-align: center;
  font-size: 1.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  text-shadow: 0 1px 2px #000;
  transition: opacity 0.12s ease-in-out, bottom 0.09s ease-in-out;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media (prefers-reduced-motion: reduce) {
  .apple-tv-card-container > .apple-tv-card-title {
    transition: none;
  }
}
.apple-tv-card-container > .apple-tv-card-title.always-visible {
  opacity: 1;
}
