.pv-block {
  margin: 40px 0;
}

.pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pv-tile {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.pv-tile:hover,
.pv-tile:focus,
.pv-tile:active {
  color: #fff;
  text-decoration: none;
}

.pv-tile__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pv-tile:hover .pv-tile__media {
  transform: scale(1.04);
}

.pv-video-wrap {
  position: absolute;
  inset: 0;
}

.pv-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.05) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.pv-tile__label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.pv-tile__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-tile__text {
  font-size: 17px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-style: normal;
}

.pv-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pv-tile--video:hover .pv-tile__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

.pv-tile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #e2525a, #f2994a);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.pv-tile:hover::after {
  opacity: 1;
}

@media (max-width: 640px) {
  .pv-grid {
    grid-template-columns: 1fr;
  }
  .pv-tile {
    min-height: 280px;
  }
}
