/**
 * Auto-split from main.css — do not edit section order blindly.
 * Source: assets/css/main.css (kept as reference/aggregate).
 */

/* Hero full-bleed + floating search (wireframe v2) */
.hm-hero {
	position: relative;
	z-index: 0;
	min-height: min(78vh, 640px);
	display: grid;
	align-items: end;
	color: #fff;
	overflow: visible;
}
.hm-hero__viewport {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}
.hm-hero__track {
	position: absolute;
	inset: 0;
}
.hm-hero__slide {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: end;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
}
.hm-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

/* Multi-slide: wipe / clip-path + slight scale (not a plain fade). */
.hm-hero--slider .hm-hero__slide {
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	z-index: 0;
	transform: scale(1.045);
	clip-path: inset(0 100% 0 0);
	transition:
		clip-path 0.72s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: clip-path, transform;
}
.hm-hero--slider[data-hm-hero-dir="prev"] .hm-hero__slide {
	clip-path: inset(0 0 0 100%);
}
.hm-hero--slider .hm-hero__slide.is-active {
	pointer-events: auto;
	z-index: 2;
	transform: scale(1);
	clip-path: inset(0 0 0 0);
}
.hm-hero--slider .hm-hero__slide.is-leaving {
	pointer-events: none;
	z-index: 1;
	transform: scale(1.02);
}
.hm-hero--slider[data-hm-hero-dir="next"] .hm-hero__slide.is-leaving {
	clip-path: inset(0 0 0 100%);
}
.hm-hero--slider[data-hm-hero-dir="prev"] .hm-hero__slide.is-leaving {
	clip-path: inset(0 100% 0 0);
}
.hm-hero--slider .hm-hero__slide.is-active .hm-hero__content {
	animation: hm-hero-copy-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes hm-hero-copy-in {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hm-hero:not(.hm-hero--slider) .hm-hero__slide {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	min-height: inherit;
	clip-path: none;
	transform: none;
}
.hm-hero:not(.hm-hero--slider) .hm-hero__viewport,
.hm-hero:not(.hm-hero--slider) .hm-hero__track {
	position: relative;
	inset: auto;
	min-height: inherit;
	overflow: visible;
}
.hm-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}
.hm-hero__photo {
	position: absolute;
	inset: -2%;
	width: 104%;
	height: 104%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	animation: hm-hero-pan 18s ease-in-out infinite alternate;
	will-change: transform;
}
img.hm-hero__photo {
	display: block;
	border: 0;
}
.hm-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 4, 40, 0.62);
}
.hm-hero__slide > .hm-container,
.hm-hero > .hm-container {
	position: relative;
	z-index: 1;
}
.hm-hero__content {
	padding: 96px 0 72px;
	max-width: 720px;
}
.hm-hero--slider .hm-hero__content {
	/* Room for bottom dots + search clearance — never under copy/CTAs */
	padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}
.hm-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.78);
}
.hm-hero h1,
.hm-hero h2.hm-hero__title,
.hm-hero .hm-hero__title {
	margin: 0 0 14px;
	font-family: var(--font-display);
	font-size: clamp(1.55rem, 3.2vw, 2.45rem);
	font-weight: 600;
	line-height: 1.16;
	letter-spacing: -0.02em;
	text-transform: none;
	text-wrap: balance;
	overflow: visible;
	max-width: 100%;
}
.hm-hero__lead {
	margin: 0 0 22px;
	max-width: 42ch;
	font-size: 1.06rem;
	color: rgba(255,255,255,0.88);
}
.hm-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Bottom pager — centered dots, clear of copy/CTAs */
.hm-hero__controls {
	position: absolute;
	left: 0;
	right: 0;
	top: auto;
	/* Lift above floating search pull-up so clicks aren't stolen */
	bottom: max(2.75rem, calc(2.5rem + env(safe-area-inset-bottom, 0px)));
	z-index: 6;
	height: auto;
	pointer-events: none;
	display: flex;
	justify-content: center;
	padding: 0 clamp(0.9rem, 2.2vw, 1.6rem);
}

