.home-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: linear-gradient(135deg, #f5efe8 0%, #efebe7 28%, #e7edf4 62%, #f4efe9 100%);
}

.admin-bar .home-hero {
	margin-top: -32px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-bg__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(68px);
	opacity: 0.72;
	transition: background 700ms ease;
}

.hero-bg__orb--1 {
	top: 11%;
	left: 14%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 120, 80, 0.7) 0%, transparent 70%);
	animation: heroOrbFloat1 8s ease-in-out infinite;
}

.hero-bg__orb--2 {
	top: 25%;
	right: 8%;
	width: 440px;
	height: 440px;
	background: radial-gradient(circle, rgba(160, 80, 255, 0.64) 0%, transparent 70%);
	animation: heroOrbFloat2 9s ease-in-out infinite;
}

.hero-bg__orb--3 {
	bottom: 10%;
	left: 35%;
	width: 390px;
	height: 390px;
	background: radial-gradient(circle, rgba(60, 180, 255, 0.55) 0%, transparent 70%);
	animation: heroOrbFloat3 7s ease-in-out infinite;
}

.hero-bg__orb--4 {
	right: 25%;
	bottom: 22%;
	width: 360px;
	height: 360px;
	background: radial-gradient(circle, rgba(255, 160, 80, 0.58) 0%, transparent 70%);
	animation: heroOrbFloat1 10s ease-in-out infinite reverse;
}

.hero-bg__orb--5 {
	top: 46%;
	right: 3%;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(255, 80, 160, 0.48) 0%, transparent 70%);
	animation: heroOrbFloat2 7.5s ease-in-out infinite reverse;
}

.hero-bg__orb--6 {
	top: 3%;
	right: 30%;
	width: 280px;
	height: 280px;
	background: radial-gradient(circle, rgba(80, 255, 180, 0.46) 0%, transparent 70%);
	animation: heroOrbFloat3 8.5s ease-in-out infinite;
}

.hero-bg__orb--7 {
	right: 12%;
	bottom: 3%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(255, 204, 80, 0.42) 0%, transparent 70%);
	animation: heroOrbFloat1 9.5s ease-in-out infinite;
}

@keyframes heroOrbFloat1 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	20% { transform: translate(50px, -60px) scale(1.08); }
	40% { transform: translate(-30px, 40px) scale(0.92); }
	60% { transform: translate(60px, 30px) scale(1.12); }
	80% { transform: translate(-40px, -50px) scale(0.96); }
}

@keyframes heroOrbFloat2 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	20% { transform: translate(-60px, 30px) scale(1.12); }
	40% { transform: translate(40px, -50px) scale(0.9); }
	60% { transform: translate(-20px, -40px) scale(1.06); }
	80% { transform: translate(50px, 45px) scale(0.94); }
}

@keyframes heroOrbFloat3 {
	0%, 100% { transform: translate(0, 0) scale(1); }
	25% { transform: translate(55px, 40px) scale(1.12); }
	50% { transform: translate(-45px, -35px) scale(0.92); }
	75% { transform: translate(35px, -50px) scale(1.06); }
}

.hero__container {
	position: relative;
	z-index: 1;
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
	padding-top: 148px;
	padding-bottom: 48px;
	flex: 1;
	display: flex;
	align-items: center;
	gap: 68px;
}

.hero__content {
	flex: 0 0 38%;
	max-width: 38%;
}

