/* ============================
   YouTube Video List Styles
   Prefix: yt-
============================ */

.yt-videos-section {
    margin-top: 30px;
}

.yt-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-left: 10px;
}

.yt-video-item {
    margin-bottom: 15px;
}

.yt-video-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 20px;
}

.yt-thumbnail {
    width: 120px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
    flex-shrink: 0;
}

.yt-video-info {
    display: flex;
    flex-direction: column;
}

.yt-video-title {
    font-weight: bold;
    font-size: 1em;
    margin-bottom: 5px;
}

.yt-video-date {
    font-size: 0.9em;
    color: gray;
}
/* Additional for homepage teaser grid */

.yt-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
}

.yt-video-item-grid {
    text-align: center;
}

.yt-video-link-grid {
    text-decoration: none;
    color: inherit;
}

.yt-thumbnail-grid {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 8px;
}

.yt-video-title-grid {
    font-size: 0.95em;
    font-weight: bold;
    color: #bbb5b5;
}

.yt-more-videos-link {
    text-align: center;
    margin-top: 20px;
}

.yt-more-videos-link a {
    display: inline-block;
    text-decoration: none;
    color: #c00;
    font-weight: bold;
}
