.youtube-xml-grid {
    display: grid;
    gap: 10px;
    margin: 20px auto;
    grid-template-columns: repeat(3, 1fr);
}

.youtube-video-item {
    height: 100%;
    
}

.youtube-video-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 3px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.youtube-video-title {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
}

.youtube-video-views {
    font-size: 14px;
    color: #555;
}

.youtube-xml-error {
    color: red;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 768px) {
    .youtube-xml-grid {
        grid-template-columns: 1fr !important;
    }
}
