/**
 * Estilos para Player de Vídeo HTML5
 * Preserva proporções originais do vídeo sem medidas hard-coded
 *
 * @package MAIS_Theme
 */

.mais-video-player-wrapper {
	position: relative;
	width: auto;
	height: 100%;
	max-width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mais-video-player {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Mensagem de erro */
.mais-video-error {
	color: #d63638;
	padding: 1em;
	background-color: #fcf0f1;
	border-left: 4px solid #d63638;
}
