/* BEM: btn, section-heading, cards */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	min-height: 48px;
	border-radius: var(--radius-btn);
	border: 1px solid transparent;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition:
		transform var(--transition-btn),
		box-shadow var(--transition-btn),
		background var(--transition-btn),
		border-color var(--transition-btn),
		color var(--transition-btn);
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(var(--btn-hover-lift));
}

.btn--primary {
	background: var(--gradient-cta-glossy);
	color: #FFFFFF;
	color: var(--color-white);
	box-shadow: var(--shadow-brand), var(--shadow-button-gloss);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--gradient-cta-glossy);
	box-shadow: var(--shadow-button-hover), var(--shadow-button-gloss);
	color: #FFFFFF;
	color: var(--color-white);
}

.btn--accent {
	background: var(--gradient-cta-glossy);
	color: var(--color-white);
	box-shadow: var(--shadow-brand), var(--shadow-button-gloss);
}

.btn--accent:hover,
.btn--accent:focus-visible {
	box-shadow: var(--shadow-button-hover), var(--shadow-button-gloss);
	color: #FFFFFF;
	color: var(--color-white);
}

.btn--outline {
	background: var(--color-white);
	color: var(--color-purple-ui);
	border-color: var(--color-border);
}

.btn--outline:hover,
.btn--outline:focus-visible {
	background: var(--color-btn-secondary-hover);
	border-color: #E0D8F8;
	color: var(--color-purple);
	box-shadow: var(--shadow-soft);
}

.btn--ghost {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	color: var(--color-secondary-text);
}

.btn--search {
	background: var(--gradient-cta-glossy);
	color: var(--color-white);
	padding: 14px 32px;
	min-height: 56px;
	border-radius: var(--radius-pill);
	white-space: nowrap;
	font-size: 0.95rem;
	box-shadow: var(--shadow-brand), var(--shadow-button-gloss);
}

.btn--search:hover,
.btn--search:focus-visible {
	box-shadow: var(--shadow-button-hover), var(--shadow-button-gloss);
	color: #FFFFFF;
	color: var(--color-white);
}

.btn--block { width: 100%; }

.btn--lg {
	padding: 0 36px;
	min-height: 52px;
	font-size: 0.95rem;
	min-width: 190px;
}

.btn--hero {
	min-height: 48px;
	padding: 0 26px;
	border-radius: 16px;
}

.btn__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	background: currentColor;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}

