.glass-card{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
} 
 
 
 .videos-page{
  padding: 10rem 6rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.videos-head h1{
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: .5rem;
  color: var(--near-white);
}

.videos-head p{
color: var(--near-white);
  margin-bottom: 4rem;
}

.videos-grid{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.video-card{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.video-card video{
  width: 100%;
  border-radius: 1rem;
  background: black;
}

.video-desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-desc h3{
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--near-white);
}

.video-desc p{
color: var(--near-white);
  line-height: 1.6;
}

.next-project{
  margin-top: 3rem;
  padding: 2rem;
}
.next-project-link{
  display: block;
  text-decoration: none;
  color: var(--near-white);
}
.next-project-link span{
  opacity: .7;
}
.next-project-link h3{
  margin: .35rem 0 0;
}


/* Responsive */
@media (max-width: 900px){
  .video-card{
    grid-template-columns: 1fr;
  }
}