.hero__indicator-label {
	display: inline-flex;
	align-items: center;
	padding: 7px 18px;
	margin-bottom: 20px;
	border-radius: 999px;
	border: 1px solid rgba(25, 168, 207, 0.6);
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.hero__title {
	margin: 0 0 22px;
	font-size: clamp(2.6rem, 4.8vw, 4.4rem);
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: -0.01em;
	color: var(--color-primary);
}

.hero__desc {
	max-width: 450px;
	margin: 0 0 34px;
	font-size: 1.1rem;
	line-height: 1.75;
	color: rgba(36, 48, 63, 0.72);
}

.hero__btn {
	padding: 18px 38px;
	font-size: 1.02rem;
	font-weight: 700;
	background: var(--color-primary-dark);
	color: #fff;
	box-shadow: 0 16px 32px rgba(20, 143, 177, 0.22);
}

.hero__btn:hover,
.hero__btn:focus {
	color: #fff;
}

.hero__cards {
	flex: 1;
	position: relative;
}

.hero__card-group {
	display: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: center;
}

.hero__card-group.is-active {
	display: grid;
	animation: heroCardsFade 420ms ease;
}

@keyframes heroCardsFade {
	from {
		opacity: 0;
		transform: translateX(18px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero__card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 18px 48px rgba(28, 39, 52, 0.14);
	color: inherit;
	transform: translateY(0);
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.hero__card:hover,
.hero__card:focus {
	transform: translateY(-6px);
	box-shadow: 0 28px 62px rgba(28, 39, 52, 0.18);
}

.hero__card-img {
	width: 100%;
	height: 500px;
	background-size: cover;
	background-position: center;
	background-color: rgba(255, 255, 255, 0.54);
}

.hero__card-img--placeholder {
	background-image:
		linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(241, 245, 249, 0.92)),
		linear-gradient(135deg, rgba(25, 168, 207, 0.1), rgba(73, 130, 219, 0.08));
}

.hero__card-info {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 24px 22px 22px;
	background: linear-gradient(180deg, rgba(18, 25, 35, 0) 0%, rgba(18, 25, 35, 0.82) 100%);
}

.hero__card-title {
	margin: 0 0 6px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.18;
	color: #fff;
}

.hero__card-loc {
	display: inline-block;
	font-size: 0.92rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.84);
}

.hero__bottom {
	position: relative;
	z-index: 1;
	padding: 20px 0 24px;
	border-top: 1px solid rgba(36, 48, 63, 0.06);
}

.hero__bottom-container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.hero__social {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 36px;
}

.hero__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: rgba(36, 48, 63, 0.72);
	font-size: 28px;
}

.hero__social-link:hover,
.hero__social-link:focus {
	color: var(--color-primary);
	background: rgba(25, 168, 207, 0.08);
}

.hero__indicator {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* ── Hero search (tek pill, sol tab + sağ panel) ──────── */
.hero__search-wrap {
	display: flex;
	align-items: stretch;
	width: min(100%, 620px);
	height: 64px;
	border-radius: 8px 999px 999px 8px;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 12px 36px rgba(17, 31, 46, 0.12);
	transition: width 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.18s;
}

.hero__search-wrap.is-filter {
	width: min(100%, 760px);
}

.hero__search-wrap:focus-within {
	box-shadow: 0 16px 40px rgba(17, 31, 46, 0.18), 0 0 0 2px var(--color-primary);
}

/* Sol tab bloğu */
.hero__search-tabs {
	flex-shrink: 0;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	border-right: 1px solid rgba(36, 48, 63, 0.1);
	border-radius: 8px 0 0 8px;
	overflow: hidden;
}

.hero__search-tab {
	flex: 0 0 auto;
	height: 32px;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	border: none;
	border-radius: 0;
	background: transparent;
	color: rgba(36, 48, 63, 0.35);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.15s, background 0.15s;
	white-space: nowrap;
	line-height: 1;
}

.hero__search-tab:first-child {
	border-bottom: 1px solid rgba(36, 48, 63, 0.1);
	align-items: flex-end;
	padding-bottom: 3px;
}

.hero__search-tab:last-child {
	align-items: flex-start;
	padding-top: 3px;
}

.hero__search-tab.is-active {
	color: var(--color-primary);
	background: rgba(25, 168, 207, 0.07);
}

.hero__search-tab:not(.is-active):hover {
	color: rgba(36, 48, 63, 0.6);
	background: rgba(36, 48, 63, 0.03);
}

/* Paneller */
.hero__ai-search,
.hero__filter-search {
	display: none;
	flex: 1;
	min-width: 0;
	align-items: center;
}

.hero__ai-search.is-active,
.hero__filter-search.is-active {
	display: flex;
}

/* AI panel */
.hero__ai-search {
	gap: 8px;
	padding: 6px 8px 6px 8px;
	margin: 0;
}

/* Filtre panel */
.hero__filter-search {
	gap: 0;
	padding: 0 6px 0 0;
	margin: 0;
}


.hero__filter-field {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	padding: 0 14px;
	border-right: 1px solid rgba(36, 48, 63, 0.08);
	cursor: pointer;
	height: 100%;
}

.hero__filter-label {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: rgba(36, 48, 63, 0.45);
	text-transform: uppercase;
	white-space: nowrap;
}

.hero__filter-field select {
	display: none;
}

/* Custom dropdown — yukarı açılır */
.hero__filter-field {
	position: relative;
}


.hero__filter-list {
	position: absolute;
	bottom: calc(100% + 16px);
	left: 50%;
	transform: translateX(-50%) translateY(6px);
	min-width: 180px;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 -4px 32px rgba(17, 31, 46, 0.12), 0 2px 8px rgba(17, 31, 46, 0.06);
	border: 1px solid rgba(36, 48, 63, 0.07);
	padding: 6px;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s, transform 0.18s;
}

.hero__filter-field.is-open .hero__filter-list {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.hero__filter-list-item {
	display: block;
	width: 100%;
	padding: 9px 14px;
	border: none;
	border-radius: 8px;
	background: transparent;
	text-align: left;
	font-size: 0.875rem;
	color: var(--color-text);
	cursor: pointer;
	transition: background 0.12s;
	white-space: nowrap;
}

.hero__filter-selected {
	opacity: 0.85;
	font-weight: 600;
}

.hero__filter-list-item:hover {
	background: rgba(36, 48, 63, 0.05);
	color: var(--color-primary);
}

.hero__filter-list-item.is-selected {
	font-weight: 600;
	color: rgba(36, 48, 63, 0.9);
}

.hero__filter-submit {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 6px;
	height: 50px;
	padding: 0 20px;
	margin: 0 6px 0 auto;
	align-self: center;
	border-radius: 8px 999px 999px 8px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	margin: 7px 0;
}

.hero__ai-avatar {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	overflow: hidden;
	pointer-events: none;
}

.hero__ai-avatar video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__ai-input {
	flex: 1;
	min-width: 0;
	height: 40px;
	border: none;
	outline: none;
	background: transparent;
	font-size: 0.95rem;
	color: var(--color-text);
	padding: 0 4px;
	caret-color: var(--color-primary);
}

.hero__ai-input::placeholder {
	color: rgba(36, 48, 63, 0.5);
}

.hero__ai-submit {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: none;
	color: #19a8cf;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}


.hero__ai-submit:hover {
	background: rgba(25, 168, 207, 0.35);
	color: #fff;
}

.hero__nav-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.hero__indicator-count {
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: rgba(36, 48, 63, 0.7);
}

.hero__nav-arrows {
	display: flex;
	gap: 10px;
}

.hero__nav-arrow {
	width: 46px;
	height: 46px;
	border: 1px solid rgba(36, 48, 63, 0.14);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-text);
	font-size: 1.1rem;
	font-weight: 700;
	box-shadow: 0 8px 20px rgba(28, 39, 52, 0.08);
}

.hero__nav-arrow:hover,
.hero__nav-arrow:focus {
	background: #fff;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.site-promo-grid {
	padding: 100px 0 80px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.92) 6rem),
		#fff;
}

.site-promo-grid__header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 12px;
	margin-bottom: 24px;
}

.site-promo-grid__subtitle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 18px;
	border: 1px solid rgba(25, 168, 207, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.site-promo-grid__heading {
	margin: 0;
	color: var(--color-primary-darker);
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.site-promo-grid__inner {
	--promo-grid-radius: 4px;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1rem;
}

.site-promo-grid__card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	align-items: end;
	height: 327px;
	min-height: 327px;
	padding: clamp(1.5rem, 2.2vw, 2rem);
	border-radius: var(--promo-grid-radius);
	background-color: var(--promo-card-bg, transparent);
	overflow: hidden;
	isolation: isolate;
	box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
	transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease, background-color 0.32s ease;
}

.site-promo-grid__card::before {
	content: "";
	position: absolute;
	inset: -6%;
	background-image: var(--promo-card-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1) translate3d(var(--promo-parallax-x, 0px), var(--promo-parallax-y, 0px), 0);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: transform;
	z-index: 0;
}

.site-promo-grid__card.has-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10, 34, 44, 0.42), rgba(10, 34, 44, 0.12));
	transition: background 0.32s ease, opacity 0.32s ease;
	z-index: 0;
}

.site-promo-grid__card.has-no-image::before {
	display: none;
}

.site-promo-grid__card:hover::before {
	transform: scale(1.06) translate3d(var(--promo-parallax-x, 0px), var(--promo-parallax-y, 0px), 0);
}

.site-promo-grid__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 68px rgba(15, 23, 42, 0.16);
	filter: saturate(1.06);
}

.site-promo-grid__card.has-image:hover::after {
	background: linear-gradient(135deg, rgba(10, 34, 44, 0.24), rgba(10, 34, 44, 0.06));
}

