.xc-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.xc-video-item {
  position: relative;
}

.xc-video-item:nth-child(odd) {
  padding-right: 30px;
}

.xc-video-item:nth-child(even) {
  padding-left: 30px;
}

.xc-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.xc-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.xc-video-title {
  margin-top: 12px;
  font-size: 16px;
  color: #1a73b8;
  cursor: default;
}

.xc-video-title:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .xc-video-grid {
    grid-template-columns: 1fr;
  }

  .xc-video-item {
    border-right: none !important;
    padding: 0 !important;
  }
}

