/**
 * Profile Videos Styles
 *
 * Minimal structural styles for profile videos shortcode
 * Design-less for Elementor customization
 */

/* Container */
.we-profile-videos {
    width: 100%;
}

/* Videos Container - Vertical Stacking */
.we-profile-videos__container {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

/* Individual Video Item */
.we-profile-videos__item {
    width: 100%;
    position: relative;
}

/* Video Element - Full Width, Responsive */
.we-profile-videos__video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    outline: none;
    border-radius: 20px;
}

/* Focus State for Accessibility */
.we-profile-videos__video:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

/* Empty State */
.we-profile-videos__empty {
    width: 100%;
    padding: 2rem;
    text-align: center;
}

.we-profile-videos__empty p {
    margin: 0;
    opacity: 0.7;
}
