/* YouTube Feed Styles */
.sf-youtube-section {
    max-width: 970px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 7px;
}

.sf-youtube-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.youtube-slash {
    color: #ff0000; /* Merah YouTube */
}

.sf-youtube-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sf-youtube-video-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.sf-youtube-video-item h3 {
    font-size: 1.1em;
    margin: 10px 0;
    line-height: 1.4;
    font-weight: 600;
}

.sf-youtube-video-item time {
    display: block;
    margin: 10px 0;
    font-size: 0.85em;
    color: #666;
}

/* Mobile: satu kolom */
@media (max-width: 768px) {
    .sf-youtube-title {
        font-size: 1em;
        margin-bottom: 5px;
    }

    .sf-youtube-videos-grid {
        gap: 5px;
    }

    .sf-youtube-video-item h3 {
        font-size: 0.8em;
        margin: 5px 0;
        line-height: 1.3;
    }

    .sf-youtube-video-item time {
        margin: 0;
        font-size: 0.75em;
    }
}