.site-promo-grid__card.has-no-image:hover {
	background-color: color-mix(in srgb, var(--promo-card-bg, #ffffff) 84%, #ffffff 16%);
}

.site-promo-grid__frame {
	position: absolute;
	inset: 22px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: calc(var(--promo-grid-radius) + 1px);
	pointer-events: none;
}

.site-promo-grid__card--1,
.site-promo-grid__card:nth-child(1) {
	grid-column: span 4;
}

.site-promo-grid__card--2,
.site-promo-grid__card:nth-child(2) {
	grid-column: span 3;
}

.site-promo-grid__card--3,
.site-promo-grid__card:nth-child(3) {
	grid-column: span 5;
}

.site-promo-grid__card--4,
.site-promo-grid__card:nth-child(4) {
	grid-column: span 5;
}

.site-promo-grid__card--5,
.site-promo-grid__card:nth-child(5) {
	grid-column: span 4;
}

.site-promo-grid__card--6,
.site-promo-grid__card:nth-child(6) {
	grid-column: span 3;
}

.site-promo-grid__content {
	position: relative;
	z-index: 5;
	display: grid;
	gap: 0.65rem;
	max-width: 17rem;
	align-self: end;
	justify-items: start;
}

.site-promo-grid__card.has-no-image .site-promo-grid__content {
	z-index: 2;
}

.site-promo-grid__overlay-link {
	position: absolute;
	inset: 0;
	z-index: 4;
}

.site-promo-grid__meta,
.site-promo-grid__date {
	margin: 0;
}

.site-promo-grid__title {
	margin: 0;
	color: #0a4f4f;
	font-size: clamp(1.2rem, 1.8vw, 1.9rem);
	font-weight: 800;
	line-height: 1.08;
	text-wrap: balance;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
}

.site-promo-grid__meta {
	color: rgba(10, 79, 79, 0.78);
	font-size: 1.02rem;
	line-height: 1.6;
}

.site-promo-grid__card.has-image .site-promo-grid__title,
.site-promo-grid__card.has-image .site-promo-grid__meta {
	color: #fff;
}

.site-promo-grid__title-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 999px;
	font-size: 0.82rem;
	color: currentColor;
	background: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
	transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.site-promo-grid__card.has-no-image .site-promo-grid__title-arrow {
	background: rgba(10, 79, 79, 0.08);
}

.site-promo-grid__card:hover .site-promo-grid__title-arrow {
	transform: translateX(3px);
}

.site-promo-grid__icon {
	position: absolute;
	top: 22px;
	right: 22px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	color: #fff;
	font-size: 4.8rem;
	line-height: 1;
	pointer-events: none;
	transform: translate3d(calc(var(--promo-parallax-x, 0px) * 0.35), calc(var(--promo-parallax-y, 0px) * 0.35), 0);
	transition: color 0.28s ease, transform 0.22s ease;
}

.site-promo-grid__card.has-image .site-promo-grid__icon {
	color: #fff;
}

.site-promo-grid__card:hover .site-promo-grid__icon {
	transform: translate3d(calc(var(--promo-parallax-x, 0px) * 0.48), calc(var(--promo-parallax-y, 0px) * 0.48), 0);
	color: #fff;
}

.site-promo-grid__card--6,
.site-promo-grid__card:nth-child(6) {
	background: var(--color-primary);
}

.site-promo-grid__card--6:hover,
.site-promo-grid__card:nth-child(6):hover {
	background: var(--color-primary);
}

.site-promo-grid__card--6 .site-promo-grid__title,
.site-promo-grid__card--6 .site-promo-grid__title-arrow,
.site-promo-grid__card:nth-child(6) .site-promo-grid__title,
.site-promo-grid__card:nth-child(6) .site-promo-grid__title-arrow {
	color: #fff;
}

.site-promo-grid__card--6 .site-promo-grid__title-arrow,
.site-promo-grid__card:nth-child(6) .site-promo-grid__title-arrow {
	background: rgba(255, 255, 255, 0.12);
}

.site-promo-grid__accent {
	position: absolute;
	z-index: 2;
	pointer-events: none;
	will-change: transform;
}

.site-promo-grid__accent img {
	display: block;
	width: auto;
	height: auto;
	max-width: 118px;
	max-height: 118px;
	object-fit: contain;
}

.site-promo-grid__accent--top-left {
	top: -6px;
	left: -6px;
}

.site-promo-grid__accent--bottom-right {
	right: -6px;
	bottom: -8px;
}

@media (max-width: 1200px) {
	.site-promo-grid__card--1,
	.site-promo-grid__card--2,
	.site-promo-grid__card--3,
	.site-promo-grid__card--4,
	.site-promo-grid__card--5,
	.site-promo-grid__card--6,
	.site-promo-grid__card:nth-child(1),
	.site-promo-grid__card:nth-child(2),
	.site-promo-grid__card:nth-child(3),
	.site-promo-grid__card:nth-child(4),
	.site-promo-grid__card:nth-child(5),
	.site-promo-grid__card:nth-child(6) {
		grid-column: span 6;
	}

	.hero__container {
		gap: 40px;
	}

	.hero__title {
		font-size: clamp(2.8rem, 5vw, 4.6rem);
	}

	.hero__card-img {
		height: 420px;
	}
}

@media (max-width: 992px) {
	.hero__container {
		flex-direction: column;
		padding-top: 136px;
		text-align: center;
	}

	.hero__content {
		flex: none;
		max-width: 100%;
	}

	.hero__desc {
		margin-inline: auto;
	}

	.hero__cards {
		width: 100%;
	}

	.hero__card-group {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.site-promo-grid__inner {
		grid-template-columns: 1fr;
	}

	.site-promo-grid__card--1,
	.site-promo-grid__card--2,
	.site-promo-grid__card--3,
	.site-promo-grid__card--4,
	.site-promo-grid__card--5,
	.site-promo-grid__card--6,
	.site-promo-grid__card:nth-child(1),
	.site-promo-grid__card:nth-child(2),
	.site-promo-grid__card:nth-child(3),
	.site-promo-grid__card:nth-child(4),
	.site-promo-grid__card:nth-child(5),
	.site-promo-grid__card:nth-child(6) {
		grid-column: auto;
	}

	.site-promo-grid__card {
		height: 327px;
		min-height: 327px;
	}

	.site-promo-grid__frame {
		inset: 18px;
	}

	.site-promo-grid__accent img {
		max-width: 92px;
		max-height: 92px;
	}

	.home-hero {
		min-height: auto;
	}

	.hero__container,
	.hero__bottom-container {
		width: min(100% - 28px, 1800px);
	}

	.hero__title {
		font-size: clamp(2.55rem, 13vw, 4rem);
	}

	.hero__card-group {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-inline: auto;
	}

	.hero__card-img {
		height: 340px;
	}

	.hero__bottom-container {
		flex-direction: column;
		align-items: center;
	}

	.hero__nav-group {
		display: none;
	}

	.hero__indicator {
		width: 100%;
	}

	.hero__social {
		justify-content: center;
		width: 100%;
	}

	.hero__search-wrap {
		width: 100%;
	}

	.hero__filter-field {
		padding: 0 8px;
	}

	.hero__filter-submit {
		padding: 0 14px;
	}
}

/* ========================================================
   Hero Mobile Slider
   ======================================================== */

.hero__mobile-slider {
	display: none;
}

@media (max-width: 767px) {
	.hero__cards {
		display: none !important;
	}

	.hero__mobile-slider {
		display: block;
		width: 100%;
		margin-top: 16px;
		overflow: hidden;
	}

	.hero__mobile-slider-track {
		display: flex;
		width: 100%;
		will-change: transform;
	}

	.hero__mobile-slide {
		flex: 0 0 100%;
		min-width: 100%;
		max-width: 100%;
		border-radius: 10px;
		overflow: hidden;
	}

	.hero__mobile-slide .hero__card-img {
		height: 240px !important;
	}

	.hero__mobile-slider-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 16px;
		margin-top: 12px;
	}

	.hero__mobile-slider-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.82);
		color: var(--color-primary);
		font-size: 0.95rem;
		box-shadow: 0 4px 14px rgba(35, 45, 58, 0.12);
		transition: background 0.15s, transform 0.15s;
	}

	.hero__mobile-slider-btn:hover {
		background: #fff;
		transform: scale(1.06);
	}

	.hero__mobile-slider-btn:disabled {
		opacity: 0.35;
		pointer-events: none;
	}

	.hero__mobile-slider-counter {
		font-size: 0.88rem;
		font-weight: 700;
		color: var(--color-primary);
		min-width: 52px;
		text-align: center;
	}
}