.hm-hero__pager {
	pointer-events: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.hm-hero__dots {
	display: flex;
	gap: 10px;
	align-items: flex-end;
	justify-content: center;
}
.hm-hero__dot {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	min-width: 28px;
	min-height: 36px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}
.hm-hero__dot-bar {
	display: block;
	width: 28px;
	height: 3px;
	background: rgba(255, 255, 255, 0.35);
	transform-origin: left center;
	transform: scaleX(0.35);
	transition: transform 0.45s ease, background 0.25s ease;
}
.hm-hero__dot-num {
	font-family: var(--font-body, "Montserrat", sans-serif);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}
.hm-hero__dot.is-active,
.hm-hero__dot[aria-selected="true"] {
	color: #fff;
}
.hm-hero__dot.is-active .hm-hero__dot-bar,
.hm-hero__dot[aria-selected="true"] .hm-hero__dot-bar {
	background: #fff;
	transform: scaleX(1);
}
.hm-hero__dot:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}
.hm-hero__counter {
	margin: 0;
	font-family: var(--font-body, "Montserrat", sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.85);
}
.hm-hero__counter-sep {
	margin: 0 0.2em;
	opacity: 0.55;
}

@media (max-width: 900px) {
	/* Extra pad: stacked CTAs + dots + floating search overlap */
	.hm-hero--slider .hm-hero__content {
		padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
	}
	.hm-hero__controls {
		bottom: max(3.1rem, calc(2.85rem + env(safe-area-inset-bottom, 0px)));
	}
	.hm-hero__counter {
		display: none;
	}
}

@media (max-width: 640px) {
	.hm-hero--slider .hm-hero__content {
		padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
	}
	.hm-hero__controls {
		bottom: max(3.35rem, calc(3rem + env(safe-area-inset-bottom, 0px)));
	}
	.hm-hero__dot-num { font-size: 0.62rem; }
	.hm-hero__dot-bar { width: 22px; }
	.hm-hero h1,
	.hm-hero h2.hm-hero__title,
	.hm-hero .hm-hero__title {
		font-size: clamp(1.4rem, 6.2vw, 1.85rem);
		line-height: 1.18;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hm-hero__slide,
	.hm-hero--slider .hm-hero__slide,
	.hm-hero--slider .hm-hero__slide.is-active .hm-hero__content {
		transition: none;
		animation: none;
	}
	.hm-hero--slider .hm-hero__slide {
		clip-path: none;
		transform: none;
		opacity: 0;
	}
	.hm-hero--slider .hm-hero__slide.is-active {
		opacity: 1;
	}
	.hm-hero__photo {
		animation: none;
	}
	.hm-hero__dot-bar {
		transition: none;
	}
}

.hm-search-block {
	position: relative;
	z-index: 2;
	margin-top: -36px;
	margin-bottom: 1.5rem;
	/* Full-width block must not steal clicks from hero dots beside the card */
	pointer-events: none;
}
.hm-search-block .hm-container,
.hm-search-block .hm-search-card,
.hm-search-block .hm-search,
.hm-search-block input,
.hm-search-block button,
.hm-search-block .hm-ac {
	pointer-events: auto;
}
.hm-search-card {
	width: 100%;
	max-width: 820px;
	margin-inline: auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	box-shadow: var(--shadow);
	padding: 0.85rem;
}
.hm-search--float {
	display: flex;
	gap: 0.65rem;
	align-items: stretch;
}
.hm-search-field { flex: 1; min-width: 0; }
.hm-search--float input {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: 0;
	padding: 0 14px;
	background: var(--paper);
}

@keyframes hm-hero-pan {
	/* Scale-only pan — avoid translate that spills past overflow and widens scrollWidth. */
	from { transform: scale(1.04); }
	to { transform: scale(1.1); }
}

/* Sections */
.hm-section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
.hm-section--paper { background: var(--paper); }
.hm-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	max-width: none;
}
.hm-section__head h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 2.8vw, 2.2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	text-transform: none;
	color: var(--ink);
	line-height: 1.15;
}
.hm-section__sub,
.hm-section__head p { margin: 0.35rem 0 0; color: var(--muted); }
.hm-section__footer { margin-top: 2rem; text-align: center; }
.hm-eyebrow {
	margin: 0 0 0.65rem;
	color: var(--brand);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.hm-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.hm-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--brand);
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none !important;
}

.hm-sectors__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1rem;
}
.hm-sector {
	padding: 1.15rem 1rem;
	border: 1px solid var(--line);
	border-radius: 0;
	background: #fff;
}
.hm-sector strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -0.01em;
	margin-bottom: 0.35rem;
}
.hm-sector p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.hm-cat-grid {
	display: grid;
	grid-template-columns: repeat(9, minmax(0, 1fr));
	gap: 0;
}
.hm-cat-grid--photo {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}
.hm-cat-photo {
	display: block;
	text-decoration: none !important;
	color: inherit;
}
.hm-cat-photo__media {
	display: block;
	aspect-ratio: 4/3;
	border-radius: 0;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	border: 1px solid var(--line);
	margin-bottom: 0.65rem;
}
.hm-cat-photo strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -0.01em;
}
.hm-cat {
	display: block;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	min-height: 100%;
}
.hm-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.hm-cat__visual {
	display: block;
	aspect-ratio: 16/10;
	background: var(--brand);
	background-size: cover;
	background-position: center;
}
.hm-cat__body { display: block; padding: 14px 16px 16px; }
.hm-cat__body strong {
	display: block;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-transform: none;
}
.hm-cat__body span { display: block; margin-top: 4px; color: var(--muted); font-size: 0.9rem; }

