/* Video Block Styles */
.video-block {
    width: 100%;
    border-radius: 12px;
    padding: 20px;
    background-color: #F4F6FA;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.video-block__heading {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    font-family: system-ui, sans-serif;
}

.video-block__container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 4px;
}

.video-block__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.video-block__transcript {
    margin-top: 16px;
    text-align: center;
}

.video-block__transcript-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #D8DEE8;
    border-radius: 4px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: system-ui, sans-serif;
    transition: all 0.2s ease;
}

.video-block__transcript-link:hover {
    background-color: #f8f9fa;
    color: #212529;
    text-decoration: none;
}

.video-block__transcript-link::before {
    content: "📄";
    margin-right: 6px;
}

/* Error state */
.video-block--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.video-block--error p {
    margin: 0;
    font-family: system-ui, sans-serif;
}

.video-block--error p + p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-block {
        padding: 16px;
        margin: 15px 0;
    }
    
    .video-block__heading {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .video-block__transcript {
        margin-top: 12px;
    }
    
    .video-block__transcript-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}