/* ========================================================
   Home Gallery Section
   ======================================================== */

.home-gallery {
	position: relative;
	padding: 0;
	background: var(--color-primary);
	overflow: hidden;
}

.home-gallery::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--home-gallery-bg-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
}

.home-gallery__layout {
	position: relative;
	z-index: 1;
}

.home-gallery__layout {
	display: grid;
	grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
	gap: 1.1rem;
	padding: clamp(1rem, 1.7vw, 1.4rem) 0 0;
	width: min(100% - 32px, calc(var(--container) + 88px));
	margin: 0 auto;
}

.home-gallery__topbar {
	grid-column: 1 / -1;
	padding-bottom: 0.5rem;
	margin-bottom: 0;
}

.home-gallery__topbar-inner {
	width: min(100% - 48px, var(--container));
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-gallery__topbar-left,
.home-gallery__topbar-right {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.home-gallery__topbar-label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.46rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
}

.home-gallery__topbar-label i {
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95em;
}

.home-gallery__socials {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	flex-wrap: wrap;
}

.home-gallery__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9rem;
	height: 1.9rem;
	padding: 0 0.75rem 0 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 0.3rem;
	background: rgba(8, 24, 38, 0.22);
	color: #fff;
	font-size: 0.74rem;
	gap: 0.45rem;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-gallery__social-link-label {
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.home-gallery__social-link:hover,
.home-gallery__social-link:focus {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.28);
	color: #fff;
	transform: translateY(-1px);
}

.home-gallery__intro {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: stretch;
	padding: clamp(1.4rem, 2.8vw, 2.3rem) 0;
	color: #fff;
	background: transparent;
}

.home-gallery__intro-main {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}

.home-gallery__brand-lockup {
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
	line-height: 0.92;
}

.home-gallery__brand-line {
	display: block;
	font-size: clamp(2.7rem, 4.3vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.home-gallery__brand-line--solid {
	color: #fff;
}

.home-gallery__brand-line--outline {
	color: transparent;
	-webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.62);
}

.home-gallery__summary {
	max-width: 18ch;
	margin: 1rem 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.02rem, 1.35vw, 1.28rem);
	font-weight: 600;
	line-height: 1.45;
}

.home-gallery__intro-footer {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	padding-top: 1rem;
}

.home-gallery__nav {
	margin: 0;
	padding-top: 0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.home-gallery__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.15rem;
	height: 2.15rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.home-gallery__nav-btn svg {
	pointer-events: none;
}

.home-gallery__nav-btn:hover,
.home-gallery__nav-btn:focus-visible {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: scale(1.05);
}

.home-gallery__dots {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 0.75rem;
}

.home-gallery__dot {
	width: 0.62rem;
	height: 0.62rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.22);
	transition: transform 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.home-gallery__dot.is-active {
	background: rgba(255, 255, 255, 0.96);
	transform: scale(1.12);
}

.home-gallery__media {
	width: 100%;
	min-width: 0;
	height: 540px;
	overflow: hidden;
	border-radius: 0.9rem 0.9rem 0 0;
	align-self: start;
}

.home-gallery__grid {
	display: none;
}

.home-gallery__track {
	height: 100%;
}

.home-gallery__item {
	margin: 0;
	min-height: 0;
	overflow: hidden;
}

.home-gallery__trigger {
	position: relative;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	min-height: 0;
}

.home-gallery__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.home-gallery__media {
	position: relative;
	overflow: hidden;
}

.home-gallery__grid {
	transition: none;
}


.home-gallery__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	color: #fff;
	background: rgba(8, 24, 38, 0.62);
	opacity: 0;
	transition: opacity 0.26s ease;
}

.home-gallery__overlay-icon {
	font-size: 2rem;
	line-height: 1;
}

.home-gallery__overlay-title {
	display: block;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
}

.home-gallery__overlay-text {
	display: block;
	font-size: 0.78rem;
	color: rgba(255,255,255,0.9);
}

.home-gallery__trigger:hover .home-gallery__overlay,
.home-gallery__trigger:focus-visible .home-gallery__overlay {
	opacity: 1;
}

.home-gallery__trigger:hover .home-gallery__image,
.home-gallery__trigger:focus-visible .home-gallery__image {
	transform: scale(1.06);
}

.home-gallery__trigger {
	display: block;
	width: 100%;
	height: 100%;
}

.home-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 990;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.home-gallery-lightbox[hidden] {
	display: none;
}

.home-gallery-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 8, 14, 0.82);
	backdrop-filter: blur(2px);
}

.home-gallery-lightbox__dialog {
	position: relative;
	z-index: 2;
	width: min(96vw, 1120px);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
}

.home-gallery-lightbox__figure {
	margin: 0;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #0b131b;
}

