/* 
ELIAS MOREAU PHOTOGRAPHY — core stylesheet
*/

/* Proxima Nova */

@font-face {
	font-family: "proxima-nova";
	src:
		url("../font/ProximaNova-Light.woff") format("woff"),
		url("../font/ProximaNova-Light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "proxima-nova";
	src:
		url("../font/ProximaNova-Regular.woff") format("woff"),
		url("../font/ProximaNova-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "proxima-nova";
	src:
		url("../font/ProximaNova-Bold.woff") format("woff"),
		url("../font/ProximaNova-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Color */
	--color-bg: #ffffff;
	--color-ink: rgb(31, 31, 31);
	--color-ash: #666666;
	--color-border: #e5e5e5;
	--color-border-strong: #d4d4d4;
	--color-overlay: rgba(17, 17, 17, 0.55);
	--color-accent: #b5652e; /* restrained "light-leak" amber — used sparingly */

	/* Type */
	--primary-font: "proxima-nova", sans-serif;

	/* Layout */
	--sidebar-width: 280px;
	--gutter: 32px;
	--transition: 0.3s ease;
}

* {
	box-sizing: border-box;
}

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-ink);
	font-family: var(--primary-font);
	font-size: 15px;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

button {
	font-family: inherit;
	cursor: pointer;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.contact-heading h1 {
    margin-top: 0;
}
.cursor-left { cursor: url("/assets/cursors/left-arrow.svg") 16 16, w-resize; }
.cursor-right { cursor: url("/assets/cursors/right-arrow.svg") 16 16, e-resize; }
.cursor-center { cursor: url("/assets/cursors/grid.svg") 16 16, pointer; }
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	/*   outline: 2px solid var(--color-accent); */
	/*   outline-offset: 3px; */
	outline: none;
}

/* 
Sidebar
*/

.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	width: var(--sidebar-width);
	height: 100vh;
	padding: 40px 32px;
	border-right: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	z-index: 100;
	background: var(--color-bg);
}

.sidebar__scroll {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
}

.sidebar__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 36px;
}

.sidebar__logo {
	font-family: var(--primary-font);
	font-weight: 800;
	font-size: 20px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.sidebar__section-label {
	font-size: 13px;
	color: var(--color-ash);
	margin-bottom: 10px;
}

.sidebar__nav {
	margin-bottom: 28px;
}

.sidebar__nav li + li {
	margin-top: 1px;
}

.sidebar__nav a {
	display: block;
	padding: 3px 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-ink);
	transition: color var(--transition);
	font-weight: 300;
}

.sidebar__nav a:hover {
	color: var(--color-accent);
}

.sidebar__nav a.is-active {
	color: var(--color-accent);
}

.sidebar__pages {
	margin-bottom: auto;
	padding-top: 14px;
}

.sidebar__pages a {
	display: block;
	padding: 3px 0;
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-ink);
	transition: color var(--transition);
}

.sidebar__pages a:hover,
.sidebar__pages a.is-active {
	color: var(--color-accent);
}
body:has(.is-grid-open) :is(.sidebar__controls,.image-caption){
	display: none;
}
.image-caption{
	margin-top: 20px;
	font-size: 14px;
	font-weight: 600;
}
.sidebar__controls {
	padding-top: 20px;
	margin-top: 10px;
	border-top: 1px solid var(--color-border);
	font-size: 11px;
	letter-spacing: 0.1em;
}

.sidebar__slider-nav {
	display: flex;
	gap: 14px;
	margin-bottom: 14px;
}

.sidebar__slider-nav button {
	background: none;
	border: none;
	padding: 0;
	color: var(--color-ink);
	font-family: var(--primary-font);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition:
		color var(--transition),
		opacity var(--transition);
}

.sidebar__slider-nav button:hover {
	color: var(--color-accent);
}

.sidebar__thumb-toggle {
	background: none;
	border: none;
	padding: 0;
	color: var(--color-ash);
	text-transform: uppercase;
	transition: color var(--transition);
}

.sidebar__thumb-toggle:hover {
	color: var(--color-ink);
}

.sidebar__thumb-toggle.is-active {
	color: var(--color-accent);
}

.menu-item.current-menu-item a {
	font-weight: 600;
}

/* Mobile hamburger + overlay nav (built out in responsive.css) */
.nav-toggle {
	display: none;
}

