.artgalleryparis-search {
	position: relative;
	width: 100%;
	max-width: 520px;
}

.artgalleryparis-search__field {
	position: relative;
}

.artgalleryparis-search__icon {
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: .7;
}

input[type="search"].artgalleryparis-search__input {
	padding: 0.8em 0.8em 0.8em 46px;
}

.artgalleryparis-search__dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 100%;
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	box-shadow: 0 20px 40px rgba(0,0,0,.08);
	padding: 12px;
	z-index: 100;
}

.artgalleryparis-search-results__group + .artgalleryparis-search-results__group {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(0,0,0,.08);
}

.artgalleryparis-search-results__title {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	opacity: .65;
	margin-bottom: 8px;
}

.artgalleryparis-search-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
}

.artgalleryparis-search-item:hover {
	background: rgba(0,0,0,.04);
}

.artgalleryparis-search-item__thumb {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	overflow: hidden;
	flex: 0 0 52px;
	background: rgba(0,0,0,.04);
}

.artgalleryparis-search-item__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artgalleryparis-search-item__content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.artgalleryparis-search-item__title {
	font-weight: 500;
}

.artgalleryparis-search-item__meta {
	font-size: 14px;
	opacity: .7;
}

.artgalleryparis-search-results__footer {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(0,0,0,.08);
}

.artgalleryparis-search-results__all {
	display: inline-flex;
	text-decoration: none;
	font-weight: 600;
}

.artgalleryparis-search-results__empty {
	padding: 12px;
	opacity: .7;
}

.artgalleryparis-search.is-loading .artgalleryparis-search__dropdown {
	overflow: hidden;
}

.artgalleryparis-search-skeleton {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.artgalleryparis-search-skeleton__group + .artgalleryparis-search-skeleton__group {
	padding-top: 14px;
	border-top: 1px solid rgba(0,0,0,.08);
}

.artgalleryparis-search-skeleton__title,
.artgalleryparis-search-skeleton__thumb,
.artgalleryparis-search-skeleton__line {
	position: relative;
	background: rgba(0,0,0,.08);
	overflow: hidden;
}

.artgalleryparis-search-skeleton__title::after,
.artgalleryparis-search-skeleton__thumb::after,
.artgalleryparis-search-skeleton__line::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255,255,255,.45) 50%,
		transparent 100%
	);
	animation: artgalleryparis-search-skeleton-shimmer 3s ease-in-out infinite;
}

.artgalleryparis-search-skeleton__title {
	width: 120px;
	height: 12px;
	border-radius: 999px;
	margin-bottom: 10px;
}

.artgalleryparis-search-skeleton__items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.artgalleryparis-search-skeleton__item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 12px;
}

.artgalleryparis-search-skeleton__item--text {
	padding-left: 10px;
}

.artgalleryparis-search-skeleton__thumb {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	flex: 0 0 52px;
}

.artgalleryparis-search-skeleton__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	width: 100%;
}

.artgalleryparis-search-skeleton__line {
	height: 10px;
	border-radius: 999px;
}

.artgalleryparis-search-skeleton__line--title {
	width: 70%;
}

.artgalleryparis-search-skeleton__line--meta {
	width: 40%;
}

@keyframes artgalleryparis-search-skeleton-shimmer {
	100% {
		transform: translateX(100%);
	}
}