.videoEditor {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.videoEditorIcon {
    margin-bottom: 12px;
}

.videoEditorText {
    font-weight: 400;
    text-align: center;
    color: #232323;
    margin-bottom: 20px;
}

.videoPlayer {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.videoPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
} 