/**
 * Videogallery Archive — Layout fixes.
 * Removes sidebar, full-width content, proper spacing.
 */

/* Force no sidebar — target multiple possible body classes */
.post-type-archive-videogallery .sidebar,
.post-type-archive-videogallery .widget-area,
.post-type-archive-videogallery .sidebar_inner,
.post-type-archive-videogallery aside,
.tax-video_playlist .sidebar,
.tax-video_playlist .widget-area,
.tax-video_playlist .sidebar_inner,
.tax-video_playlist aside,
body.post-type-archive-videogallery .sidebar,
body.post-type-archive-videogallery aside,
body.tax-video_playlist .sidebar,
body.tax-video_playlist aside {
	display: none !important;
	width: 0 !important;
}

.post-type-archive-videogallery .content_wrap > .content,
.post-type-archive-videogallery .content_wrap .content,
body.post-type-archive-videogallery .content,
.tax-video_playlist .content_wrap > .content,
.tax-video_playlist .content_wrap .content,
body.tax-video_playlist .content {
	width: 100% !important;
	float: none !important;
	max-width: 100% !important;
	margin-right: 0 !important;
	padding-right: 0 !important;
}

.post-type-archive-videogallery .content_wrap,
.tax-video_playlist .content_wrap {
	display: block !important;
}

/* Mega title full-width breakout */
.post-type-archive-videogallery .olimpia-mega-title,
.tax-video_playlist .olimpia-mega-title {
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	max-width: none !important;
}

/* Archive container */
.olimpia-videogallery-archive {
	padding: 2rem 0 3rem;
}

/* Pagination (same style as fotogallery archive) */
.olimpia-videogallery-archive__pagination {
	margin-top: 2.5rem;
	text-align: center;
}

.olimpia-videogallery-archive__pagination .page-numbers {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 0;
	margin: 0;
}

.olimpia-videogallery-archive__pagination .page-numbers li {
	display: inline-block;
}

.olimpia-videogallery-archive__pagination .page-numbers a,
.olimpia-videogallery-archive__pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	color: var(--color-gray-700, #555);
	background: #fff;
	border: 1px solid var(--color-gray-200, #ccc);
	transition: all 0.2s ease;
}

.olimpia-videogallery-archive__pagination .page-numbers a:hover {
	background: var(--color-primary, #AA1A2D);
	color: #fff;
	border-color: var(--color-primary, #AA1A2D);
}

.olimpia-videogallery-archive__pagination .page-numbers .current {
	background: var(--color-primary, #AA1A2D);
	color: #fff;
	border-color: var(--color-primary, #AA1A2D);
}


/* === Search (reuses fotogallery archive search classes) === */
.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-wrap,
.tax-video_playlist .olimpia-fotogallery-archive__search-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	padding-top: 1.5rem;
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-form,
.tax-video_playlist .olimpia-fotogallery-archive__search-form {
	position: relative;
	width: 100%;
	max-width: 400px;
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-icon,
.tax-video_playlist .olimpia-fotogallery-archive__search-icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	pointer-events: none;
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-input,
.tax-video_playlist .olimpia-fotogallery-archive__search-input {
	width: 100%;
	padding: 10px 14px 10px 42px;
	border: 1px solid var(--color-gray-200, #ccc);
	border-radius: var(--radius-pill, 50px);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-input:focus,
.tax-video_playlist .olimpia-fotogallery-archive__search-input:focus {
	border-color: var(--color-primary, #AA1A2D);
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-results,
.tax-video_playlist .olimpia-fotogallery-archive__search-results {
	text-align: center;
	font-size: 14px;
	color: var(--color-gray-700, #555);
	margin-bottom: 1.5rem;
}

.olimpia-videogallery-archive .olimpia-fotogallery-archive__search-clear,
.tax-video_playlist .olimpia-fotogallery-archive__search-clear {
	margin-left: 8px;
	color: var(--color-primary, #AA1A2D);
	text-decoration: none;
	font-weight: 600;
}


/* ─── Pagination Mobile: show only prev/current/next ─── */
@media (max-width: 575px) {
	.olimpia-videogallery-archive__pagination .page-numbers li {
		display: none;
	}

	.olimpia-videogallery-archive__pagination .page-numbers li:has(.prev),
	.olimpia-videogallery-archive__pagination .page-numbers li:has(.next),
	.olimpia-videogallery-archive__pagination .page-numbers li:has(.current) {
		display: inline-block;
	}

	.olimpia-videogallery-archive__pagination .page-numbers li .prev,
	.olimpia-videogallery-archive__pagination .page-numbers li .next,
	.olimpia-videogallery-archive__pagination .page-numbers li .current {
		display: inline-flex;
	}
}
