/* YouTube Channel Gallery Styles */
.ytcg-gallery-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 20px 0;
}

.ytcg-channel-section {
    margin-bottom: 40px;
}

.ytcg-channel-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.ytcg-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.ytcg-video-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: #fff;
}

.ytcg-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.ytcg-video-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

.ytcg-video-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    background-color: #f0f0f0;
}

.ytcg-video-item h3 {
    font-size: 1em;
    margin: 0;
    padding: 15px;
    line-height: 1.4;
    font-weight: 600;
}

