/**
 * NOVA Gallery Widget Styles
 */

/* ============================================
   MAIN WIDGET CONTAINER
   ============================================ */

.nova-gallery-widget {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

/* ============================================
   FILTERS
   ============================================ */

.nova-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}

.nova-gallery-filter-item {
	display: inline-block;
	padding: 10px 20px;
	background-color: #f5f5f5;
	color: #333;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border: none;
}

.nova-gallery-filter-item:hover {
	background-color: #e0e0e0;
}

.nova-gallery-filter-item.active {
	background-color: #0073aa;
	color: #ffffff;
}

/* Masquer le filtre "Tout" sur mobile si l'option est activée */
@media (max-width: 767px) {
	.nova-gallery-filter-item.hide-on-mobile {
		display: none !important;
	}
}

/* Sticky filters — géré par GSAP ScrollTrigger via JS */
.nova-filters-sticky {
	z-index: 100;
	will-change: transform;
}

/* ============================================
   GALLERY GRID
   ============================================ */

.nova-gallery-grid {
	display: grid;
	/* grid-template-columns will be set dynamically via JavaScript based on config */
	/* No default value to avoid conflicts - JS will set it with !important */
	gap: 20px;
	width: 100%;
}

/* CSS fallback using data attribute - applies when inline styles are removed by Elementor */
.nova-gallery-grid[data-grid-columns="1"] {
	grid-template-columns: repeat(1, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="2"] {
	grid-template-columns: repeat(2, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="3"] {
	grid-template-columns: repeat(3, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="4"] {
	grid-template-columns: repeat(4, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="5"] {
	grid-template-columns: repeat(5, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="6"] {
	grid-template-columns: repeat(6, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="7"] {
	grid-template-columns: repeat(7, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="8"] {
	grid-template-columns: repeat(8, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="9"] {
	grid-template-columns: repeat(9, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="10"] {
	grid-template-columns: repeat(10, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="11"] {
	grid-template-columns: repeat(11, 1fr) !important;
}
.nova-gallery-grid[data-grid-columns="12"] {
	grid-template-columns: repeat(12, 1fr) !important;
}

/* CSS fallback for pixels mode with auto-center */
.nova-gallery-grid[data-grid-mode="pixels"] {
	justify-items: center;
}

/* Popup Styles */
.nova-gallery-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
	display: none;
}

.nova-gallery-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.nova-gallery-popup-content {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	box-sizing: border-box;
}

.nova-gallery-popup-image-wrapper {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.nova-gallery-popup-image {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border-radius: 4px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nova-gallery-popup-title {
	color: #fff;
	font-size: 18px;
	margin-top: 20px;
	text-align: center;
	max-width: 100%;
	word-wrap: break-word;
}

.nova-gallery-popup-counter {
	color: #fff;
	font-size: 14px;
	margin-top: 10px;
	opacity: 0.8;
}

.nova-gallery-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    max-width: 30px !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1000000;
    padding: 0 !important;
}

.nova-gallery-popup-close:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.nova-gallery-popup-prev, .nova-gallery-popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border: none;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 1000000;
    padding: 0 !important;
}

.nova-gallery-popup-prev {
	left: 20px;
}

.nova-gallery-popup-next {
	right: 20px;
}

.nova-gallery-popup-prev:hover,
.nova-gallery-popup-next:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
	.nova-gallery-popup-content {
		padding: 20px;
	}

	.nova-gallery-popup-image {
		max-height: 70vh;
	}

	.nova-gallery-popup-close {
		top: 10px;
		right: 10px;
		width: 35px;
		height: 35px;
		font-size: 24px;
	}

	.nova-gallery-popup-prev,
	.nova-gallery-popup-next {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}

	.nova-gallery-popup-prev {
		left: 10px;
	}

	.nova-gallery-popup-next {
		right: 10px;
	}
}

/* Cursor pointer for items with popup enabled */
.nova-gallery-item[data-popup-image] {
	cursor: pointer;
}

/* ============================================
   GALLERY ITEM
   ============================================ */

.nova-gallery-item {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #f0f0f0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
}

.nova-gallery-item.has-background-image {
	position: relative;
	min-height: 300px;
}

.nova-gallery-item.has-creative-background {
	position: relative;
}

/* ============================================
   ITEM IMAGE
   ============================================ */

.nova-gallery-item-image {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.nova-gallery-item-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* Image Overlay */
.nova-gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	box-sizing: border-box;
}

.nova-gallery-item.has-background-image .nova-gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	box-sizing: border-box;
}

.nova-gallery-item-image {
	position: relative;
}

.nova-gallery-item-image .nova-gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
	box-sizing: border-box;
}

/* ============================================
   ITEM TITLE
   ============================================ */

.nova-gallery-item-title {
	margin: 15px;
	padding: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #333;
	position: relative;
	z-index: 3;
}

/* ============================================
   ITEM LINK
   ============================================ */

.nova-gallery-item-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.nova-gallery-item {
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0.5s ease,
	            max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            margin 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	transform: scale(1) translateY(0);
	visibility: visible;
	max-height: 5000px;
	overflow: hidden;
}

.nova-gallery-item.hidden {
	opacity: 0;
	transform: scale(0.9) translateY(-10px);
	visibility: hidden;
	pointer-events: none;
	max-height: 0;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
	            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            visibility 0.5s ease,
	            max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            margin 0.5s cubic-bezier(0.4, 0, 0.2, 1),
	            padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nova-gallery-item.fade-in {
	animation: NOVAGalleryFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes NOVAGalleryFadeIn {
	from {
		opacity: 0;
		transform: scale(0.9) translateY(20px);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* ============================================
   HERO MOSAIC (voyage gallery)
   ============================================ */

.nova-gallery-widget--hero-mosaic .nova-gallery-grid--hero-mosaic {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, minmax(140px, 1fr));
	gap: 8px;
	width: 100%;
	min-height: 360px;
}
.nova-gallery-item-image img {
    border-radius: initial !important;
}
.nova-gallery-widget--hero-mosaic .nova-gallery-grid--hero-mosaic.nova-gallery-grid--outer-radius {
	overflow: hidden;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-grid--hero-mosaic.nova-gallery-grid--outer-radius .nova-gallery-item--hero,
.nova-gallery-widget--hero-mosaic .nova-gallery-grid--hero-mosaic.nova-gallery-grid--outer-radius .nova-gallery-item--thumb {
	border-radius: 0 !important;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--hero {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-1 {
	grid-column: 3;
	grid-row: 1;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-2 {
	grid-column: 4;
	grid-row: 1;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-3 {
	grid-column: 3;
	grid-row: 2;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-4 {
	grid-column: 4;
	grid-row: 2;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--hero,
.nova-gallery-widget--hero-mosaic .nova-gallery-item--thumb {
	position: relative;
	overflow: hidden;
	min-height: 0;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-grid--per-item-radius .nova-gallery-item--hero,
.nova-gallery-widget--hero-mosaic .nova-gallery-grid--per-item-radius .nova-gallery-item--thumb {
	border-radius: 12px;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-hidden {
	display: none !important;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item-image,
.nova-gallery-widget--hero-mosaic .nova-gallery-item-lightbox {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item-image img {
	width: 100%;
	height: 100%;
	min-height: 140px;
	object-fit: cover;
	display: block;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--hero .nova-gallery-item-image img {
	min-height: 280px;
}

.nova-gallery-show-all-trigger {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 25;
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95);
	color: #222222;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	pointer-events: auto;
	visibility: visible;
	opacity: 1;
}

.nova-gallery-show-all-trigger:hover {
	transform: translateY(-1px);
}

.nova-gallery-show-all-trigger__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	line-height: 0;
}

.nova-gallery-show-all-trigger__icon svg,
.nova-gallery-show-all-trigger__icon i {
	display: block;
	width: 1em;
	height: 1em;
}

.nova-gallery-show-all-trigger__icon svg {
	fill: currentColor;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--thumb:has(.nova-gallery-show-all-trigger) {
	overflow: visible;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--thumb:has(.nova-gallery-show-all-trigger) .nova-gallery-item-image {
	z-index: 1;
}

.nova-gallery-widget--hero-mosaic .nova-gallery-item--thumb:has(.nova-gallery-show-all-trigger) .nova-gallery-item-lightbox {
	position: relative;
	z-index: 1;
}

/* ============================================
   SHOW ALL PANEL (body level — style Booking.com)
   ============================================ */

.nova-gallery-show-all-root {
	display: contents;
}

.nova-gallery-show-all-panel {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	flex-direction: column;
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	height: 100dvh;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background: rgba(24, 24, 27, 0.98);
	color: #f4f4f5;
	visibility: hidden;
	pointer-events: none;
	-webkit-overflow-scrolling: touch;
}

.nova-gallery-show-all-panel.is-open {
	display: flex;
	visibility: visible;
	pointer-events: auto;
}

.nova-gallery-show-all-panel__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(24, 24, 27, 0.98);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nova-gallery-show-all-panel.is-visible .nova-gallery-show-all-panel__backdrop {
	opacity: 1;
}

.nova-gallery-show-all-panel__shell {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	max-height: 100dvh;
	overflow: hidden;
	background: rgba(24, 24, 27, 0.98);
	opacity: 0;
	transform: translateY(12px);
	transition:
		opacity 0.32s ease,
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-gallery-show-all-panel.is-visible .nova-gallery-show-all-panel__shell {
	opacity: 1;
	transform: translateY(0);
}

.nova-gallery-show-all-panel__header {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	flex-shrink: 0;
	background: rgba(24, 24, 27, 0.98);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.nova-gallery-show-all-panel__header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 16px;
	box-sizing: border-box;
}

.nova-gallery-show-all-panel__count {
	margin: 0;
	color: rgba(244, 244, 245, 0.72);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.01em;
}

.nova-gallery-show-all-panel__close {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #f4f4f5;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.nova-gallery-show-all-panel__close:hover,
.nova-gallery-show-all-panel__close:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	transform: scale(1.04);
	outline: none;
}

.nova-gallery-show-all-panel__close svg {
	width: 28px;
	height: 28px;
	display: block;
}

.nova-gallery-show-all-panel__close svg * {
	stroke-width: 2.75;
}

.nova-gallery-show-all-panel__body {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	background: rgba(24, 24, 27, 0.98);
	padding: 12px 16px 20px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
	touch-action: pan-y;
}

.nova-gallery-show-all-panel__body::-webkit-scrollbar {
	width: 8px;
}

.nova-gallery-show-all-panel__body::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.28);
	border-radius: 999px;
}

.nova-gallery-show-all-panel__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 6px;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}

.nova-gallery-show-all-panel__item {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.04);
	text-align: left;
	color: #f4f4f5;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
	transition: box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
	-webkit-tap-highlight-color: transparent;
}

.nova-gallery-show-all-panel__item:hover,
.nova-gallery-show-all-panel__item:focus-visible {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.06);
	outline: none;
}

.nova-gallery-show-all-panel__item--hero {
	grid-column: auto;
}

.nova-gallery-show-all-panel__item-media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.06);
}

.nova-gallery-show-all-panel__item--hero .nova-gallery-show-all-panel__item-media {
	aspect-ratio: 1 / 1;
	max-height: none;
}

.nova-gallery-show-all-panel__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-gallery-show-all-panel__item:hover img,
.nova-gallery-show-all-panel__item:focus-visible img {
	transform: scale(1.03);
}

.nova-gallery-show-all-panel__item-label {
	display: none !important;
}

html.nova-gallery-show-all-open,
html.nova-gallery-show-all-open body {
	overflow: hidden !important;
	height: 100%;
}

@media (min-width: 900px) {
	.nova-gallery-show-all-panel__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.nova-gallery-show-all-panel__body {
		padding: 14px 20px 24px;
	}

	.nova-gallery-show-all-panel__header-inner {
		padding: 10px 20px;
	}
}

@media (min-width: 1200px) {
	.nova-gallery-show-all-panel__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 8px;
	}
}

@media (max-width: 640px) {
	.nova-gallery-show-all-panel__body {
		padding: 10px 10px 16px;
	}

	.nova-gallery-show-all-panel__header-inner {
		padding: 8px 12px;
	}

	.nova-gallery-show-all-panel__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
	}
}

/* Fancybox : correctif 1er open (Lenis + dimensionnement image) */
html.nova-fancybox-open,
html.nova-fancybox-open body {
	overflow: hidden !important;
}

.fancybox__container {
	z-index: 100001 !important;
	--f-button-width: 56px;
	--f-button-height: 56px;
	--f-button-svg-width: 36px;
	--f-button-svg-height: 36px;
	--f-button-svg-stroke-width: 2.75;
	--f-arrow-svg-stroke-width: 2.75;
}

.fancybox__container .fancybox__nav .f-button,
.fancybox__container .fancybox__toolbar .f-button,
.fancybox__container [data-fancybox-close].f-button {
	width: var(--f-button-width) !important;
	height: var(--f-button-height) !important;
	min-width: var(--f-button-width) !important;
	min-height: var(--f-button-height) !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.fancybox__container .fancybox__nav .f-button svg,
.fancybox__container .fancybox__toolbar .f-button svg,
.fancybox__container [data-fancybox-close].f-button svg {
	width: var(--f-button-svg-width) !important;
	height: var(--f-button-svg-height) !important;
	min-width: var(--f-button-svg-width) !important;
	min-height: var(--f-button-svg-height) !important;
	max-width: none !important;
	max-height: none !important;
	flex-shrink: 0;
}

.fancybox__container .f-button svg * {
	stroke-width: var(--f-button-svg-stroke-width);
}

.fancybox__slide.has-image .fancybox__content {
	display: flex;
	align-items: center;
	justify-content: center;
}

.fancybox__content .fancybox__image {
	width: auto !important;
	height: auto !important;
	max-width: min(96vw, 1400px);
	max-height: 92vh;
	object-fit: contain;
}

.fancybox__caption {
	text-align: center;
}

@media (max-width: 767px) {
	.nova-gallery-widget--hero-mosaic .nova-gallery-grid--hero-mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px repeat(2, minmax(100px, 1fr));
		min-height: 0;
	}

	.nova-gallery-widget--hero-mosaic .nova-gallery-item--hero {
		grid-column: 1 / span 2;
		grid-row: 1;
	}

	.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-1 {
		grid-column: 1;
		grid-row: 2;
	}

	.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-2 {
		grid-column: 2;
		grid-row: 2;
	}

	.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-3 {
		grid-column: 1;
		grid-row: 3;
	}

	.nova-gallery-widget--hero-mosaic .nova-gallery-item--mosaic-pos-4 {
		grid-column: 2;
		grid-row: 3;
	}

	.nova-gallery-show-all-trigger__text {
		font-size: 12px;
	}
}
