.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 20px;
    
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    background: var(--voice-color);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    margin-bottom: 10px;
}

.profile-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    margin-left: -30px;

}

.channel-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    
}

.channel-name {
    font-size: 1rem;
    font-weight: bold;
    color: var(--black-color);
    font-family: "Ubuntu", serif;
    
}

.channel-description {
    font-size: 0.9rem;
    color: var(--secondary-color);
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: block;
    max-width: 200px; 
    padding:  0 0 10px 0;
    
}


.video-item h3 {
    font-size: 1.2rem;
    margin: 5px 0;
    color: var(--black-color);
    margin-top: -5px;
    
}

.video-item small {
    font-size: 0.9rem;
    color: var(--secondary-color);
  
}


@media (max-width: 767px) {
    .video-grid {
        max-width: 100%;
    }

}