/* =========================
   VIDEOS PAGE STYLES
========================= */

/* Videos Section Grid */
.videos-section {
    padding: 50px 5%;
    background-color: #f9f9f9;
  }
  
  .videos-section h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e90ff;
  }
  
  /* Grid layout */
  .videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  /* Video Card */
  .video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
  
  .video-card iframe {
    width: 100%;
    height: 215px;
    border: none;
  }
  
  /* Card hover effect */
  .video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  /* Video title */
  .video-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 12px 0 6px;
    color: #333;
  }
  
  /* "Know More" toggle */
  .more-less {
    display: inline-block;
    margin-bottom: 10px;
    color: #1e90ff;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .more-less:hover {
    color: #0b5ed7;
  }
  
  /* Full text (hidden by default) */
  .full-text {
    display: none;
    padding: 0 15px 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    text-align: justify;
  }
  
  /* Show full text when active */
  .full-text.active {
    display: block;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .videos-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }
  