.home-gallery-lightbox__image {
	width: 100%;
	max-height: min(75vh, 760px);
	display: block;
	object-fit: contain;
	background: #0b131b;
}

.home-gallery-lightbox__caption {
	display: grid;
	gap: 0.22rem;
	padding: 0.72rem 0.85rem 0.8rem;
	color: #fff;
	background: #0f1d2b;
}

.home-gallery-lightbox__caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.home-gallery-lightbox__caption-info {
	display: grid;
	gap: 0.2rem;
}

.home-gallery-lightbox__caption-info strong {
	font-size: 0.95rem;
	line-height: 1.3;
}

.home-gallery-lightbox__caption-info span {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.86);
	line-height: 1.45;
}

.home-gallery-lightbox__caption-actions {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
}

.home-gallery-lightbox__share-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.78rem;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.18s ease;
}

.home-gallery-lightbox__share-btn:hover {
	background: rgba(255, 255, 255, 0.22);
}

.home-gallery-lightbox__close,
.home-gallery-lightbox__nav {
	border: 1px solid rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	cursor: pointer;
}

.home-gallery-lightbox__close {
	position: absolute;
	right: 0;
	top: -2.6rem;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	font-size: 1.4rem;
	line-height: 1;
}

.home-gallery-lightbox__nav {
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 999px;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-gallery-lightbox__close:hover,
.home-gallery-lightbox__close:focus-visible,
.home-gallery-lightbox__nav:hover,
.home-gallery-lightbox__nav:focus-visible {
	background: rgba(255, 255, 255, 0.28);
}

body.home-gallery-lightbox-open {
	overflow: hidden;
}

@media (max-width: 61.99rem) {
	.home-gallery__layout {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		padding-top: clamp(1rem, 2.8vw, 1.5rem);
		width: min(100% - 24px, calc(var(--container) + 24px));
	}

	.home-gallery__topbar {
		padding-bottom: 0;
	}

	.home-gallery__topbar-inner {
		width: min(100% - 24px, var(--container));
		flex-direction: column;
		align-items: flex-start;
	}

	.home-gallery__topbar-left,
	.home-gallery__topbar-right {
		width: 100%;
		justify-content: space-between;
	}

	.home-gallery__intro {
		padding-top: 0;
		padding-bottom: 0;
		justify-content: center;
	}

	.home-gallery__intro-main {
		align-items: center;
		text-align: center;
	}

	.home-gallery__brand-lockup {
		width: 100%;
	}

	.home-gallery__brand-line {
		font-size: clamp(2.4rem, 11vw, 3.6rem);
	}

	.home-gallery__summary {
		max-width: 100%;
		font-size: clamp(0.95rem, 3.8vw, 1.1rem);
	}

	.home-gallery__intro-footer {
		align-items: center;
	}

	.home-gallery__track {
		height: 100%;
	}

	.home-gallery__media {
		height: 560px;
	}

	.home-gallery__overlay {
		opacity: 1;
		background: linear-gradient(180deg, rgba(8,24,38,.02) 24%, rgba(8,24,38,.58) 72%, rgba(8,24,38,.8) 100%);
	}

	.home-gallery-lightbox__dialog {
		width: min(95vw, 680px);
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.home-gallery-lightbox__nav {
		position: absolute;
		top: 45%;
		transform: translateY(-50%);
		z-index: 2;
	}

	.home-gallery-lightbox__nav--prev {
		left: 0.45rem;
	}

	.home-gallery-lightbox__nav--next {
		right: 0.45rem;
	}
}

@media (min-width: 62rem) {
	.home-gallery__layout {
		grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: start;
		width: min(100% - 32px, calc(var(--container) + 88px));
	}

	.home-gallery__topbar {
		grid-column: 1 / -1;
	}

	.home-gallery__intro {
		border-right: 1px solid rgba(255, 255, 255, 0.16);
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.home-gallery__media {
		min-height: 0;
		height: 540px;
	}

	.home-gallery__track {
		height: 100%;
	}
}

/* ========================================================
   News Grid Section
   ======================================================== */

.news-section {
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
	background: transparent;
	--blog-cover-ratio: 1774 / 887;
	--blog-cover-surface: linear-gradient(135deg, rgba(25, 168, 207, 0.08), rgba(36, 48, 63, 0.05));
}

.news-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.news-title-area {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.news-section .section-title {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--color-primary);
}

.all-news-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: rgba(36, 48, 63, 0.72);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.all-news-link span {
	font-size: 1.1rem;
	line-height: 1;
}

.all-news-link:hover,
.all-news-link:focus {
	color: var(--color-primary);
	transform: translateX(2px);
}

.news-category-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.news-cat-btn {
	position: relative;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(36, 48, 63, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: rgba(36, 48, 63, 0.72);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(17, 31, 46, 0.05);
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.news-cat-btn:hover,
.news-cat-btn:focus {
	color: var(--color-primary);
	border-color: rgba(25, 168, 207, 0.25);
	transform: translateY(-1px);
}

.news-cat-btn.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	box-shadow: 0 12px 28px rgba(25, 168, 207, 0.22);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	align-items: start;
}

.news-grid article {
	margin: 0;
}

.news-card-large {
	grid-column: span 2;
}

.news-card-medium:nth-of-type(2) {
	grid-column: auto;
	grid-row: auto;
}

.news-card-medium:nth-of-type(3) {
	grid-column: auto;
	grid-row: auto;
}

.news-card-small {
	grid-row: auto;
}

.news-card {
	overflow: hidden;
	height: 100%;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 48px rgba(17, 31, 46, 0.08);
	backdrop-filter: blur(16px);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 56px rgba(17, 31, 46, 0.12);
}

.news-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.news-card-image {
	position: relative;
	aspect-ratio: var(--blog-cover-ratio);
	overflow: hidden;
	background: var(--blog-cover-surface);
}

.news-card-image img,
.news-card-image .wp-post-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--blog-cover-surface);
	transition: transform 360ms ease;
}

.news-card:hover .news-card-image img,
.news-card:hover .news-card-image .wp-post-image {
	transform: scale(1.04);
}

.news-card-large {
	height: 100%;
}

.news-card-large .news-card-image {
	height: auto;
	min-height: 0;
}

.news-card-large .news-card-overlay {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.5rem;
	background: linear-gradient(180deg, rgba(8, 14, 22, 0.06) 0%, rgba(8, 14, 22, 0.82) 100%);
	color: #fff;
}

.news-card-large .news-card-title {
	color: #fff;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 0.65rem;
}

.news-card-large .news-card-meta {
	color: rgba(255, 255, 255, 0.84);
}

.news-card-medium,
.news-card-small {
	display: flex;
	flex-direction: column;
}

.news-card-medium .news-card-link,
.news-card-small .news-card-link {
	display: flex;
	flex-direction: column;
}

.news-card-medium .news-card-image {
	min-height: 0;
	height: auto;
}

.news-card-small .news-card-image {
	min-height: 0;
	height: auto;
}

.news-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 0.78rem 0.85rem 0.88rem;
}

.news-card-medium .news-card-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
	margin: 0;
	padding: 0.62rem 0.68rem 0.62rem;
	justify-content: space-between;
}