/* 
Main content shell
*/

.site-content {
	margin-left: var(--sidebar-width);
	height: 100vh;
	position: relative;
}

/* animation */
@keyframes animation {
	0%{
		opacity:0;
		transform: translateY(20px);
	}
	100%{
		opacity:1;
		transform: translateY(0px);
	}
}

/* 
Hero slider (homepage)
*/

.hero-slider-wrap {
	position: relative;
	width: 100%;
	height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
	overflow: hidden;
	background: #f3f3f3;
}

.hero-slider {
	height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
	padding: 20px 0;
	animation: animation 0.5s forwards;
}

.splide__track,
.splide__list,
.splide__slide {
	height: 100%;
}

.hero-slide {
	position: relative;
	height: 100%;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Floating info — plain text over the image, no card/box, to keep the
full-bleed photograph as undisturbed as possible (per the reference) */
.hero-info-card {
	position: absolute;
	left: 40px;
	bottom: 32px;
	max-width: 320px;
	color: #fff;
	text-shadow:
		0 1px 12px rgba(0, 0, 0, 0.45),
		0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-info-card__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 4px;
}

.hero-info-card__location {
	font-size: 13px;
	opacity: 0.9;
	margin-bottom: 2px;
}

.hero-info-card__camera {
	font-size: 12px;
	opacity: 0.75;
	margin-bottom: 12px;
}

.hero-info-card__counter {
	font-variant-numeric: tabular-nums;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0.06em;
	opacity: 0.85;
}

/* Splide arrow overrides — minimal, monochrome */
.splide__arrow {
	background: rgba(255, 255, 255, 0.85) !important;
	width: 44px !important;
	height: 44px !important;
	opacity: 1 !important;
}

.splide__arrow svg {
	fill: var(--color-ink) !important;
}

.splide__arrow:hover {
	background: #fff !important;
}

.splide__arrow--prev {
	left: 20px !important;
}
.splide__arrow--next {
	right: 20px !important;
}


/* Thumbnail grid — swaps in for the slider on "Show Thumbnails",
matching the reference site's full contact-sheet grid view */
.thumb-grid {
	z-index: 6;
	background: var(--color-bg);
	padding: 8px;
	opacity: 0;
	column-count: 4;
	column-gap: 8px;
	transform: translateY(8px);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease,
		visibility 0s linear 0.35s;
	display: none;
}

@media (max-width: 1200px) {
	.thumb-grid {
		columns: 3;
	}
}

@media (max-width: 768px) {
	.thumb-grid {
		columns: 2;
	}
}

@media (max-width: 500px) {
	.thumb-grid {
		columns: 1;
	}
}

.thumb-grid.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
	display: block;
	animation: animation 0.5s forwards;
}
.hero-slider-wrap:has(.thumb-grid.is-open) {
	height: unset;
}

.thumb-grid__sizer,
.thumb-grid__item {
	/*   width: calc(25% - 1.5px); */
}

.thumb-grid__item {
	position: relative;
	margin-bottom: 8px;
	overflow: hidden;
	background: #eee;
	border: none;
	padding: 0;
	cursor: pointer;
	display: block;
}

.thumb-grid__item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.thumb-grid__item:hover img {
	transform: scale(1.05);
}

.thumb-grid__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px 14px;
	background: linear-gradient(to top, rgba(17, 17, 17, 0.65), transparent);
	color: #fff;
	text-align: left;
	opacity: 0;
	transform: translateY(4px);
	transition:
		opacity var(--transition),
		transform var(--transition);
}

.thumb-grid__item:hover .thumb-grid__caption {
	opacity: 1;
	transform: translateY(0);
}

.thumb-grid__title {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
}

.thumb-grid__location {
	display: block;
	font-size: 11px;
	opacity: 0.85;
	margin-top: 2px;
}

/* Hide the slider chrome while the grid is open, so it can't be
interacted with underneath */
.hero-slider-wrap.is-grid-open .hero-slider,
.hero-slider-wrap.is-grid-open .hero-info-card,
.hero-slider-wrap.is-grid-open .splide__arrow {
	display: none;
}

/* 
Page header (used on gallery / about / contact)
*/

.page-header {
	padding: 64px var(--gutter) 24px;
	border-bottom: 1px solid var(--color-border);
}

.page-header__eyebrow {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-ash);
	margin-bottom: 10px;
}

