/* Zebra YouTube Display Plugin Styles */
.zebra-yt-container {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eaeaea;
}

.zebra-yt-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #222;
}

.zebra-yt-grid {
    display: grid;
    gap: 20px;
}

.zebra-yt-cols-1 {
    grid-template-columns: 1fr;
}

.zebra-yt-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.zebra-yt-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .zebra-yt-cols-2,
    .zebra-yt-cols-3 {
        grid-template-columns: 1fr;
    }
}

.zebra-yt-item {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.zebra-yt-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.zebra-yt-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.zebra-yt-credit {
    font-size: 0.8rem;
    text-align: right;
    margin-top: 10px;
    color: #777;
}

.zebra-yt-credit a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
}

.zebra-yt-credit a:hover {
    text-decoration: underline;
}
