  .mcla-student-voices {
  padding: 42px 0;
}
.mcla-student-voices .mcla-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.mcla-student-voices__section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.mcla-student-voices::-moz-selection { /* Code for Firefox */
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}
.mcla-student-voices::selection {
  background: var(--preset-color-brand-dark-blue);
  color: var(--preset-color-brand-electric-yellow);
}


.mcla-student-voices__section-title {
  transform: translateY(45px);
  opacity: 0;
  transition: all 0.6s;
}
.mcla-student-voices__section-sub {
  transform: translateY(45px);
  opacity: 0;
  transition: all 0.6s 0.15s;
}

.mcla-student-voices__videos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  transition: all 0.6s 0.15s;
  transform: translateX(45px);
  opacity: 0;
}
.mcla-student-voices__videos-item {
  position: relative;
  width: 100%;
  max-width: calc((100% / 2) - 6px);
  aspect-ratio: 9 / 16;
  cursor: pointer;
  transition: all 0.6s;
  overflow: hidden;
  border: 0;
  outline-color: var(--preset-color-brand-light-blue);
}
.mcla-student-voices__videos-item:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
  transform: scale(1.005);
}
.mcla-student-voices__videos-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 6px;
  background-color: var(--preset-color-brand-electric-yellow);
  transition: all 0.6s;
  transform: translateY(6px);
}
.mcla-student-voices__videos-item:hover::after {
  transform: translateY(0);
}
.mcla-student-voices__videos-item-controls {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 0;
  background-color: var(--preset-color-brand-electric-yellow);
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.6s;
}
.mcla-student-voices__videos-item:hover .mcla-student-voices__videos-item-controls {
  background-color: var(--preset-color-brand-light-blue);
  transform: translate(-50%, -50%) scale(1.125);
}
.mcla-student-voices__videos-item-message {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 2;
  font-family: Knockout52Cruiserweight, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-weight: 375;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  color: var(--preset-color-standard-white);
  padding: 9px;
  margin: 0;
}

.mcla-student-voices__videos-item-media {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.mcla-student-voices__videos-item-media::before { 
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 170px;
  z-index: 1;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); 
}
.mcla-student-voices__videos-item-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Animation Styles */
.mcla-student-voices.in-view .mcla-student-voices__section-title {
  opacity: 1;
  transform: translateY(0);
}
.mcla-student-voices.in-view .mcla-student-voices__section-sub {
  opacity: 1;
  transform: translateY(0);
}
.mcla-student-voices.in-view .mcla-student-voices__videos {
  transform: translateX(0);
  opacity: 1;
}

@media (min-width: 750px) {
  .mcla-student-voices {
    padding: 90px 0;
  }
  .mcla-student-voices .mcla-container {
    gap: 42px;
  }
  .mcla-student-voices__section {
    gap: 12px;
  }

 
  .mcla-student-voices__videos-item-message {
    padding: 30px;
    font-size: 16px;
    line-height: 24px;
  }
  .mcla-student-voices__videos-item-controls {
    width: 48px;
    height: 48px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  
}
@media (min-width: 1025px) {
  .mcla-student-voices__videos {
    gap: 15px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .mcla-student-voices__videos-item {
    max-width: 280px;
  }
}