.page-header__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 34px;
}

/* 
Gallery grid
*/

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding: 0 var(--gutter) var(--gutter);
}

.gallery-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #eee;
	cursor: pointer;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-card:hover img {
	transform: scale(1.06);
}

.gallery-card__overlay {
	position: absolute;
	inset: 0;
	background: var(--color-overlay);
	opacity: 0;
	transition: opacity var(--transition);
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.gallery-card:hover .gallery-card__overlay {
	opacity: 1;
}

.gallery-card__caption {
	color: #fff;
	transform: translateY(6px);
	transition: transform var(--transition);
}

.gallery-card:hover .gallery-card__caption {
	transform: translateY(0);
}

.gallery-card__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
}

.gallery-card__category {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.85;
	margin-top: 3px;
}

/* 
Lightbox
*/

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.98);
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
}

.lightbox.is-open {
	display: flex;
}

.lightbox__figure {
	max-width: 88vw;
	max-height: 84vh;
	position: relative;
}

.lightbox__figure img {
	max-width: 88vw;
	max-height: 78vh;
	width: auto;
	height: auto;
	object-fit: contain;
}

.lightbox__caption {
	margin-top: 16px;
	text-align: center;
}

.lightbox__caption .title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 15px;
}
.lightbox__caption .meta {
	font-size: 12px;
	color: var(--color-ash);
	margin-top: 2px;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
	position: fixed;
	background: none;
	border: none;
	color: var(--color-ink);
	transition: opacity var(--transition);
}

.lightbox__close {
	top: 28px;
	right: 32px;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.lightbox__prev {
	left: 32px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
}
.lightbox__next {
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
	opacity: 0.5;
}

.lightbox__counter {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--color-ash);
	font-variant-numeric: tabular-nums;
}

/* 
Video grid
*/

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 8px;
    padding: 8px;
}

.media-card {
    position: relative;
}

.media-card img {
    width: 100%;
    display: block;
    border-radius: 0px;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
	outline: 2px solid #000000;
    outline-offset: -1px;
}

.play-icon svg{
	width: 70px;
	height: 70px;
    background: #ffffff;
    border-radius: 50%;
}
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    place-content: center;
    z-index: 9999;
    padding: 20px;
}

.video-modal.active {
    display: grid;
}

.video-modal-content {
    position: relative;
}

.video-wrapper{
	max-width: 100%;
	max-height: 80vh;
}
.video-wrapper :is(iframe,video){
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-wrapper.landscape{
	width: min(calc(100vw - 20px), 1200px);
	margin-inline: auto;
	height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
}
.video-wrapper.portrait{
	width: auto;
	height: 80vh;
    aspect-ratio: 9/16;
    border: 0;
}
.video-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 40px;
    cursor: pointer;
}

/* 
About page
*/

.about {
	padding: 64px var(--gutter) 100px;
	max-width: 880px;
}

.about__portrait {
	width: 100%;
	max-width: 380px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	margin-bottom: 40px;
}

.about__bio p {
	font-size: 16px;
	color: var(--color-ink);
	max-width: 640px;
	margin: 0 0 20px;
}

.about__block {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--color-border);
}

.about__block-title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-ash);
	margin-bottom: 20px;
}

.about__list li {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 10px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 14.5px;
}

.about__list li span:last-child {
	color: var(--color-ash);
}

.about__clients {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 24px;
}

.about__clients li {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 14px;
	color: var(--color-ash);
}

.contact-page-content {
	inset: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	color: #111111;
	font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- LEFT PANEL: contact-info ---------- */
.contact-page-content > .contact-info {
	position: relative;
	border-bottom: 1px solid var(--color-border);
	padding: 2rem 6rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.9rem;
/* 	overflow-y:auto; */
}

.contact-page-content > .contact-info a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	width: fit-content;
	color: #111111;
	text-decoration: none;
	font-size: 1rem;
	letter-spacing: 0.01em;
	transition: opacity 0.25s ease;
}

.contact-page-content > .contact-info a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: #111111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}

.contact-page-content > .contact-info a:hover {
	opacity: 0.6;
}

.contact-page-content > .contact-info a:hover::after {
	transform: scaleX(1);
}
.contact-form-wrapper span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
}

.contact-form-wrapper .wpcf7-response-output {
    text-align: center;
    font-weight: 600;
}
.contact-form-wrapper .wpcf7-form-control-wrap{
    margin-top:0.3rem
}