.hm-about .hm-eyebrow {
	font-weight: 500;
	letter-spacing: 0.12em;
}
.hm-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
	gap: clamp(2rem, 4vw, 3.25rem);
	align-items: center;
}
.hm-about__media { margin: 0; }
.hm-about__photo {
	aspect-ratio: 4 / 3;
	min-height: 0;
	width: 100%;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid var(--line);
}
.hm-about__photo span {
	max-width: 28ch;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.82);
	border-radius: 0;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ink, #14141c);
	line-height: 1.4;
}
.hm-about__content h2 {
	margin: 0 0 1.1rem;
	font-size: clamp(1.55rem, 2.8vw, 2.15rem);
	font-weight: 600;
	text-transform: none;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--brand);
}
.hm-about__content > p {
	margin: 0 0 1rem;
	font-weight: 400;
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--muted);
	max-width: 54ch;
}
.hm-about__commitment {
	margin: 1.35rem 0 1.5rem;
	padding: 1.1rem 1.25rem;
	border-left: 3px solid var(--brand);
	background: #fff;
	border-radius: 0;
}
.hm-about__commitment-label {
	margin: 0 0 0.4rem;
	font-weight: 600;
	font-size: 0.82rem;
	color: var(--brand);
}
.hm-about__commitment p:last-child {
	margin: 0;
	font-weight: 500;
	font-size: 1.02rem;
	line-height: 1.5;
	color: var(--ink, #14141c);
}
.hm-about__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 0.85rem;
}
.hm-about__actions .hm-btn {
	font-weight: 500;
}
.hm-about-diff {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.75rem 1.5rem;
	margin: clamp(2.5rem, 5vw, 3.5rem) 0 0;
	padding-top: clamp(2rem, 4vw, 2.75rem);
	border-top: 1px solid var(--line);
}
.hm-about-diff__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	min-width: 0;
}
.hm-about-diff__icon {
	display: inline-flex;
	width: 40px;
	height: 40px;
	margin-bottom: 0.15rem;
	color: var(--brand);
}
.hm-about-diff__icon svg { width: 32px; height: 32px; }
.hm-about-diff__item strong {
	font-weight: 600;
	font-size: 0.98rem;
	line-height: 1.3;
}
.hm-about-diff__item p {
	margin: 0;
	font-weight: 400;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--muted);
}
.hm-about__closing {
	margin-top: clamp(2rem, 4vw, 2.75rem);
	padding-top: 1.5rem;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
}
.hm-about__closing > p {
	margin: 0;
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.4;
	color: var(--brand);
}
.hm-about__closing .hm-text-link {
	font-weight: 500;
}
@media (max-width: 768px) {
	.hm-about__grid { grid-template-columns: 1fr; }
	.hm-about-diff { grid-template-columns: 1fr; gap: 1.5rem; }
	.hm-about__actions { flex-direction: column; align-items: stretch; }
	.hm-about__closing { flex-direction: column; align-items: flex-start; }
}


.hm-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.hm-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}
.hm-product-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	overflow: hidden;
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hm-product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hm-product-card a { color: inherit; text-decoration: none !important; display: block; height: 100%; }
.hm-product-card__media { position: relative; aspect-ratio: 4/3; background: #ececf2; }
.hm-product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hm-product-card__placeholder {
	display: block; width: 100%; height: 100%;
	background: #d8d6e8;
}
.hm-product-card__body { padding: 14px 16px 18px; }
.hm-product-card h3 {
	margin: 0 0 6px;
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	text-transform: none;
	line-height: 1.35;
}
.hm-product-card p { margin: 0 0 10px; color: var(--muted); font-size: 0.92rem; }
.hm-product-card__cta { font-weight: 600; color: var(--brand); font-size: 0.92rem; }
.hm-badge {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--brand);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 6px 10px;
	border-radius: 0;
}