.news-card-small .news-card-content {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.62rem 0.74rem 0.7rem;
	justify-content: flex-end;
}

.news-card-medium .news-card-title,
.news-card-small .news-card-title {
	margin: 0;
	color: var(--color-text);
	font-weight: 800;
	line-height: 1.35;
	transition: color 180ms ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card-medium .news-card-title {
	font-size: 1.16rem;
	line-height: 1.14;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.news-card-small .news-card-title {
	font-size: 0.9rem;
	line-height: 1.26;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.news-card:hover .news-card-title,
.news-card:focus-within .news-card-title {
	color: var(--color-primary);
}

.news-card-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 0;
	padding-top: 0.55rem;
	font-size: 0.76rem;
	color: rgba(36, 48, 63, 0.62);
}

.news-card-medium .news-card-meta {
	margin-top: auto;
	padding-top: 0.22rem;
	font-size: 0.69rem;
}

.news-card-small .news-card-meta {
	padding-top: 0.4rem;
	font-size: 0.72rem;
}

.news-card-meta .divider {
	opacity: 0.25;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 700;
}

.news-card .no-image {
	width: 100%;
	height: 100%;
	min-height: inherit;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(231, 237, 244, 0.96)),
		linear-gradient(135deg, rgba(25, 168, 207, 0.14), rgba(73, 130, 219, 0.08));
}

.no-news {
	grid-column: 1 / -1;
	padding: 2rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 40px rgba(17, 31, 46, 0.08);
	text-align: center;
	color: rgba(36, 48, 63, 0.72);
}

.news-grid.loading {
	opacity: 0.55;
	pointer-events: none;
}

@media (max-width: 1200px) {
	.news-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.news-card-large {
		grid-column: 1 / 3;
	}

	.news-card-medium:nth-of-type(2) {
		grid-column: 1;
		grid-row: 2;
	}

	.news-card-medium:nth-of-type(3) {
		grid-column: 2;
		grid-row: 2;
	}

	.news-card-small {
		grid-row: auto;
	}
}

@media (max-width: 767px) {
	.news-header {
		align-items: flex-start;
	}

	.news-category-filter {
		width: 100%;
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 0.35rem;
	}

	.news-grid {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.news-card-medium:nth-of-type(2),
	.news-card-medium:nth-of-type(3) {
		grid-column: 1;
		grid-row: auto;
	}

	.news-grid > article:nth-child(n+4) {
		display: none;
	}

	.news-card-large .news-card-image {
		min-height: 0;
	}

	.news-card-medium .news-card-content {
		flex: 0 0 auto;
		padding: 0.62rem 0.74rem 0.7rem;
		justify-content: flex-end;
	}

	.news-card-medium .news-card-title {
		font-size: 0.9rem;
		line-height: 1.26;
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}

	.news-card-medium .news-card-meta {
		padding-top: 0.4rem;
		font-size: 0.72rem;
		margin-top: 0;
	}
}

.home-popular-tours {
	position: relative;
	overflow: clip;
	border: none;
}

.home-popular-tours__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.home-popular-tours__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--popular-tours-overlay-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 1;
}

.home-popular-tours__container {
	position: relative;
	z-index: 1;
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
	padding: 56px 0 44px;
}

.home-popular-tours__header {
	margin-bottom: 48px;
	text-align: center;
}

.home-popular-tours__subtitle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 18px;
	margin-bottom: 16px;
	border: 1px solid rgba(25, 168, 207, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(16px);
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.home-popular-tours__title {
	margin: 0 0 12px;
	color: var(--color-primary-darker);
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 700;
	line-height: 1.08;
	text-shadow: 0 6px 18px rgba(255, 255, 255, 0.16);
}

.home-popular-tours__desc {
	max-width: 620px;
	margin: 0 auto;
	color: rgba(36, 48, 63, 0.82);
	font-size: 1rem;
	line-height: 1.75;
	text-shadow: 0 4px 12px rgba(255, 255, 255, 0.12);
}

.home-popular-tours__footer {
	margin-top: 0;
	text-align: center;
}

.home-popular-tours__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 36px;
	border-radius: 999px;
	background: #fff;
	color: var(--color-primary-dark);
	font-size: 0.98rem;
	font-weight: 700;
	box-shadow: 0 16px 36px rgba(17, 31, 46, 0.18);
	transition: transform 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.home-popular-tours__btn:hover,
.home-popular-tours__btn:focus {
	color: var(--color-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 22px 42px rgba(17, 31, 46, 0.24);
}

.coverflow {
	--coverflow-card-w: 320px;
	position: relative;
	width: 100%;
	padding: 40px 0;
	overflow: visible;
}

.coverflow__viewport {
	width: 100%;
	overflow: visible;
}

.coverflow__track {
	display: flex;
	align-items: stretch;
	will-change: transform;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coverflow__item {
	flex: 0 0 var(--coverflow-card-w);
	width: var(--coverflow-card-w);
	margin: 0 -45px;
	box-sizing: border-box;
	transform-origin: center center;
	cursor: pointer;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.55s ease, filter 0.55s ease;
}

.coverflow__item.is-active {
	z-index: 10;
	opacity: 1;
	filter: brightness(1);
	cursor: default;
}

.coverflow__item.is-near {
	z-index: 5;
	opacity: 0.85;
	filter: brightness(0.85);
}

.coverflow__item.is-far {
	z-index: 2;
	opacity: 0.5;
	filter: brightness(0.72);
}

.coverflow__item.is-hidden {
	z-index: 1;
	opacity: 0.15;
	filter: brightness(0.52);
}

.coverflow__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(8, 16, 24, 0.16);
	transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.coverflow__item.is-active .coverflow__card {
	transform: scale(1.08);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.coverflow__item.is-near .coverflow__card {
	box-shadow: 0 12px 38px rgba(0, 0, 0, 0.18);
}

.coverflow__card-img {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	height: 220px;
	overflow: hidden;
}

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

.coverflow__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px 22px 20px;
}

.coverflow__card-title {
	display: -webkit-box;
	margin: 0 0 6px;
	overflow: hidden;
	color: var(--color-text);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.coverflow__card-meta {
	margin: 0 0 12px;
	color: rgba(36, 48, 63, 0.58);
	font-size: 0.9rem;
	line-height: 1.55;
}

.coverflow__card-price {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 16px;
}

.coverflow__card-price-value {
	color: var(--color-primary);
	font-size: 1.42rem;
	font-weight: 800;
}

.coverflow__card-price-per {
	color: rgba(36, 48, 63, 0.5);
	font-size: 0.84rem;
}

.coverflow__card-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 11px 20px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 700;
	transition: transform 220ms ease, background-color 220ms ease;
}

.coverflow__card-btn:hover,
.coverflow__card-btn:focus {
	color: #fff;
	background: var(--color-primary-dark);
	transform: translateY(-1px);
}

.coverflow__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
}

.coverflow__dot {
	flex: 0 0 12px;
	display: block;
	width: 12px;
	min-width: 12px;
	max-width: 12px;
	height: 12px;
	min-height: 12px;
	max-height: 12px;
	padding: 0;
	border: none;
	border-radius: 50%;
	appearance: none;
	-webkit-appearance: none;
	background: rgba(25, 168, 207, 0.28);
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(25, 168, 207, 0.18);
	transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.coverflow__dot.is-active {
	background: var(--color-primary);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
	transform: scale(1.3);
}

.coverflow__nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.coverflow__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid rgba(25, 168, 207, 0.24);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(16px);
	color: var(--color-primary);
	cursor: pointer;
	transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.coverflow__nav-btn:hover,
.coverflow__nav-btn:focus {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
	transform: translateY(-1px);
}

#popular-coverflow:focus {
	outline: none;
}

@media (max-width: 992px) {
	.home-popular-tours__container {
		width: min(100% - 32px, var(--container));
		padding: 48px 0 38px;
	}

	.coverflow {
		--coverflow-card-w: 300px;
	}
}

@media (max-width: 640px) {
	.home-popular-tours__container {
		width: min(100% - 24px, var(--container));
		padding: 38px 0 30px;
	}

	.home-popular-tours__header {
		margin-bottom: 34px;
	}

	.home-popular-tours__desc {
		font-size: 0.94rem;
		line-height: 1.65;
	}

	.coverflow {
		--coverflow-card-w: 270px;
		padding: 24px 0;
	}

	.coverflow__dots {
		display: none;
	}

	.coverflow__card-img {
		height: 180px;
	}

	.coverflow__card-body {
		padding: 16px;
	}

	.coverflow__card-title {
		font-size: 0.98rem;
	}

	.coverflow__card-price-value {
		font-size: 1.18rem;
	}
}

.home-popular-feature {
	--popular-feature-surface: rgba(255, 255, 255, 0.9);
	--popular-feature-ink: #172b3f;
	--popular-feature-card-w: clamp(180px, 18vw, 228px);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #eff7f8;
}

.home-popular-feature__viewport {
	position: relative;
	z-index: 1;
}

.home-popular-feature__slide {
	position: relative;
	display: none;
	overflow: hidden;
	isolation: isolate;
}

.home-popular-feature__slide.is-active {
	display: block;
	animation: popularFeatureRevealNext 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-popular-feature__slide.is-active.is-entering-prev {
	animation-name: popularFeatureRevealPrev;
}

.home-popular-feature__slide.is-measuring {
	display: block;
	position: absolute;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
}

@keyframes popularFeatureRevealNext {
	from {
		opacity: 0;
		transform: translateX(48px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes popularFeatureRevealPrev {
	from {
		opacity: 0;
		transform: translateX(-48px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.home-popular-feature__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: var(--popular-feature-bg);
	background-size: cover;
	background-position: center;
	opacity: 0.96;
	filter: saturate(1.05);
}

.home-popular-feature__slide::before,
.home-popular-feature__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.home-popular-feature__slide::before {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(248, 253, 253, 0.9) 0%, rgba(248, 253, 253, 0.76) 38%, rgba(248, 253, 253, 0.38) 68%, rgba(248, 253, 253, 0.12) 100%),
		linear-gradient(180deg, rgba(231, 246, 247, 0.56) 0%, rgba(255, 255, 255, 0.82) 100%);
}

.home-popular-feature__slide::after {
	z-index: -1;
	top: auto;
	height: 42%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 92%);
}

.home-popular-feature__container {
	position: relative;
	z-index: 1;
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
	padding: 64px 0 72px;
}

.home-popular-feature__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	gap: 28px;
	align-items: start;
}

.home-popular-feature__content {
	max-width: 690px;
}

.home-popular-feature__subtitle,
.home-popular-feature__panel-label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 10px;
	padding: 7px 18px;
	border: 1px solid rgba(25, 168, 207, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	color: var(--color-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	backdrop-filter: blur(16px);
}

.home-popular-feature__title {
	margin: 0;
	max-width: 760px;
	color: var(--popular-feature-ink);
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	font-weight: 700;
	line-height: 1.06;
}

.home-popular-feature__lead {
	margin: 10px 0 0;
	max-width: 620px;
	color: rgba(23, 43, 63, 0.65);
	font-size: 0.88rem;
	font-weight: 400;
	line-height: 1.6;
}

.home-popular-feature__desc {
	margin: 12px 0 0;
	max-width: 640px;
	color: rgba(23, 43, 63, 0.74);
	font-size: 0.92rem;
	line-height: 1.72;
}

.home-popular-feature__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.home-popular-feature__meta span {
	display: inline-flex;
	align-items: baseline;
	gap: 7px;
	padding: 10px 14px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 30px rgba(17, 31, 46, 0.08);
	color: rgba(23, 43, 63, 0.72);
	font-size: 0.78rem;
	font-weight: 700;
}

.home-popular-feature__meta strong {
	color: var(--color-primary-dark);
	font-size: 0.9rem;
	font-weight: 700;
}

.home-popular-feature__price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-top: 20px;
}

.home-popular-feature__price-label {
	font-size: 0.8rem;
	color: rgba(23, 43, 63, 0.55);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.home-popular-feature__price-value {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-primary-dark);
}

.home-popular-feature__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.home-popular-feature__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 11px 20px;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.home-popular-feature__btn--primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 18px 38px rgba(25, 168, 207, 0.26);
}

.home-popular-feature__btn--secondary {
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-primary-dark);
	box-shadow: 0 16px 32px rgba(17, 31, 46, 0.1);
}

.home-popular-feature__btn:hover,
.home-popular-feature__btn:focus {
	transform: translateY(-2px);
}

.home-popular-feature__btn--primary:hover,
.home-popular-feature__btn--primary:focus {
	color: #fff;
	background: var(--color-primary-dark);
}

.home-popular-feature__panel {
	position: relative;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.56);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 26px 58px rgba(17, 31, 46, 0.13);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	gap: 0;
}

.home-popular-feature__panel-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
}

.home-popular-feature__panel-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 14px 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.7);
	text-align: center;
}