/* ---------- RIGHT PANEL: the wpcf7 form ---------- */
.contact-page-content > .wpcf7 {
	background: #ffffff;
	padding: 4rem 5vw;
	display: flex;
/* 	align-items: center; */
	/* justify-content: center; */
/* 	overflow-y: auto; */
}

.contact-page-content > .wpcf7 form.wpcf7-form {
	width: 100%;
	max-width: 560px;
}

.screen-reader-response {
	position: absolute;
	left: -9999px;
}

.contact-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.9rem;
}

.form-group-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.6rem;
}

.form-group {
	position: relative;
}

.form-group label {
	display: block;
	font-size: 16px;
	color: #555555;
	font-weight: 500;
}
.form-group label .required{
	color: red;
}
.wpcf7-form-control-wrap {
	position: relative;
	display: block;
	margin-top: 0.65rem;
}

.wpcf7-form-control-wrap::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #111111;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wpcf7-response-output {
    text-align: center;
    font-weight: 600;
}
.wpcf7-form-control-wrap:focus-within::after {
	transform: scaleX(1);
}

.wpcf7-form-control {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	border-bottom: 1px solid #cccccc;
	color: #111111;
	font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.98rem;
	padding: 0.55rem 0;
	outline: none;
	resize: none;
}

.wpcf7-form-control::placeholder {
	color: #999999;
}

textarea.wpcf7-form-control {
	height: 77px;
	line-height: 1.5;
	display: block;
}

