.videos-player {
  margin: 0 0 30px;
}

.videos-player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.videos-player h2 {
  margin: 14px 0 0;
  font-size: 18px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.videos-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
}

.videos-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #19333a14;
}

.videos-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .15s ease;
}

.videos-card:hover .videos-thumb {
  transform: scale(1.03);
}

.videos-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: #19333a4a;
  opacity: 0;
  transition: opacity .15s ease;
}

.videos-card:hover .videos-play {
  opacity: 1;
}

.videos-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.videos-card-date {
  font-size: 11px;
  color: #68716e;
}

.videos-empty {
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px dashed #aaa;
  background: #fffaf188;
  text-align: center;
  color: #69716e;
  font-size: 13px;
}

@media (max-width: 800px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
}