.hm-advantages { background: #fff; border-block: 1px solid var(--line); }
.hm-adv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}
.hm-adv-grid li {
	padding: 18px;
	border-radius: 0;
	background: var(--paper);
	border: 1px solid var(--line);
}
.hm-adv-grid strong {
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	text-transform: none;
	color: var(--brand);
}
.hm-adv-grid span { color: var(--muted); font-size: 0.95rem; }

.hm-company {
	background: var(--brand);
	color: #fff;
}
.hm-company__inner { max-width: 640px; }
.hm-company h2 {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	letter-spacing: 0.03em;
	text-transform: none;
}
.hm-company p { margin: 0 0 18px; color: rgba(255,255,255,0.88); max-width: 42ch; }

.hm-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hm-news-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	overflow: hidden;
	height: 100%;
}
.hm-news-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--paper);
}
.hm-news-card__media img,
.hm-news-card__media .hm-ph {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hm-news-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 16px 18px;
}
.hm-news-card__meta {
	display: block;
	padding: 12px 0 6px;
	color: var(--muted);
	font-size: 0.85rem;
}
.hm-news-card__title,
.hm-news-card h2,
.hm-news-card h3 {
	margin: 0 0 8px;
	padding: 0;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: -0.015em;
	text-transform: none;
	line-height: 1.25;
}
.hm-news-card__title a {
	color: inherit;
	text-decoration: none !important;
}
.hm-news-card__title a:hover { color: var(--brand); }
.hm-news-card__excerpt,
.hm-news-card p {
	margin: 0 0 12px;
	padding: 0;
	color: var(--muted);
	flex: 1;
}
.hm-news-card__more { margin-top: auto; align-self: flex-start; }
@media (max-width: 900px) {
	.hm-news-grid { grid-template-columns: 1fr; }
}

.hm-cta-band {
	background: var(--brand-dark, #16085c);
	color: #fff;
	text-align: center;
}
.hm-cta-band h2 {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
	letter-spacing: 0.03em;
	text-transform: none;
}
.hm-cta-band p { margin: 0 auto 20px; max-width: 42ch; color: rgba(255,255,255,0.85); }
.hm-cta-band .hm-hero__actions { justify-content: center; }

/* —— Home v3: search icon field —— */
.hm-search-field { position: relative; }
.hm-search-field__icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	pointer-events: none;
	z-index: 1;
}
.hm-search--float .hm-search-field input {
	padding-left: 2.65rem;
}

.hm-hero__photo-label {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 1;
	padding: 0.35rem 0.65rem;
	border-radius: 0;
	background: rgba(255,255,255,0.82);
	color: var(--ink);
	font-size: 0.72rem;
	font-weight: 500;
}