.form-btn-wrapper {
	margin-top: 0.6rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.submit-btn {
	appearance: none;
	background: #111111;
	border: 1px solid #111111;
	color: #ffffff;
	font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.95rem 2.2rem;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
}

.submit-btn:hover {
	background: #ffffff;
	color: #111111;
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-response-output {
	margin-top: 1.2rem;
	font-size: 0.85rem;
	color: #555555;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

	.contact-page-content {
		position: static;
		height: auto;
		min-height: 100vh;
		grid-template-columns: 1fr;
	}

	.contact-page-content > .contact-info {
		border-right: none;
		border-bottom: 1px solid #111111;
		padding: 3rem 2rem;
		min-height: 30vh;
	}

	.contact-page-content > .wpcf7 {
		padding: 2.5rem 1.5rem;
	}

	.form-group-wrapper {
		grid-template-columns: 1fr;
		gap: 1.9rem;
	}
}

.about-page-content {
	padding: 60px 20px;
	max-width: 1000px;
}
.about-page-content .exhibition-list li,
.about-page-content .trophie-list li {
	padding-left: 25px;
	margin-bottom: 10px;
	position: relative;
}
.about-page-content .exhibition-list li:before,
.about-page-content .trophie-list li:before {
	content: '';
	mask-image: url('data:image/svg+xml,<svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><g><path fill="%23231F20" d="M60,6h-7V4c0-2.212-1.789-4-4-4H15c-2.211,0-4,1.788-4,4v2H4c-2.211,0-4,1.788-4,4v8 c0,6.074,4.925,11,11,11h0.096C12.01,38.659,19.477,46.395,29,47.761V56h-7c-2.211,0-4,1.788-4,4v3c0,0.552,0.447,1,1,1h26 c0.553,0,1-0.448,1-1v-3c0-2.212-1.789-4-4-4h-7v-8.239c9.523-1.366,16.985-9.1,17.899-18.761H53c6.075,0,11-4.926,11-11v-8 C64,7.788,62.211,6,60,6z M11,23c-2.762,0-5-2.239-5-5v-6h5V23z M2,18v-8c0-1.105,0.896-2,2-2h7v2H5c-0.553,0-1,0.446-1,1v7 c0,3.865,3.134,7,7,7v2C6.029,27,2,22.97,2,18z M42,58c1.104,0,2,0.895,2,2v2H20v-2c0-1.105,0.896-2,2-2H42z M31,56v-8.052 C31.334,47.964,31.662,48,32,48s0.666-0.036,1-0.052V56H31z M51,27c0,10.492-8.507,19-19,19s-19-8.508-19-19V4c0-1.105,0.896-2,2-2 h34c1.104,0,2,0.895,2,2V27z M53,12h5v6c0,2.761-2.238,5-5,5V12z M62,18c0,4.97-4.029,9-9,9v-2c3.866,0,7-3.135,7-7v-7 c0-0.554-0.447-1-1-1h-6V8h7c1.104,0,2,0.895,2,2V18z"></path><path fill="%23231F20" d="M39.147,19.36l-4.309-0.658l-1.936-4.123c-0.165-0.352-0.518-0.575-0.905-0.575s-0.74,0.224-0.905,0.575 l-1.936,4.123l-4.309,0.658c-0.37,0.058-0.678,0.315-0.797,0.671s-0.029,0.747,0.232,1.016l3.146,3.227l-0.745,4.564 c-0.062,0.378,0.099,0.758,0.411,0.979s0.725,0.243,1.061,0.059l3.841-2.123l3.841,2.123C35.99,29.959,36.157,30,36.323,30 c0.202,0,0.404-0.062,0.576-0.184c0.312-0.221,0.473-0.601,0.411-0.979l-0.745-4.564l3.146-3.227 c0.262-0.269,0.352-0.66,0.232-1.016S39.518,19.418,39.147,19.36z M34.781,23.238c-0.222,0.228-0.322,0.546-0.271,0.859 l0.495,3.029l-2.522-1.395c-0.151-0.083-0.317-0.125-0.484-0.125s-0.333,0.042-0.484,0.125l-2.522,1.395l0.495-3.029 c0.051-0.313-0.05-0.632-0.271-0.859l-2.141-2.193l2.913-0.446c0.329-0.05,0.612-0.261,0.754-0.563l1.257-2.678l1.257,2.678 c0.142,0.303,0.425,0.514,0.754,0.563l2.913,0.446L34.781,23.238z"></path></g></g></svg>');
	background-color: currentColor;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 3px;
	mask-position: center;
	mask-repeat: no-repeat;
}

.about-page-content .exhibition-list li:before{
	mask-image: url('data:image/svg+xml,<svg fill="%23000000" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 320.635 320.636" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><g><path d="M320.635,265.595c0-8.892-7.234-16.127-16.127-16.127h-11.811c0.629-1.72,1.028-3.563,1.028-5.5V139.935 c0-2.719-0.745-5.252-1.938-7.499h12.715c8.887,0,16.126-7.236,16.126-16.126c0-8.89-7.239-16.126-16.126-16.126h-30.179 c4.02-2.935,6.666-7.649,6.666-12.998c0-8.889-7.234-16.125-16.127-16.125h-41.14c3.24-2.951,5.308-7.161,5.308-11.875 c0-8.889-7.232-16.125-16.127-16.125h-21.134c2.531-2.848,4.111-6.548,4.111-10.644c0-8.892-7.24-16.126-16.127-16.126h-38.349 c-8.89,0-16.126,7.234-16.126,16.126c0,4.095,1.58,7.796,4.108,10.644h-22.194c-8.893,0-16.127,7.236-16.127,16.125 c0,4.714,2.068,8.924,5.305,11.875H56.297c-8.889,0-16.125,7.236-16.125,16.125c0,5.349,2.645,10.063,6.667,12.998H16.654 c-8.891,0-16.127,7.236-16.127,16.126c0,8.89,7.236,16.126,16.127,16.126h12.713c-1.194,2.247-1.937,4.78-1.937,7.499v104.033 c0,1.937,0.399,3.78,1.034,5.5H16.659c-8.89,0-16.126,7.235-16.126,16.127c0,4.279,1.704,8.148,4.43,11.034 C1.922,279.568,0,283.669,0,288.22c0,8.894,7.236,16.126,16.126,16.126h287.858c8.887,0,16.125-7.232,16.125-16.126 c0-4.278-1.699-8.147-4.431-11.033C318.718,274.247,320.635,270.152,320.635,265.595z M141.406,27.042h38.349 c2.971,0,5.376,2.406,5.376,5.375c0,2.967-2.405,5.375-5.376,5.375h-38.349c-2.966,0-5.375-2.409-5.375-5.375 C136.031,29.448,138.435,27.042,141.406,27.042z M107.188,53.811h105.717c2.973,0,5.376,2.407,5.376,5.375 c0,2.967-2.403,5.375-5.376,5.375H107.188c-2.974,0-5.375-2.409-5.375-5.375C101.812,56.218,104.214,53.811,107.188,53.811z M56.292,81.811h208.571c2.972,0,5.376,2.407,5.376,5.375s-2.404,5.375-5.376,5.375H56.292c-2.966,0-5.376-2.407-5.376-5.375 S53.321,81.811,56.292,81.811z M16.649,121.685c-2.966,0-5.375-2.406-5.375-5.375c0-2.969,2.404-5.375,5.375-5.375h287.854 c2.971,0,5.375,2.407,5.375,5.375c0,2.969-2.404,5.375-5.375,5.375H16.649z M282.975,139.935v104.033 c0,2.96-2.405,5.375-5.376,5.375s-5.375-2.415-5.375-5.375V139.935c0-2.966,2.404-5.375,5.375-5.375 S282.975,136.969,282.975,139.935z M256.969,139.935v104.033c0,2.96-2.404,5.375-5.375,5.375c-2.981,0-5.376-2.415-5.376-5.375 V139.935c0-2.966,2.395-5.375,5.376-5.375C254.565,134.559,256.969,136.969,256.969,139.935z M236.498,249.468h-47.822 c0.629-1.72,1.028-3.563,1.028-5.5V139.935c0-2.719-0.74-5.252-1.932-7.499h49.633c-1.197,2.247-1.938,4.78-1.938,7.499v104.033 C235.467,245.904,235.867,247.748,236.498,249.468z M178.953,139.935v104.033c0,2.96-2.404,5.375-5.376,5.375 c-2.971,0-5.375-2.415-5.375-5.375V139.935c0-2.966,2.404-5.375,5.375-5.375C176.548,134.559,178.953,136.969,178.953,139.935z M152.947,139.935v104.033c0,2.96-2.402,5.375-5.375,5.375c-2.971,0-5.376-2.415-5.376-5.375V139.935 c0-2.966,2.405-5.375,5.376-5.375C150.545,134.559,152.947,136.969,152.947,139.935z M132.477,249.468h-47.82 c0.635-1.72,1.035-3.563,1.035-5.5V139.935c0-2.719-0.744-5.252-1.937-7.499h49.632c-1.199,2.247-1.937,4.78-1.937,7.499v104.033 C131.446,245.904,131.844,247.748,132.477,249.468z M74.936,139.935v104.033c0,2.96-2.405,5.375-5.375,5.375 c-2.974,0-5.375-2.415-5.375-5.375V139.935c0-2.966,2.402-5.375,5.375-5.375C72.531,134.559,74.936,136.969,74.936,139.935z M48.927,139.935v104.033c0,2.96-2.402,5.375-5.375,5.375c-2.971,0-5.375-2.415-5.375-5.375V139.935 c0-2.966,2.405-5.375,5.375-5.375C46.525,134.559,48.927,136.969,48.927,139.935z M303.973,293.595H16.121 c-2.971,0-5.375-2.402-5.375-5.375c0-2.966,2.404-5.376,5.375-5.376h287.853c2.971,0,5.376,2.41,5.376,5.376 C309.349,291.192,306.944,293.595,303.973,293.595z M304.508,270.971H16.654c-2.971,0-5.375-2.405-5.375-5.376 c0-2.966,2.41-5.376,5.375-5.376h287.854c2.971,0,5.376,2.41,5.376,5.376C309.884,268.565,307.479,270.971,304.508,270.971z"></path></g></g></svg>');
}


/* Search */
.search-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* Search input */
.search-header {
	margin-bottom: 40px;
}

.search-field {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #ddd;
	padding: 14px 18px;
}

.search-icon {
	display: flex;
	align-items: center;
	margin-right: 14px;
}

.search-icon svg {
	width: 20px;
	height: 20px;
}

.ajax-search-input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 20px;
	font-weight: 400;
	color: #111;
	background: transparent;
}

.ajax-search-input::placeholder {
	color: #999;
}

/* Results list */
.search-body { }

.search-result-list {
	display: flex;
	flex-direction: column;
}

.search-result-item {
    display: grid;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}
.search-result-item:has(img){
    grid-template-columns: 100px minmax(0, 1fr);	
}
.search-result-item img{
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
}
.search-result-item:first-child {
	border-top: 1px solid #eee;
}

.result-heading {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 500;
	color: #333;
}

.result-description {
	display: block;
	font-size: 15px;
	font-style: italic;
	color: #444;
	line-height: 1.5;
}

.search-result-item:hover .result-heading {
	color: #000;
}