/**
 * Rensi YouTube Latest Video - Frontend Styles
 */

.rensi-youtube-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.rensi-youtube-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rensi-youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.rensi-youtube-title {
    font-family: "Neris", Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #602076;
    margin-bottom: 1rem;
    text-align: center;
}

.rensi-youtube-description {
    margin-top: 1rem;
    padding: 1rem;
    background: #f6f6f6;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.rensi-youtube-description p:last-child {
    margin-bottom: 0;
}

.rensi-youtube-error {
    padding: 1rem;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    color: #856404;
    font-size: 0.9rem;
}

.rensi-youtube-error a {
    color: #602076;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .rensi-youtube-title {
        font-size: 1.25rem;
    }

    .rensi-youtube-embed {
        border-radius: 8px;
    }

    .rensi-youtube-embed iframe {
        border-radius: 8px;
    }
}
