/* Remove all padding on mobile */
        @media (max-width: 767px) {
          .main-content-area {
            padding: 0 !important;
            padding-bottom: 0 !important;
            padding-top: 0 !important;
          }
          
          .main-content-area.pt-0 {
            padding-top: 0 !important;
          }
          
          .video-player-content {
            padding: 0 !important;
          }
          
          /* Reduce user info margins */
          .video-author-info-list {
            margin-top: 0 !important;
            margin-bottom: 2px !important;
          }
          
          .video-author-info-list .author-details {
            margin-bottom: 0 !important;
          }
          
          /* Override Bootstrap mb-3 on title */
          .video-player-top-heading-block h2.mb-3 {
            margin-bottom: 6px !important; /* Slightly more than 4px for better readability */
          }
          
          /* Reduce author info spacing */
          .author-details .imgbox {
            margin-right: 8px !important;
          }
          
          .author-details .d-flex {
            gap: 4px !important;
          }
        }

