/**
 * plugins/generic/homepageSlider/css/aboutSlideshow.css
 *
 * Copyright (c) 2026 Muhammad Achya
 *
 * Style untuk slideshow foto (hero) yang tampil tepat di ATAS section
 * "About the Journal" pada homepage.
 */

.homepage-about-slideshow-section {
	/* Full width TERHADAP KOLOM KONTEN (bukan seluruh layar browser),
	   supaya tidak menabrak/menimpa sidebar di sebelahnya. */
	width: 100%;
	margin: 0 0 1.5em;
}
.homepage-about-slideshow-viewport {
	position: relative;
	overflow: hidden;
	background: #eee;
}
.homepage-about-slideshow-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.homepage-about-slideshow-track::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}
.homepage-about-slideshow-slide {
	flex: 0 0 100%;
	scroll-snap-align: start;
	position: relative;
	aspect-ratio: 21 / 8;
}
.homepage-about-slideshow-slide a,
.homepage-about-slideshow-slide .homepage-about-slideshow-noLink {
	display: block;
	width: 100%;
	height: 100%;
}
.homepage-about-slideshow-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}
.homepage-about-slideshow-slide a {
	cursor: pointer;
}
@media (max-width: 780px) {
	.homepage-about-slideshow-slide { aspect-ratio: 16 / 11; }
}
.homepage-about-slideshow-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .35);
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	padding: 0;
}
.homepage-about-slideshow-arrow:hover {
	background: rgba(0, 0, 0, .55);
}
.homepage-about-slideshow-prev { left: 12px; }
.homepage-about-slideshow-next { right: 12px; }
.homepage-about-slideshow-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 2;
}
.homepage-about-slideshow-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .6);
	border: 1px solid rgba(0, 0, 0, .15);
	cursor: pointer;
	padding: 0;
}
.homepage-about-slideshow-dot.active {
	background: #fff;
}