/* —— Category cards: all roots, desktop 9 + 8 (72-col LCM) —— */
.hm-cat-grid {
	display: grid;
	grid-template-columns: repeat(72, minmax(0, 1fr));
	gap: 0;
}
.hm-cat-grid > li {
	grid-column: span 8; /* 9 × 8 = 72 */
}
.hm-cat-grid > li:nth-child(n + 10) {
	grid-column: span 9; /* 8 × 9 = 72 */
}
.hm-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	overflow: hidden;
	height: 100%;
	text-decoration: none !important;
	color: inherit;
	text-align: center;
	transition: border-color var(--hm-ease, 200ms ease), background-color var(--hm-ease, 200ms ease);
}
.hm-cat-card:hover {
	border-color: var(--brand);
	background: #fafafa;
	color: inherit;
}
.hm-cat-card__media {
	aspect-ratio: 1;
	width: 100%;
	background-size: cover;
	background-position: center;
	background-color: var(--paper, #f3f3f6);
	border-radius: 0;
}
.hm-cat-card__media--icon,
.hm-cat-card__media--fallback {
	display: grid;
	place-items: center;
	aspect-ratio: auto;
	min-height: 3.25rem;
	padding: 0.85rem 0.4rem 0.35rem;
	background-image: none;
	background-color: transparent;
}
.hm-cat-card__media--icon img,
.hm-cat-card__media--icon .hm-icon,
.hm-cat-card__media--icon .hm-term-icon,
.hm-cat-card__media--fallback .hm-icon,
.hm-cat-card__media--fallback .hm-term-icon {
	width: 36px;
	height: 36px;
	max-width: 36px;
	object-fit: contain;
	color: var(--brand);
}
.hm-cat-card__foot {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	padding: 0.25rem 0.45rem 0.75rem;
	min-height: 0;
	width: 100%;
}
.hm-cat-card__foot strong {
	font-size: 0.68rem;
	font-weight: 500;
	color: var(--brand);
	line-height: 1.25;
	letter-spacing: 0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.hm-cat-card__arrow {
	display: none;
}

/* —— Offers grid v3 —— */
.hm-offers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.15rem;
}
.hm-offer-card {
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 0;
	overflow: hidden;
	height: 100%;
	text-decoration: none !important;
	color: inherit;
	transition: transform var(--hm-ease, 200ms ease), box-shadow var(--hm-ease, 200ms ease);
}
.hm-offer-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	color: inherit;
}
.hm-ribbon {
	position: absolute;
	top: 14px;
	left: -34px;
	z-index: 2;
	width: 130px;
	padding: 0.35rem 0;
	background: var(--brand);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-45deg);
	box-shadow: 0 4px 10px rgba(10, 4, 40, 0.2);
	line-height: 1.2;
}
.hm-offer-card__media {
	aspect-ratio: 1;
	width: 100%;
	background-size: cover;
	background-position: center;
}
.hm-offer-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 0.95rem 0.9rem 1.1rem;
}
.hm-offer-card__body strong {
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.hm-offer-card__meta {
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 300;
}

/* —— Instagram strip —— */
.hm-ig-strip {
	background: #200C80;
	background-image: none;
	color: #fff;
	padding: 2rem 0;
	border-radius: 0;
}
.hm-ig-strip__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 2rem;
	align-items: center;
}
.hm-ig-strip__inner--solo {
	grid-template-columns: minmax(0, 1fr);
}
.hm-ig-strip__brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.hm-ig-strip__logo { color: #fff; }
.hm-ig-strip__brand h2 {
	margin: 0.2rem 0 0.15rem;
	font-family: "Montserrat", var(--font-display, sans-serif);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff;
	line-height: 1.1;
	text-transform: none;
}
.hm-ig-strip__brand p {
	margin: 0;
	font-family: "Montserrat", var(--font-body, sans-serif);
	font-size: 0.88rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.85);
}
.hm-ig-strip .hm-btn--ghost {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.75);
	border-radius: 0;
}
.hm-ig-strip .hm-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
	border-color: #fff;
}
.hm-ig-strip__thumbs {
	display: grid;
	grid-template-columns: repeat(var(--hm-ig-count, 4), minmax(0, 1fr));
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.hm-ig-thumb {
	display: block;
	aspect-ratio: 1;
	border-radius: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.08);
	transition: transform var(--hm-ease, 200ms ease), opacity var(--hm-ease, 200ms ease);
}
.hm-ig-thumb:hover { transform: scale(1.03); opacity: 0.92; }
.hm-ig-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* —— Services + payments —— */
.hm-services {
	padding: var(--hm-section-y-sm, 2.5rem) 0 var(--hm-section-y, 4rem);
	background: #fff;
}
.hm-services__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.25rem 1rem;
	margin-bottom: 2.75rem;
	padding-bottom: 2.25rem;
	border-bottom: 1px solid var(--line);
}
.hm-services__grid--solo {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.hm-services__grid li {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
	transition: transform var(--hm-ease, 200ms ease);
}
.hm-services__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	color: var(--brand);
}
.hm-services__icon svg { width: 40px; height: 40px; }
.hm-services__grid strong {
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.35;
	max-width: 14ch;
	letter-spacing: -0.01em;
}
.hm-services__grid em {
	font-style: normal;
	font-weight: 400;
	color: var(--muted);
	font-size: 0.72rem;
}
.hm-pay { text-align: center; max-width: 52rem; margin-inline: auto; }
.hm-pay__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.4rem, 2.4vw, 1.75rem);
	font-weight: 600;
	color: var(--brand);
	letter-spacing: -0.02em;
	text-transform: none;
}
.hm-pay__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}
.hm-pay__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 7.5rem;
	min-height: 52px;
	padding: 0.55rem 0.9rem;
	border: 1px dashed var(--hm-line-strong, rgba(32,12,128,0.22));
	border-radius: 0;
	background: var(--paper);
	color: var(--ink);
	font-weight: 500;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	transition: border-color var(--hm-ease, 200ms ease), transform var(--hm-ease, 200ms ease);
}
.hm-pay__chip--logo {
	min-width: 5.5rem;
	padding: 0.4rem 0.75rem;
	background: #fff;
}
.hm-pay__chip--logo img {
	display: block;
	max-height: 32px;
	width: auto;
	max-width: 110px;
	object-fit: contain;
}
.hm-pay__chip:hover {
	border-color: var(--brand);
	transform: translateY(-2px);
}

