.spm-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.spm-row {
	background-color: #111118;
	border: 0.5px solid #23232e;
	border-radius: 10px;
	overflow: hidden;
}

.spm-row-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
}

.spm-play {
	width: 26px;
	height: 26px;
	min-width: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
}

.spm-play i,
.spm-play svg {
	color: #5b8def;
	fill: #5b8def;
	font-size: 12px;
}

.spm-icon-play,
.spm-icon-pause {
	display: flex;
	align-items: center;
	justify-content: center;
}

.spm-icon-pause {
	display: none;
}

.spm-play.is-playing .spm-icon-play {
	display: none;
}

.spm-play.is-playing .spm-icon-pause {
	display: flex;
}

.spm-title {
	flex: 1;
	font-size: 13px;
	color: #f5f5f7;
}

.spm-duration {
	font-size: 11px;
	color: #7a7a88;
}

.spm-tutorial-btn {
	background: transparent;
	border: 0.5px solid #2e5aa8;
	color: #5b8def;
	border-radius: 16px;
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
}

.spm-tutorial-btn i {
	font-size: 10px;
	transition: transform 0.2s ease;
}

.spm-tutorial-btn.is-open i {
	transform: rotate(180deg);
}

.spm-tutorial-panel {
	border-top: 0.5px solid #1c1c26;
	padding: 14px;
	background: #0d0d13;
}

.spm-video-wrap {
	max-width: 360px;
}

.spm-video-wrap iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	border: none;
	display: block;
}

/* Videos verticales (Shorts / Reels): caja angosta en vez de 16:9,
   asi no se recorta ni se estira el contenido */
.spm-video-wrap--vertical {
	max-width: 220px;
}

.spm-video-wrap--vertical iframe {
	aspect-ratio: 9 / 16;
}

.spm-tutorial-note {
	font-size: 11px;
	color: #7a7a88;
	margin: 8px 0 0;
}
