.pddivs-video-wall {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pddivs-video-wall__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.pddivs-video-wall__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.pddivs-video-wall__title {
  font-weight: 600;
}

.pddivs-video-wall__desc {
  color: #5b5b5b;
  font-size: 14px;
}

.pddivs-video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.pddivs-video-modal[aria-hidden="false"] {
  display: flex;
}

.pddivs-video-modal__content {
  background: #ffffff;
  width: min(900px, 100%);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  display: grid;
  gap: 16px;
  z-index: 1;
}

.pddivs-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.pddivs-video-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.pddivs-video-modal__meta {
  display: grid;
  gap: 8px;
}

.pddivs-modal-open {
  overflow: hidden;
}