.btn__icon--compass { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 100 20 10 10 0 000-20zm3.7 6.3l-2.1 5-5 2.1 2.1-5 5-2.1z'/%3E%3C/svg%3E"); }
.btn__icon--phone-gold { background: var(--color-gold); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 2.9 3.7 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V21c0 .6-.4 1-1 1C10.3 22 2 13.7 2 3c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E"); }
.btn__icon--search { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.8l-.3-.3A6.5 6.5 0 1014 15.5l.3.3v.8l5 5 1.5-1.5-5-5zm-6 0A4.5 4.5 0 119.5 5 4.5 4.5 0 0110.5 14z'/%3E%3C/svg%3E"); }

/* Section headings */
.section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.section-heading--solo {
	margin-bottom: 40px;
	font-family: var(--font-heading);
	font-size: var(--heading-desktop);
	font-weight: 800;
	text-align: center;
	letter-spacing: -0.01em;
	line-height: 1.2;
	background: var(--gradient-heading);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-heading__kicker {
	font-family: var(--font-heading);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-kicker);
	margin: 0 0 12px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.section-heading__kicker-deco {
	flex: 0 0 56px;
	height: 2px;
	position: relative;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(108, 60, 255, 0.15), #6C3CFF 55%, #F33FA6);
}

.section-heading__kicker-deco::after {
	content: '';
	position: absolute;
	right: -1px;
	top: 50%;
	width: 0;
	height: 0;
	transform: translateY(-50%);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 6px solid #F33FA6;
}

.section-heading__kicker-deco--flip {
	transform: scaleX(-1);
}

.section-heading__title {
	font-family: var(--font-heading);
	font-size: var(--heading-desktop);
	margin: 0 0 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.15;
	position: relative;
	text-transform: uppercase;
	background: var(--gradient-heading);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-heading__title::after {
	display: none;
}

.section-heading__subtitle {
	font-family: var(--font-heading);
	font-size: clamp(0.95rem, 1.6vw, 1.05rem);
	font-weight: 400;
	color: var(--color-subtitle-purple);
	margin: 0;
	line-height: 1.6;
	max-width: 560px;
	margin-inline: auto;
}

/* tour-card */
.tour-card {
	position: relative;
	z-index: 0;
	background: var(--color-white);
	border-radius: var(--radius-card);
	border: 1px solid var(--color-border-card);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease;
}

.tour-card__hit {
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}

.tour-card__hit:focus-visible {
	outline: 2px solid var(--color-purple, #7048e8);
	outline-offset: 2px;
}

/* Let clicks reach the hit layer, except interactive controls */
.tour-card__media-wrap,
.tour-card__body {
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.tour-card__cta {
	position: relative;
	z-index: 3;
	pointer-events: auto;
}

.tour-card:hover {
	z-index: 2;
	transform: translateY(-6px);
	border-color: var(--color-border);
	box-shadow: var(--shadow-tour-hover);
}

.tour-card__media {
	overflow: hidden;
	display: block;
	width: 100%;
}

.tour-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	min-height: 220px;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card:hover .tour-card__image {
	transform: scale(1.06);
}

.tour-card__body {
	padding: 14px 16px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 4px;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	text-align: left;
}

.tour-card:hover .tour-card__body {
	transform: translateY(-4px);
}

.tour-card__title {
	font-family: var(--font-heading);
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--color-dark-text);
	margin: 0 0 2px;
	line-height: 1.3;
	/* Keep card meta/price/CTA aligned across the row when titles wrap. */
	min-height: calc(1.3em * 2);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.tour-stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	margin-bottom: 4px;
}

.tour-stats--compact {
	margin-bottom: 2px;
}

.tour-stats__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.tour-stats__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	line-height: 1;
}

.tour-stats__star {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	font-size: 0;
	line-height: 0;
	color: transparent;
	background: linear-gradient(165deg, #FFF4B0 0%, #FFE066 28%, #FFB800 58%, #F08C00 100%);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.4l2.7 6.4 6.9.6-5.2 4.5 1.6 6.7L12 16.9 6 20.6l1.6-6.7L2.4 9.4l6.9-.6L12 2.4z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.4l2.7 6.4 6.9.6-5.2 4.5 1.6 6.7L12 16.9 6 20.6l1.6-6.7L2.4 9.4l6.9-.6L12 2.4z'/%3E%3C/svg%3E") center / contain no-repeat;
	filter:
		drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65))
		drop-shadow(0 1px 1px rgba(176, 96, 0, 0.35))
		drop-shadow(0 2px 3px rgba(140, 70, 0, 0.28));
	transform: translateY(-0.5px);
}

.tour-stats__star.is-half {
	opacity: 1;
	background: linear-gradient(90deg, #FFB800 0 50%, #E8E0D4 50% 100%);
	filter:
		drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4))
		drop-shadow(0 1px 2px rgba(140, 70, 0, 0.22));
}

.tour-stats__star.is-empty {
	background: linear-gradient(165deg, #F0ECE6 0%, #E2DBD2 100%);
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5));
	opacity: 0.9;
}

.tour-stats__score {
	font-size: 0.88rem;
	color: var(--color-heading-main);
}

.tour-stats__count {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: #9B8CC8;
}

.tour-stats__booked {
	font-size: 0.78rem;
	color: var(--color-gray-600);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.tour-stats__booked-icon {
	font-size: 0.85rem;
	line-height: 1;
}

.tour-card .tour-stats {
	margin-top: 2px;
	margin-bottom: 4px;
}

.tour-card .tour-stats__score {
	font-weight: 700;
	font-size: 0.92rem;
	color: #6C3CFF;
}

.tour-card .tour-stats__star {
	width: 15px;
	height: 15px;
}

.tour-card .tour-stats__count {
	font-size: 15px;
	line-height: 15px;
	color: #9B8CC8;
	background: transparent;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
}

.tour-card .tour-stats__booked {
	color: #6C3CFF;
	font-weight: 600;
	background: transparent;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
}

.tour-card .tour-stats__booked-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	font-size: 0;
	line-height: 0;
	background: var(--color-purple);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zm0 2c-2.7 0-8 1.3-8 4v2h16v-2c0-2.7-5.3-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.tour-card:hover .tour-card__title {
	color: var(--color-purple);
	transform: translateY(-2px);
}

.tour-card__meta {
	list-style: none;
	margin: 2px 0 6px;
	padding: 8px 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #F7F5FD;
	border: 1px solid #EDE8FA;
	border-radius: 12px;
}

.tour-card__meta-item {
	display: grid;
	grid-template-columns: 16px 1fr;
	align-items: start;
	gap: 8px;
	font-size: 0.78rem;
	line-height: 1.3;
	color: var(--color-meta);
}

.tour-card:hover .tour-card__meta-item {
	color: var(--color-secondary-text);
	transform: none;
}

.tour-card__meta-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-top: 1px;
	flex-shrink: 0;
	background: #8B849E;
	-webkit-mask: center / contain no-repeat;
	mask: center / contain no-repeat;
}

.tour-card__meta-item--duration .tour-card__meta-icon {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h4v-2h-3V7h-2v6z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm1 11h4v-2h-3V7h-2v6z'/%3E%3C/svg%3E");
}

.tour-card__meta-item--departure .tour-card__meta-icon {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2zm13 8H6v10h14V10zm-2 4H8v-2h10v2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h2v2h6V2h2v2h3v18H4V4h3V2zm13 8H6v10h14V10zm-2 4H8v-2h10v2z'/%3E%3C/svg%3E");
}

.tour-card__meta-item--transport .tour-card__meta-icon {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5L21 16z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 16v-2l-8-5V3.5a1.5 1.5 0 0 0-3 0V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5L21 16z'/%3E%3C/svg%3E");
}

.tour-card__meta-text {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 6px;
	min-width: 0;
}

.tour-card__label {
	color: #8B849E;
	font-weight: 500;
}

.tour-card__label::after {
	content: ':';
}

.tour-card__value {
	color: #3F3A55;
	font-weight: 600;
}

.tour-card__meta-item--gift {
	margin-top: 2px;
	padding-top: 6px;
	border-top: 1px dashed #DDD5F5;
	color: #6C3CFF;
}

.tour-card__meta-item--gift .tour-card__meta-icon,
.tour-card__gift-icon {
	background: #6C3CFF;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 7h-2.2c.1-.3.2-.6.2-1 0-1.7-1.3-3-3-3-1.1 0-2 .5-2.6 1.4C11.9 3.5 11 3 9.9 3c-1.7 0-3 1.3-3 3 0 .4.1.7.2 1H5c-1.1 0-2 .9-2 2v2h19V9c0-1.1-.9-2-2-2zM9.9 5c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm5 0c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM3 12v7c0 1.1.9 2 2 2h5v-9H3zm11 0v9h5c1.1 0 2-.9 2-2v-7H14z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 7h-2.2c.1-.3.2-.6.2-1 0-1.7-1.3-3-3-3-1.1 0-2 .5-2.6 1.4C11.9 3.5 11 3 9.9 3c-1.7 0-3 1.3-3 3 0 .4.1.7.2 1H5c-1.1 0-2 .9-2 2v2h19V9c0-1.1-.9-2-2-2zM9.9 5c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zm5 0c.6 0 1 .4 1 1s-.4 1-1 1-1-.4-1-1 .4-1 1-1zM3 12v7c0 1.1.9 2 2 2h5v-9H3zm11 0v9h5c1.1 0 2-.9 2-2v-7H14z'/%3E%3C/svg%3E");
}

.tour-card__meta-item--gift .tour-card__label,
.tour-card__meta-item--gift .tour-card__value {
	color: #6C3CFF;
	font-weight: 600;
}

.tour-card:hover .tour-card__meta-item--gift,
.tour-card:hover .tour-card__meta-item--gift .tour-card__label,
.tour-card:hover .tour-card__meta-item--gift .tour-card__value {
	color: #6C3CFF;
}

.tour-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 8px;
}

.tour-card__price {
	color: var(--color-price);
	font-weight: 700;
	font-size: 1.12rem;
	margin: 2px 0 0;
	transition: color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-card:hover .tour-card__price {
	color: var(--color-hover-pink);
	transform: translateY(-2px) scale(1.02);
	transform-origin: left center;
}

.tour-card__btn.btn--outline {
	background: #FFFFFF;
	color: #6C3CFF;
	border: 1.5px solid #B9A8F0;
	box-shadow: none;
	font-weight: 600;
	font-size: 0.88rem;
	min-height: 40px;
	padding: 10px 18px;
	gap: 8px;
	margin-top: auto;
}

.tour-card__btn.btn--outline:hover,
.tour-card__btn.btn--outline:focus-visible {
	background: #F8F5FF;
	border-color: #6C3CFF;
	color: #6C3CFF;
	box-shadow: none;
	transform: translateY(var(--btn-hover-lift));
}

.tour-card__btn-arrow {
	font-size: 1.05em;
	line-height: 1;
	translate: 0 -0.5px;
}

/* destination-card */
.destination-card {
	position: relative;
	display: block;
	border-radius: var(--radius-category);
	overflow: hidden;
	min-height: 260px;
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition), box-shadow var(--transition);
}

.destination-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
}

