/**
 * Breakpoints
 */
/**
 * Typography
 */
/**
 * Grid
 */
/**
 * Colors
 */
/**
 * Spacing
 */
/**
* Font Sizes
*/
/**
 * Components
 */
/**
 * Animations
 */
/*
 * Media query to respond to a minimum size (mobile first)
 */
/*
 * Media query to respond to a maximum size
 */
/*
 * Output font size in px/rem
 */
/*
 * Placeholder mixin for <input>
 */
/**
 * Clearfix
 */
.section--video-grid {
  overflow: hidden;
  padding: 48px 0;
}
.section--video-grid.background-light_grey {
  background-color: #E6E6E6;
}
.section--video-grid .video__name {
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 24px;
}
.section--video-grid .video__role {
  margin-bottom: 24px;
}
.section--video-grid .video__item {
  position: relative;
  height: 390px;
}
.section--video-grid .video__item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 7.5px;
}
.section--video-grid .video__item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
}
.section--video-grid .video__item .play-button:hover svg {
  transform: scale(1.05);
}
.section--video-grid .video__item .play-button svg {
  width: 60px;
  transition: transform 250ms;
}
@media screen and (max-width: 1024px) {
  .section--video-grid .video__item {
    height: auto;
  }
}
