.oib-video-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	max-width: 100%;
	font-family: inherit;
}

/* --- Uniform-size video frame with decorative border --- */
.oib-player-main {
	flex: 1 1 60%;
	min-width: 280px;
}
.oib-video-frame {
	position: relative;
	padding: 6px;
	border-radius: 12px;
	background: linear-gradient(135deg, #4b3f72, #8e6fce 50%, #d9a441);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.oib-main-video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	background: #000;
	border-radius: 7px;
}

.oib-current-title {
	margin: 14px 0 6px;
	font-size: 1.15em;
	line-height: 1.3;
}

/* --- Metadata panel --- */
.oib-meta {
	margin: 6px 0 4px;
	font-size: 0.88em;
	color: #555;
}
.oib-meta-row {
	display: flex;
	gap: 6px;
	margin: 3px 0;
}
.oib-meta-row dt {
	font-weight: 600;
	min-width: 70px;
	color: #333;
}
.oib-meta-row dd {
	margin: 0;
}
.oib-meta-description {
	font-size: 0.92em;
	color: #444;
	line-height: 1.5;
	margin: 8px 0 0;
}

/* --- Dropdown selector --- */
.oib-playlist-dropdown-wrap {
	flex: 1 1 30%;
	min-width: 220px;
}
.oib-dropdown-label {
	display: block;
	font-size: 0.85em;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}
.oib-video-select {
	width: 100%;
	padding: 9px 10px;
	border: 1px solid #cfcfcf;
	border-radius: 6px;
	background: #fff;
	font-size: 0.95em;
	color: #333;
}
.oib-video-select:focus {
	outline: none;
	border-color: #8e6fce;
	box-shadow: 0 0 0 2px rgba(142, 111, 206, 0.25);
}

/* --- Playlist --- */
.oib-playlist {
	flex: 1 1 30%;
	min-width: 240px;
	max-height: 560px;
	overflow-y: auto;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
}
.oib-playlist li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
	transition: background 0.15s ease;
}
.oib-playlist li:last-child {
	border-bottom: none;
}
.oib-playlist li:hover {
	background: #f6f4fb;
}
.oib-playlist li.active {
	background: #ece5f9;
	font-weight: 600;
	box-shadow: inset 3px 0 0 #8e6fce;
}
.oib-playlist li img {
	width: 64px;
	height: 42px;
	object-fit: cover;
	border-radius: 4px;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.oib-playlist li span {
	font-size: 0.92em;
	line-height: 1.3;
}

@media (max-width: 600px) {
	.oib-video-gallery {
		flex-direction: column;
	}
	.oib-playlist {
		max-height: 280px;
	}
}