@media (max-width: 1100px) {
	.hm-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.hm-cat-grid > li,
	.hm-cat-grid > li:nth-child(n + 10) { grid-column: auto; }
	.hm-offers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.hm-ig-strip__inner { grid-template-columns: 1fr; }
	.hm-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.hm-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-offers-grid { grid-template-columns: 1fr; max-width: 340px; }
	.hm-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-ig-strip__thumbs {
		grid-template-columns: repeat(min(2, var(--hm-ig-count, 2)), minmax(0, 1fr));
	}
}

/* FAQ accordion */
.hm-page-hero__lead {
	margin: 10px 0 0;
	color: var(--muted);
	font-weight: 300;
	max-width: 42ch;
}
.hm-faq {
	padding: 8px 0 64px;
	max-width: 820px;
}
.hm-faq__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.hm-faq__item {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 0;
	overflow: clip;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hm-faq__item[open] {
	border-color: rgba(32, 12, 128, 0.28);
	box-shadow: 0 10px 28px rgba(20, 20, 28, 0.06);
}
.hm-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 1.05rem 1.2rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1rem;
	line-height: 1.35;
	color: var(--ink);
}
.hm-faq__q::-webkit-details-marker { display: none; }
.hm-faq__q::marker { content: ""; }
.hm-faq__icon {
	flex-shrink: 0;
	color: var(--brand);
	transition: transform 0.25s ease;
}
.hm-faq__item[open] .hm-faq__icon { transform: rotate(180deg); }
.hm-faq__a {
	padding: 0 1.2rem 1.2rem;
	color: var(--muted);
	font-weight: 300;
}
.hm-faq__a p { margin: 0 0 0.75rem; }
.hm-faq__a p:last-child { margin-bottom: 0; }
.hm-faq__empty { color: var(--muted); padding: 24px 0; }
.hm-faq__cta {
	margin-top: 36px;
	padding-top: 28px;
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
}
.hm-faq__cta p {
	margin: 0;
	font-weight: 500;
	color: var(--ink);
}

/* ==========================================================================
   Interiores v5 — collage mejoras (Quiénes somos / Contacto / FAQ / Novedades)
   + help CTA + value bar + footer pagos. Motion liviano. Preferencias: reduced-motion.
   ========================================================================== */

.hm-nav__link {
	font-weight: 500;
}

/* —— Help CTA (brand-dark + trama via contemporaneo) —— */
.hm-help-cta {
	position: relative;
	padding: clamp(3rem, 6vw, 4.5rem) 0;
	background: var(--brand-dark, #16085c);
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.hm-help-cta__inner { max-width: 46rem; margin-inline: auto; }
.hm-help-cta h2 {
	margin: 0 0 1.35rem;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.45rem, 2.8vw, 2rem);
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: #fff;
	text-wrap: balance;
}
.hm-help-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 0.85rem;
}

/* —— Value bar —— */
.hm-value-bar {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	margin: 0;
	padding: 1.35rem var(--hm-gutter, 1.5rem);
	background: #16085c;
	border-radius: 0;
	border-bottom: none;
	list-style: none;
	color: #fff;
}
.hm-value-bar li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	font-size: 0.88rem;
	font-weight: 400;
	color: #fff;
	text-align: left;
}
.hm-value-bar__ico {
	display: inline-flex;
	color: #fff;
	flex-shrink: 0;
	transition: transform var(--hm-ease, 200ms ease);
}
.hm-value-bar li:hover .hm-value-bar__ico { transform: translateY(-2px); }

/* —— Stats count-up (institucional / home) —— */
.hm-stats {
	background: #200C80;
	color: #fff;
	padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
	border-radius: 0;
}
.hm-stats__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
	text-align: center;
}
.hm-stats__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	min-width: 0;
}
.hm-stats__figure {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.28em;
	font-family: var(--font-display, "Montserrat", sans-serif);
	font-weight: 600;
	font-size: clamp(1.75rem, 3.2vw, 2.45rem);
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: #fff;
}
.hm-stats__prefix {
	font-weight: 500;
	font-size: 0.48em;
	letter-spacing: 0.02em;
	opacity: 0.9;
	text-transform: none;
}
.hm-stats__num {
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
}
.hm-stats__label {
	margin: 0;
	font-family: var(--font-body, "Montserrat", sans-serif);
	font-weight: 400;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}
