/**
 * plugins/generic/homepageSlider/css/indexedByCarousel.css
 *
 * Copyright (c) 2026 Muhammad Achya
 *
 * Style untuk carousel "Indexed In" di homepage.
 * Dipisah dari templates/indexedByCarousel.tpl supaya HTML halaman
 * homepage tidak memuat blok <style> inline.
 */

.homepage-indexedby-section {
	margin: 0 0 1.2em;
}
.homepage-indexedby-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: 1.15em;
	margin: 0 0 .4em;
	color: #111;
}
.homepage-indexedby-rule {
	border: none;
	border-top: 1px solid #e5e5e5;
	margin: 0 0 .8em;
}
.homepage-indexedby-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
.homepage-indexedby-track {
	display: flex;
	gap: 12px;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	padding: 2px;
	flex: 1 1 auto;
	min-width: 0;
	max-width: 100%;
	touch-action: pan-x !important;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.homepage-indexedby-track::-webkit-scrollbar {
	display: none;
	height: 0;
	width: 0;
}
.homepage-indexedby-card {
	flex: 0 0 auto;
	width: 180px;
	padding: 4px;
	text-align: center;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.homepage-indexedby-logo-box {
	border: 1px solid #eaeaea;
	border-radius: 10px;
	height: 80px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}
.homepage-indexedby-logo-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.homepage-indexedby-arrow {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.homepage-indexedby-arrow svg {
	width: 12px;
	height: 12px;
}
.homepage-indexedby-arrow:hover {
	background: #f5f5f5;
}
@media (max-width: 640px) {
	.homepage-indexedby-card { width: 140px; padding: 4px; }
	.homepage-indexedby-logo-box { height: 60px; }
}
