.shorts-feed {
	height: calc(100vh - 56px);
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	background: #000;
}

.shorts-slide {
	position: relative;
	height: calc(100vh - 56px);
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.shorts-slide .video-js.shorts-player {
	width: 100%;
	height: 100%;
	max-width: calc((100vh - 56px) * 9 / 16);
	margin: 0 auto;
	background: #000;
}

.shorts-slide .video-js .vjs-tech {
	object-fit: contain;
}

.shorts-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
	color: #fff;
	pointer-events: none;
}

.shorts-overlay a {
	pointer-events: auto;
}

.shorts-info {
	max-width: 80%;
}

.shorts-username {
	display: block;
	font-weight: bold;
	color: #fff;
}

.shorts-title {
	margin: 4px 0;
	font-size: 0.9rem;
	word-break: break-word;
}

.shorts-permalink {
	font-size: 0.8rem;
	color: #ddd;
	text-decoration: underline;
}

.shorts-mute-toggle {
	color: #fff;
	font-size: 1.4rem;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 767px) {
	.shorts-feed,
	.shorts-slide {
		height: 100vh;
	}
}
