<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.list--video {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--grid-gap);
}

.list__item--video {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}


.list__photo--video {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 302px;
  height: 189px;
}

.list__photo--video:hover {
  border: none;
}

.list__photo-image--video {
  flex: 0;
  border-radius: 4px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

@media screen and (max-width: 1087px) {
  .list__photo--video {
    flex: 0 1 auto;
    width: 100%;
    height: fit-content;
    min-height: 189px;
    max-height: 50vh;
  }
}

@media screen and (max-width: 1087px) and (min-width: 736px) {
  .list--video {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 735px) {
  .list--video {
    grid-template-columns: 1fr;
  }
}
</pre></body></html>