/* =========================================
   AYKAS AESTHETICS — VIDEO GALLERY
========================================= */

.video-section {
    padding: 100px 0 116px;
  }
  
  
  /* GRID */
  
  .video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
  }
  
  
  /* VIDEO CARD */
  
  .video-gallery-card {
    overflow: hidden;
  
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
  
    background: rgba(255, 255, 255, 0.05);
  
    transition:
      transform 0.25s var(--ease),
      border-color 0.25s var(--ease),
      box-shadow 0.25s var(--ease);
  }
  
  
  .video-gallery-card:hover {
    transform: translateY(-3px);
  
    border-color:
      rgba(199, 165, 255, 0.38);
  
    box-shadow: var(--shadow);
  }
  
  
  /* VIDEO */
  
  .video-frame {
    position: relative;
  
    width: 100%;
  
    aspect-ratio: 16 / 9;
  
    overflow: hidden;
  
    background: #07040c;
  
    border-bottom: 1px solid var(--line);
  }
  
  
  .video-frame video {
    width: 100%;
    height: 100%;
  
    display: block;
  
    object-fit: cover;
  
    background: #07040c;
  }

  .video-frame.portrait-video {
    aspect-ratio: 9 / 16;
    width: min(100%, 380px);
    margin: 0 auto;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  
  
  /* TEXT */
  
  .video-card-copy {
    display: grid;
  
    grid-template-columns:
      minmax(0, 0.8fr)
      minmax(0, 1.2fr);
  
    gap: 28px;
  
    padding: 24px;
  }
  
  
  .video-number {
    display: block;
  
    margin-bottom: 12px;
  
    color: var(--purple-soft);
  
    font-size: 0.7rem;
  
    font-weight: 800;
  
    letter-spacing: 0.14em;
  }
  
  
  .video-card-copy h3 {
    margin: 0;
  
    font-size:
      clamp(1.35rem, 2.4vw, 2rem);
  
    letter-spacing: -0.045em;
  }
  
  
  .video-card-copy p {
    margin: 0;
  
    color: var(--muted);
  
    line-height: 1.65;
  }
  
  
  /* TABLET */
  
  @media (max-width: 900px) {
  
    .video-gallery-grid {
      grid-template-columns: 1fr;
    }
  
  }
  
  
  /* MOBILE */
  
  @media (max-width: 720px) {
  
    .video-section {
      padding: 74px 0 84px;
    }
  
  
    .video-gallery-card {
      border-radius: 20px;
    }
  
  
    .video-card-copy {
      grid-template-columns: 1fr;
  
      gap: 12px;
  
      padding: 20px;
    }
  
  }