.hm-stats--home {
	margin-top: clamp(2rem, 4vw, 2.75rem);
}
.hm-stats.is-counted .hm-stats__item {
	opacity: 1;
	transform: none;
}
.hm-stats:not(.is-counted) .hm-stats__item {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}
.hm-stats.is-counted .hm-stats__item:nth-child(1) { transition-delay: 0ms; }
.hm-stats.is-counted .hm-stats__item:nth-child(2) { transition-delay: 60ms; }
.hm-stats.is-counted .hm-stats__item:nth-child(3) { transition-delay: 120ms; }
.hm-stats.is-counted .hm-stats__item:nth-child(4) { transition-delay: 180ms; }
@media (prefers-reduced-motion: reduce) {
	.hm-stats:not(.is-counted) .hm-stats__item,
	.hm-stats.is-counted .hm-stats__item {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* Home about: foto más vertical (desktop only — mobile stacks below) */
@media (min-width: 769px) {
	.hm-about__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		align-items: start;
	}
	.hm-about__photo { aspect-ratio: 4 / 5; }
	.hm-about-diff { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.hm-about__closing {
	background: var(--brand);
	color: #fff;
	padding: 1.35rem 1.5rem;
	border: 0;
	margin-top: clamp(2rem, 4vw, 2.75rem);
}
.hm-about__closing > p { color: #fff; font-weight: 500; }
.hm-about__closing .hm-text-link { color: #fff; }
.hm-about__closing .hm-text-link:hover { color: rgba(255,255,255,0.85); }

/* Home / cards polish */
.hm-offer-card__media {
	background-color: #ececf2;
	transition: filter var(--hm-ease, 200ms ease);
}
.hm-offer-card:hover .hm-offer-card__media {
	filter: brightness(1.03) contrast(1.02);
}
.hm-cat-card__media--icon {
	background-color: transparent;
	filter: none;
}
.hm-hero__lead { font-weight: 300; }
.hm-section__head h2 { font-weight: 500; }

@media (max-width: 980px) {
	.hm-inst__hero-grid,
	.hm-contact,
	.hm-related-news__list,
	.hm-value-bar,
	.hm-about__grid { grid-template-columns: 1fr; }
	.hm-inst__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-news-row { grid-template-columns: 1fr; }
	.hm-about__media { order: 0; max-width: none; }
	.hm-about__photo { aspect-ratio: 16 / 10; }
	.hm-about-diff { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
	.hm-about-diff {
		grid-template-columns: 1fr;
		gap: 1.35rem;
		padding-bottom: var(--hm-footer-float-clear-y, 5.5rem);
	}
	.hm-about-diff__item strong {
		font-size: 1.02rem;
		line-height: 1.35;
	}
	.hm-about-diff__item p {
		font-size: 0.95rem;
		line-height: 1.6;
	}
	.hm-about__content > p { max-width: none; }
	.hm-inst__grid { grid-template-columns: 1fr; }
	.hm-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.hm-value-bar { grid-template-columns: 1fr 1fr; }
	.hm-related-news__list { grid-template-columns: 1fr; }
	.hm-stats__grid { gap: 1.75rem 1rem; }
}


/* —— Hero home —— */
body.hm-site .hm-hero {
	min-height: min(82vh, 680px);
}
body.hm-site .hm-hero__overlay {
	background: rgba(10, 4, 40, 0.58);
}
body.hm-site .hm-hero__content {
	padding-top: clamp(5.5rem, 12vw, 8.5rem);
	padding-right: 0;
	/* Keep control-bar clearance from .hm-hero--slider rules */
	max-width: 38rem;
}
body.hm-site .hm-hero__eyebrow {
	font-weight: 500;
	letter-spacing: 0.16em;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.82);
}
body.hm-site .hm-hero h1,
body.hm-site .hm-hero .hm-hero__title {
	font-weight: 600;
	font-size: clamp(1.55rem, 3.2vw, 2.4rem);
	letter-spacing: -0.025em;
	margin-bottom: 0.9rem;
	line-height: 1.16;
	max-width: none;
}
body.hm-site .hm-hero__lead {
	font-weight: 300;
	font-size: 1.08rem;
	line-height: 1.65;
	max-width: 40ch;
	color: rgba(255, 255, 255, 0.9);
}
body.hm-site .hm-hero__actions {
	gap: 0.75rem;
	margin-top: 0.35rem;
}
body.hm-site .hm-hero .hm-btn--ghost {
	border-color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}

/* —— Buscador flotante más estrecho —— */
body.hm-site .hm-search-block {
	margin-top: -42px;
	margin-bottom: 2rem;
}
body.hm-site .hm-search-card {
	max-width: 720px;
	padding: 0.7rem;
	border: 1px solid var(--line);
	box-shadow: 0 18px 44px rgba(20, 20, 28, 0.1);
}
body.hm-site .hm-search--float {
	gap: 0.55rem;
}
body.hm-site .hm-search-field {
	position: relative;
	display: flex;
	align-items: center;
}
body.hm-site .hm-search-field__icon {
	position: absolute;
	left: 0.85rem;
	color: var(--brand);
	pointer-events: none;
	z-index: 1;
}
body.hm-site .hm-search--float input {
	padding-left: 2.65rem;
	background: #fff;
	font-weight: 300;
	border-color: var(--line);
}
body.hm-site .hm-search--float input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(32, 12, 128, 0.08);
}

/* —— Sections / titles —— */
body.hm-site .hm-section {
	padding: var(--hm-section-y, clamp(4rem, 7vw, 6.25rem)) 0;
}
body.hm-site .hm-section__head {
	margin-bottom: 2.35rem;
}
body.hm-site .hm-section__head h2,
body.hm-site .hm-section__title--brand {
	font-weight: 600;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	letter-spacing: -0.025em;
}
body.hm-site .hm-eyebrow {
	font-weight: 500;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
}

/* —— Category cards —— */
body.hm-site .hm-cat-card {
	border-color: rgba(32, 12, 128, 0.1);
}
body.hm-site .hm-cat-card__media--icon {
	background-color: transparent;
}
body.hm-site .hm-cat-card__foot {
	padding: 0.25rem 0.45rem 0.75rem;
	min-height: 0;
	border-top: 0;
}
body.hm-site .hm-cat-card__foot strong {
	font-weight: 500;
	font-size: 0.68rem;
}
body.hm-site .hm-cat-card:hover {
	border-color: var(--brand);
}

/* —— Offers —— */
body.hm-site .hm-offer-card__body {
	padding: 0.95rem 1rem 1.15rem;
	border-top: 1px solid rgba(32, 12, 128, 0.06);
}
body.hm-site .hm-badge {
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0.35rem 0.7rem;
}

/* —— IG / services —— */
body.hm-site .hm-ig-strip {
	padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
body.hm-site .hm-services__icon {
	width: 56px;
	height: 56px;
}
body.hm-site .hm-services__icon svg {
	width: 44px;
	height: 44px;
}
body.hm-site .hm-services__grid strong {
	font-weight: 500;
	font-size: 0.88rem;
}
body.hm-site .hm-pay__chip {
	border-style: solid;
	min-height: 56px;
	font-weight: 500;
}

/* —— CTA band / help —— */
body.hm-site .hm-cta-band,
body.hm-site .hm-help-cta {
	padding: clamp(3.25rem, 6.5vw, 5rem) 0;
	background: var(--brand-dark, #16085c);
}
body.hm-site .hm-help-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
}
body.hm-site .hm-help-cta__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	margin-bottom: 0.75rem;
	color: #fff;
	opacity: 0.95;
}
body.hm-site .hm-help-cta__icon svg {
	width: 48px;
	height: 48px;
}
body.hm-site .hm-help-cta h2,
body.hm-site .hm-cta-band h2 {
	font-weight: 500;
	font-size: clamp(1.55rem, 3vw, 2.15rem);
	letter-spacing: -0.02em;
	max-width: 28ch;
}
body.hm-site .hm-value-bar {
	padding: 1.5rem var(--hm-gutter, 1.5rem);
	background: #16085c;
	border-radius: 0;
	border-bottom: none;
	color: #fff;
}
body.hm-site .hm-value-bar li {
	font-weight: 400;
	font-size: 0.9rem;
	gap: 0.65rem;
	color: #fff;
}
body.hm-site .hm-value-bar__ico {
	width: 28px;
	height: 28px;
	color: #fff;
}
body.hm-site .hm-value-bar__ico .hm-icon {
	color: #fff;
}

/* —— About home —— */
body.hm-site .hm-about__content h2 {
	font-weight: 600;
}
body.hm-site .hm-about__content > p {
	font-weight: 300;
}
body.hm-site .hm-about-diff__icon {
	width: 44px;
	height: 44px;
}

/* Empty / provisional polish */
body.hm-site .hm-catalog-empty,
body.hm-site .hm-empty {
	padding: 3rem 1.5rem;
	text-align: center;
	border: 1px dashed var(--line);
	background: var(--paper);
}
body.hm-site .hm-catalog-empty h2,
body.hm-site .hm-empty h2 {
	margin: 0 0 0.65rem;
	font-weight: 500;
	color: var(--brand);
}