.home-popular-feature__panel-stat strong {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--color-primary-dark);
	line-height: 1.1;
}

.home-popular-feature__panel-stat span {
	font-size: 0.75rem;
	color: rgba(23, 43, 63, 0.55);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

.home-popular-feature__panel-row {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 0;
	border-top: 1px solid rgba(23, 43, 63, 0.08);
}

.home-popular-feature__panel-row:first-of-type {
	border-top: none;
	padding-top: 0;
}

.home-popular-feature__panel-row-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(23, 43, 63, 0.45);
	font-weight: 500;
}

.home-popular-feature__panel-row-value {
	font-size: 0.95rem;
	color: rgba(23, 43, 63, 0.82);
	font-weight: 500;
}

.home-popular-feature__panel-row--price .home-popular-feature__panel-row-value {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-primary-dark);
}

.home-popular-feature__cards {
	display: flex;
	gap: 14px;
	margin-top: 34px;
	padding-bottom: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	cursor: grab;
	user-select: none;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x proximity;
}

.home-popular-feature__cards::-webkit-scrollbar {
	display: none;
}

.home-popular-feature__cards.is-dragging {
	cursor: grabbing;
	scroll-snap-type: none;
}

.home-popular-feature__day-card {
	position: relative;
	display: flex;
	flex: 0 0 var(--popular-feature-card-w);
	min-height: 190px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 18px 38px rgba(17, 31, 46, 0.13);
	isolation: isolate;
	transition: transform 180ms ease, box-shadow 180ms ease;
	scroll-snap-align: start;
}

