/* Insta Feed – Reels-Ansicht (horizontal swipebar) */

.wif-reels-wrap {
	max-width: 500px;
	margin: 1.5em auto;
}

.wif-reels {
	position: relative;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
}

.wif-reels-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.wif-reels-track::-webkit-scrollbar {
	display: none;
}

.wif-reel {
	position: relative;
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	height: min(80vh, 700px);
	background: #000;
}

.wif-reel-media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wif-reel-media .wif-card-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Overlay unten mit Aktionen + Caption */
.wif-reel-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 16px 16px;
	background: linear-gradient( to top, rgba( 0, 0, 0, 0.65 ), rgba( 0, 0, 0, 0 ) );
	color: #fff;
	pointer-events: none;
}

.wif-reel-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	pointer-events: auto;
}

.wif-reel-actions .wif-like-button {
	color: #fff;
}

.wif-reel-actions .wif-like-count {
	color: #fff;
}

.wif-reel-comments-btn {
	background: none;
	border: none;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.wif-reel-caption {
	margin-top: 8px;
	font-size: 14px;
	pointer-events: auto;
	text-shadow: 0 1px 2px rgba( 0, 0, 0, 0.6 );
}

/* Navigationspfeile (Desktop) */
.wif-reel-nav {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	z-index: 5;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba( 255, 255, 255, 0.85 );
	color: #262626;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: none;
}

.wif-reel-prev {
	left: 8px;
}

.wif-reel-next {
	right: 8px;
}

@media ( hover: hover ) and ( pointer: fine ) {
	.wif-reel-nav {
		display: block;
	}
}

/* Kommentar-Panel gleitet von unten ein */
.wif-reel-comments-panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: 70%;
	overflow-y: auto;
	background: #fff;
	color: #262626;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	padding: 30px 14px 14px;
	z-index: 6;
}

.wif-reel-comments-panel[hidden] {
	display: none;
}

.wif-reel-comments-close {
	position: absolute;
	top: 6px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #8e8e8e;
}

/* Im Panel den normalen Kommentar-Block ohne oberen Rahmen zeigen */
.wif-reel-comments-panel .wif-card-comments {
	padding: 0;
}