.destination-card__image {
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
	transition: transform var(--transition);
}

.destination-card:hover .destination-card__image {
	transform: scale(1.1);
}

.destination-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px 18px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.82) 100%);
	color: var(--color-white);
	text-align: left;
}

.destination-card__title {
	margin: 0 0 4px;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-white);
}

.destination-card__subtitle {
	margin: 0;
	font-size: 0.85rem;
	opacity: 0.92;
	color: var(--color-white);
}

/* testimonial-card */
.testimonial-card {
	background: var(--color-white);
	border: none;
	border-radius: var(--radius-card);
	padding: 28px 28px 32px;
	box-shadow: var(--shadow-card);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

.testimonial-card__head {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px 16px;
	margin-bottom: 18px;
	align-items: start;
}

.testimonial-card__avatar {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card__name {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--color-dark-text);
}

.testimonial-card__location {
	margin: 4px 0 0;
	font-size: 0.85rem;
	color: var(--color-pink);
}

.testimonial-card__stars {
	color: var(--color-accent-orange);
	font-size: 0.95rem;
	letter-spacing: 2px;
}

.testimonial-card__content {
	background: var(--color-section-bg);
	padding: 18px 20px;
	border-radius: var(--radius-input);
	font-size: 0.92rem;
	color: var(--color-paragraph);
	line-height: 1.75;
	margin-bottom: 16px;
	flex: 1;
}

.testimonial-card__content p {
	margin: 0;
}

.testimonial-card__meta {
	margin: 0;
	font-size: 0.82rem;
	color: var(--color-purple);
	font-weight: 600;
}

/* gallery-item */
.gallery-item {
	position: relative;
	display: block;
	border-radius: var(--radius-category);
	overflow: hidden;
	margin: 0;
	box-shadow: var(--shadow-soft);
	transition: transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.gallery-item:focus-visible {
	outline: 2px solid var(--color-pink);
	outline-offset: 3px;
}

.gallery-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.gallery-item__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform var(--transition);
}

.gallery-item:hover .gallery-item__image {
	transform: scale(1.06);
}

.gallery-item__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	padding: 20px 18px;
	background: linear-gradient(180deg, transparent 0%, rgba(108, 60, 255, 0.28) 40%, rgba(44, 34, 88, 0.78) 100%);
	color: var(--color-white);
	pointer-events: none;
}

.gallery-item__title {
	display: block;
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 700;
}

.gallery-item__subtitle {
	display: block;
	margin: 0;
	font-size: 0.82rem;
	opacity: 0.9;
}
