/**
 * Shortcode [beley_latest_videos] – styles
 */

.video-section.beley-latest-videos-section {
	width: 90%;
	max-width: var(--beley-container, 1200px);
	margin: 0 auto;
	padding: 20px;
	background-color: var(--beley-primary);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.video-section.beley-latest-videos-section .video-container.beley-latest-videos-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.video-section.beley-latest-videos-section .video-container.beley-latest-videos-container iframe {
	width: calc(33.333% - 10px);
	aspect-ratio: 16 / 9;
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	background: #000;
}

@media (max-width: 768px) {
	.video-section.beley-latest-videos-section .video-container.beley-latest-videos-container iframe {
		width: 100%;
	}
}

.beley-latest-videos-error {
	color: var(--beley-text);
	margin: 1rem 0;
	padding: 0.75rem 1rem;
	background: var(--beley-bg-alt, #f7fafc);
	border-left: 4px solid var(--beley-primary);
	border-radius: 4px;
}
