/**
 * Video grid component style.
 */
:root {
  --video-grid-gutter: 1.5rem;
}
@media (min-width: 600px) {
  :root {
    --video-grid-gutter: 2.4rem;
  }
}

.c-video-grid .c-container {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 560px) {
  .c-video-grid .c-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.c-video-grid .c-figure {
  width: 100%;
  margin-top: var(--video-grid-gutter);
}
@media (min-width: 560px) {
  .c-video-grid .c-figure {
    width: calc(50% - var(--video-grid-gutter) / 2);
    margin-right: 0;
    margin-left: 0;
  }
}
.c-video-grid.odd .c-figure:first-of-type {
  width: 100%;
}
.c-video-grid .video-grid__title {
  flex-basis: 100%;
  margin-bottom: 0;
}