.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  width: calc(100% - 2rem);
  height: 100%;
  max-width: 1068px;
}
@media (min-width: 768px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2.125rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: calc(100% - 2.5rem);
  }
}
@media (min-width: 1024px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
    margin-left: 3rem;
    margin-right: 3rem;
    width: calc(100% - 6rem);
  }
}
@media (min-width: 1440px) {
  .grid-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 1288px;
  }
}

.spoke-grid {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .spoke-grid {
    grid-column: 1/span calc(var(--grid-content-base-tablet-span) + 3);
  }
}
@media (min-width: 1440px) {
  .spoke-grid {
    grid-column: var(--grid-content-start-on-desktop)/span calc(var(--grid-content-base-desktop-span) + 4);
  }
}
.spoke-grid .grid-container {
  --grid-content-base-desktop-span: 4;
}

.hub-and-spoke-video-section {
  padding-bottom: 4rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .hub-and-spoke-video-section {
    padding-bottom: 7.5rem;
  }
}
.hub-and-spoke-video-section .grid-container .video-component {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component {
    grid-column: 1/span calc(var(--grid-content-base-tablet-span) + 3);
  }
}
@media (min-width: 1440px) {
  .hub-and-spoke-video-section .grid-container .video-component {
    grid-column: var(--grid-content-start-on-desktop)/span calc(var(--grid-content-base-desktop-span) + 4);
  }
}
.hub-and-spoke-video-section .grid-container .video-component .section-title {
  font-family: proxima-nova, sans-serif;
  font-size: 1.75rem !important;
  line-height: normal !important;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.25px;
  text-align: center;
  padding-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .hub-and-spoke-video-section .grid-container .video-component .section-title {
    font-size: 2rem !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal !important;
    letter-spacing: -0.25px;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block {
  filter: drop-shadow(0px 1.2309608459px 4.3083629608px rgba(19, 21, 28, 0.1));
  display: block;
  cursor: pointer;
  color: inherit;
  text-decoration: inherit;
  width: 100%;
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-cover {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  height: 188px;
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-cover {
    height: 440px;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-cover .video-play-button {
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-cover .video-play-button {
    width: 126px;
    height: 126px;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background-color: #f9f9f9;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding-left: 0.5rem;
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar {
    padding: 1.75rem;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content {
  display: flex;
  grid-column: span 3/span 3;
  align-items: center;
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .bottom-bar-avatar {
  width: 29px;
  height: 29px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 999px;
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .bottom-bar-avatar {
    width: 92px;
    height: 92px;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .video-bottom-bar-text {
  padding-left: 1.75rem;
}
@media (min-width: 320px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .video-bottom-bar-text {
    font-size: 6.155px;
    font-style: normal;
    font-weight: 700;
    line-height: 8.617px;
  }
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .video-bottom-bar-text {
    font-family: proxima-nova, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.25px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-left-content .video-bottom-bar-text {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.25px;
  }
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-right-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-column: span 1/span 1;
}
.hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-right-content .video-bottom-bar-time {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-radius: 0.375rem;
  color: white;
  background-color: black;
}
@media (min-width: 320px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-right-content .video-bottom-bar-time {
    font-size: 6.155px;
    font-style: normal;
    font-weight: 700;
    line-height: 8.617px;
  }
}
@media (min-width: 768px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-right-content .video-bottom-bar-time {
    font-family: proxima-nova, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.25px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .hub-and-spoke-video-section .grid-container .video-component .video-block .video-bottom-bar .video-right-content .video-bottom-bar-time {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.25px;
  }
}