.home-popular-feature__day-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(10, 20, 30, 0.12) 0%, rgba(10, 20, 30, 0.76) 100%);
}

.home-popular-feature__day-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
	transition: transform 260ms ease;
}

.home-popular-feature__day-card span,
.home-popular-feature__day-card strong {
	position: relative;
	z-index: 2;
}

.home-popular-feature__day-card {
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
	color: #fff;
	text-decoration: none;
}

.home-popular-feature__day-card:hover,
.home-popular-feature__day-card:focus {
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 28px 48px rgba(17, 31, 46, 0.18);
}

.home-popular-feature__cards.is-dragging .home-popular-feature__day-card {
	transform: none;
}

.home-popular-feature__day-card:hover img,
.home-popular-feature__day-card:focus img {
	transform: scale(1.05);
}

.home-popular-feature__day-card strong {
	display: -webkit-box;
	overflow: hidden;
	font-size: 0.86rem;
	font-weight: 850;
	line-height: 1.25;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-popular-feature__arrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 20px 42px rgba(17, 31, 46, 0.16);
	color: var(--color-primary-dark);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
	backdrop-filter: blur(16px);
}

.home-popular-feature__arrow--prev {
	left: max(12px, calc((100% - var(--container)) / 2 - 72px));
}

.home-popular-feature__arrow--next {
	right: max(12px, calc((100% - var(--container)) / 2 - 72px));
}

.home-popular-feature__arrow:hover,
.home-popular-feature__arrow:focus {
	background: var(--color-primary);
	box-shadow: 0 24px 48px rgba(25, 168, 207, 0.28);
	color: #fff;
	transform: translateY(-50%) scale(1.04);
}

.home-popular-feature__arrow svg {
	width: 20px;
	height: 20px;
}

.home-popular-feature__dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 20px;
	pointer-events: none;
}

.home-popular-feature__dot {
	width: 10px;
	height: 10px;
	min-width: 0;
	min-height: 0;
	flex: 0 0 10px;
	display: block;
	padding: 0;
	border: 0;
	border-radius: 50%;
	appearance: none;
	background: rgba(23, 43, 63, 0.2);
	box-shadow: none;
	cursor: pointer;
	pointer-events: auto;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	text-indent: -9999px;
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.home-popular-feature__dot.is-active {
	background: var(--color-primary);
	box-shadow: 0 0 0 6px rgba(25, 168, 207, 0.14);
	transform: scale(1.02);
}

@media (max-width: 1180px) {
	.home-popular-feature {
		--popular-feature-card-w: clamp(176px, 28vw, 220px);
	}
}

@media (max-width: 900px) {
	.home-popular-feature__inner {
		grid-template-columns: 1fr;
	}

	.home-popular-feature__slide::before {
		background:
			linear-gradient(180deg, rgba(248, 253, 253, 0.72) 0%, rgba(248, 253, 253, 0.52) 52%, rgba(248, 253, 253, 0.72) 100%),
			linear-gradient(90deg, rgba(231, 246, 247, 0.4), rgba(255, 255, 255, 0.5));
	}

	.home-popular-feature__container {
		width: min(100% - 32px, var(--container));
		padding: 52px 0 68px;
	}
}

@media (max-width: 640px) {
	.home-popular-feature {
		min-height: 0;
	}

	.home-popular-feature__slide {
		min-height: 0;
	}

	.home-popular-feature__container {
		width: min(100% - 24px, var(--container));
		padding: 42px 0 108px;
	}

	.home-popular-feature__title {
		font-size: clamp(1.1rem, 5vw, 1.4rem);
	}

	.home-popular-feature__panel {
		padding: 16px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.68);
		box-shadow: 0 8px 24px rgba(17, 31, 46, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.45);
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 12px;
	}

	.home-popular-feature__panel-meta {
		grid-column: 1 / -1;
	}

	.home-popular-feature__panel-row {
		border-top: none;
		border-right: 1px solid rgba(23, 43, 63, 0.08);
		padding: 12px 12px 0 0;
	}

	.home-popular-feature__panel-row:last-of-type {
		border-right: none;
		padding-right: 0;
		padding-left: 12px;
	}

	.home-popular-feature__panel-row--price .home-popular-feature__panel-row-value {
		font-size: 1.05rem;
	}

	.home-popular-feature__cards {
		gap: 12px;
		margin-top: 24px;
	}

	.home-popular-feature__day-card {
		flex-basis: min(78vw, 260px);
		min-height: 220px;
	}

	.home-popular-feature__arrow {
		top: auto;
		bottom: 22px;
		width: 44px;
		height: 44px;
		transform: none;
	}

	.home-popular-feature__arrow:hover,
	.home-popular-feature__arrow:focus {
		transform: scale(1.04);
	}

	.home-popular-feature__arrow--prev {
		left: calc(50% - 58px);
	}

	.home-popular-feature__arrow--next {
		right: calc(50% - 58px);
	}

}
