/* ==========================================================================
   UN Pane — Homepage grid pane widget
   ==========================================================================

   Usage:
   Add CSS class "un-grid" to the Elementor Container wrapping your panes.
   That container handles the grid; each UN Pane widget handles its own span.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Grid container helper (Elementor Container with CSS class "un-grid")

   In Elementor's Flexbox Container system, the actual widget children live
   inside .e-con-inner (not directly in .e-con), so the grid must target
   that inner element, not the container itself.
   -------------------------------------------------------------------------- */
.e-con.un-grid > .e-con-inner {
	display: grid !important;
	grid-template-columns: repeat(var(--un-grid-cols, 6), 1fr);
	grid-auto-rows: minmax(var(--un-grid-row, 200px), auto);
	gap: var(--un-grid-gap, 15px);
	padding: 0;
	width: 100%;
	/* Reset Elementor flex defaults */
	flex-wrap: unset;
	align-items: unset;
	justify-content: unset;
}

/* Legacy Section layout fallback (not recommended) */
.elementor-section.un-grid > .elementor-container {
	display: grid !important;
	max-width: none;
	grid-template-columns: repeat(var(--un-grid-cols, 6), 1fr);
	grid-auto-rows: minmax(var(--un-grid-row, 200px), auto);
	gap: var(--un-grid-gap, 15px);
}

/* --------------------------------------------------------------------------
   UN Pane Grid widget — self-contained grid (no Elementor Container needed)
   -------------------------------------------------------------------------- */
.un-pane-grid-item {
	min-width: 0; /* prevent grid blowout when content is wider than cell */
}

/* --------------------------------------------------------------------------
   Widget wrapper — receives grid-column / grid-row via inline style
   -------------------------------------------------------------------------- */
.un-pane-el {
	/* Prevent Elementor default widget margins from breaking grid alignment */
	margin: 0 !important;
}

/* --------------------------------------------------------------------------
   Pane inner container
   -------------------------------------------------------------------------- */
.un-pane-inner {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: var(--un-pane-min-height, 300px);
	overflow: hidden;
	display: block;
}

/* --------------------------------------------------------------------------
   Media — image / video background
   -------------------------------------------------------------------------- */
.un-pane-media-wrap {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.un-pane-media-wrap .un-pane-img,
.un-pane-media-wrap .un-pane-video {
	/* +1px on each side avoids a 1px hairline gap at certain widths caused by
	   subpixel rounding of width: 100%. The wrap has overflow: hidden so the
	   extra pixel is clipped, never visible. */
	width: calc(100% + 2px) !important;
	height: calc(100% + 2px) !important; /* override Elementor & The7 img { height: auto } */
	margin: -1px;
	object-fit: var(--un-pane-img-fit, cover) !important;
	object-position: var(--un-pane-img-pos, center center);
	transform: scale(var(--un-pane-img-zoom, 1));
	transform-origin: var(--un-pane-img-pos, center center);
	display: block;
}

/* When the image is wrapped in a link, the anchor must fill the media slot
   so the entire picture area is the click target. */
.un-pane-media-wrap .un-pane-img-link {
	display: block;
	width: 100%;
	height: 100%;
}

/* --------------------------------------------------------------------------
   Text overlay
   -------------------------------------------------------------------------- */
.un-pane-overlay {
	position: absolute;
	left: 0;
	right: 0;
	padding: 16px 20px;
	color: var(--un-pane-text-color, #fff);
	z-index: 1;
	/* Default: gradient. Color + opacity come from Elementor-generated CSS vars
	   (selectors on text_bg_color / text_bg_opacity), so global theme colors work. */
	background: linear-gradient(
		var(--un-overlay-direction, to top),
		color-mix(in srgb, var(--un-overlay-color, #000) var(--un-overlay-pct, 65%), transparent) 0%,
		color-mix(in srgb, var(--un-overlay-color, #000) calc(var(--un-overlay-pct, 65%) * .85), transparent) 20%,
		color-mix(in srgb, var(--un-overlay-color, #000) calc(var(--un-overlay-pct, 65%) * .55), transparent) 50%,
		color-mix(in srgb, var(--un-overlay-color, #000) calc(var(--un-overlay-pct, 65%) * .20), transparent) 75%,
		transparent 100%
	);
}

/* Solid color mode */
.un-pane-overlay--bg-solid {
	background: color-mix(in srgb, var(--un-overlay-color, #000) var(--un-overlay-pct, 65%), transparent);
}

/* No background */
.un-pane-overlay--bg-none {
	background: none;
}

/* Hero — solid color, opacity from --un-overlay-pct set inline by PHP (hero_overlay_opacity) */
.un-pane-overlay--hero {
	background: color-mix(in srgb, var(--un-overlay-color, #000) var(--un-overlay-pct, 38%), transparent);
}

.un-pane-overlay--bottom {
	bottom: 0;
}

.un-pane-overlay--top {
	top: 0;
}

.un-pane-overlay--center {
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.un-pane-title {
	margin: 0 0 4px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

.un-pane-title a {
	color: inherit;
	text-decoration: none;
}

.un-pane-title a:hover {
	text-decoration: underline;
}

.un-pane-desc {
	margin: 0;
	font-size: .875rem;
	opacity: .9;
	line-height: 1.4;
}

.un-pane-meta {
	margin-bottom: 6px;
}

.un-pane-meta-line {
	margin: 4px 0 0;
	font-size: .8rem;
	opacity: .85;
}

.un-pane-meta-line a {
	color: inherit;
	text-decoration: underline;
}

.un-pane-badge {
	display: inline-block;
	padding: 2px 8px;
	background: #fff;
	color: #000;
	font-size: .7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* --------------------------------------------------------------------------
   Author block (look pane)
   -------------------------------------------------------------------------- */
.un-pane-author {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.un-pane-author-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.un-pane-author-name {
	font-size: .8rem;
	font-weight: 600;
	line-height: 1.2;
}

.un-pane-author-rank {
	display: inline-block;
	padding: 1px 6px;
	background: rgba(255, 255, 255, .2);
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 10px;
	font-size: .65rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
}

/* Look pane — 2-column layout: content left, author card bottom-right */
.un-pane-look-layout {
	display: flex;
	align-items: flex-end;
	gap: 12px;
}

.un-pane-look-content {
	flex: 1;
	min-width: 0;
}

/* Author card — floating card, white bg, square, no radius */
.un-pane-author-card {
	background: #fff;
	color: #111;
	flex-shrink: 0;
	display: flex;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.un-pane-author-card .un-pane-author-card-img {
	object-fit: cover;
	display: block;
	border-radius: 0;
}

.un-pane-author-card-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-width: 0;
}

.un-pane-author-card-name {
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.2;
	color: inherit;
}

/* Rank pill inside the card — neutral theme (dark on light card), compact */
.un-pane-author-card .un-pane-author-rank {
	background: rgba(0, 0, 0, .06);
	border-color: rgba(0, 0, 0, .15);
	color: #111;
	align-self: flex-start;
	padding: 0 5px;
	font-size: .5rem;
	letter-spacing: .03em;
	line-height: 1.4;
}

/* Style 1 — horizontal: img left, meta right (rank top, name bottom) */
.un-pane-author-card--horizontal {
	flex-direction: row;
	align-items: stretch;
}

.un-pane-author-card--horizontal .un-pane-author-card-img {
	width: 56px;
	height: 56px;
}

.un-pane-author-card--horizontal .un-pane-author-card-meta {
	padding: 6px 10px;
}

/* Style 2 — vertical: img top, meta bottom */
.un-pane-author-card--vertical {
	flex-direction: column;
	width: 90px;
}

.un-pane-author-card--vertical .un-pane-author-card-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
}

.un-pane-author-card--vertical .un-pane-author-card-meta {
	padding: 6px 8px;
	align-items: center;
	text-align: center;
}

.un-pane-author-card--vertical .un-pane-author-rank {
	align-self: center;
}

/* --------------------------------------------------------------------------
   Type tag — absolute, independent of overlay
   -------------------------------------------------------------------------- */
.un-pane-type-tag {
	position: absolute;
	z-index: 2;
	padding: 2px 8px;
	background: var(--un-tag-bg, #fff);
	color: var(--un-tag-color, #000);
	border: var(--un-tag-border-width, 0) solid var(--un-tag-border-color, transparent);
	font-size: .7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	pointer-events: none;
}

.un-pane-type-tag--top-left     { top: 12px; left: 12px; }
.un-pane-type-tag--top-right    { top: 12px; right: 12px; }
.un-pane-type-tag--bottom-left  { bottom: 12px; left: 12px; }
.un-pane-type-tag--bottom-right { bottom: 12px; right: 12px; }

/* --------------------------------------------------------------------------
   Text size presets
   -------------------------------------------------------------------------- */
.un-pane--text-sm .un-pane-title { font-size: .8rem; }
.un-pane--text-sm .un-pane-desc  { font-size: .7rem; }
.un-pane--text-sm .un-pane-badge { font-size: .6rem; }

.un-pane--text-lg .un-pane-title { font-size: 1.25rem; }
.un-pane--text-lg .un-pane-desc  { font-size: 1rem; }

/* --------------------------------------------------------------------------
   Hero layout (about / news CTA)
   -------------------------------------------------------------------------- */
.un-pane--hero .un-pane-overlay--hero {
	inset: 0;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 32px;
	transform: none;
}

.un-pane--hero .un-pane-title {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.1;
}

.un-pane--hero .un-pane-desc {
	font-size: 1rem;
	max-width: 52ch;
}

/* Reset child margins in about overlays — flex gap handles vertical spacing */
.un-pane--hero .un-pane-overlay > *,
.un-pane--about-editorial .un-pane-overlay > *,
.un-pane--about-minimal .un-pane-overlay > * {
	margin: 0;
}

/* Text size modifiers inside hero */
.un-pane--hero.un-pane--text-sm .un-pane-title { font-size: 1.375rem; }
.un-pane--hero.un-pane--text-sm .un-pane-desc  { font-size: .875rem; }
.un-pane--hero.un-pane--text-lg .un-pane-title { font-size: 3rem; letter-spacing: -.04em; }
.un-pane--hero.un-pane--text-lg .un-pane-desc  { font-size: 1.125rem; }

/* Entrance animation — each direct child staggers in */
@keyframes un-hero-fadein {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

.un-pane--hero .un-pane-overlay--hero > * {
	animation: un-hero-fadein .55s cubic-bezier(.22, 1, .36, 1) both;
}
.un-pane--hero .un-pane-overlay--hero > *:nth-child(2) { animation-delay: .08s; }
.un-pane--hero .un-pane-overlay--hero > *:nth-child(3) { animation-delay: .16s; }
.un-pane--hero .un-pane-overlay--hero > *:nth-child(4) { animation-delay: .24s; }

/* --------------------------------------------------------------------------
   About layouts — editorial & minimal
   -------------------------------------------------------------------------- */

/* Editorial: standard bottom overlay, left-aligned, comfortable reading */
.un-pane--about-editorial .un-pane-overlay {
	text-align: left;
}

.un-pane--about-editorial .un-pane-title {
	font-size: 1.15rem;
}

.un-pane-about-subtitle {
	margin: 2px 0 6px;
	font-size: .9rem;
	opacity: .9;
	font-style: italic;
}

/* Minimal: large title, subtle / no background */
.un-pane--about-minimal .un-pane-title {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1.05;
}

.un-pane--about-minimal .un-pane-desc {
	display: none;
}

/* CTA link style (editorial / minimal) */
.un-pane-cta-link {
	display: inline-block;
	margin-top: 8px;
	color: inherit;
	text-decoration: underline;
	font-size: .875rem;
	font-weight: 600;
}

.un-pane-cta-link:hover {
	opacity: .8;
}

/* --------------------------------------------------------------------------
   Product editorial — split layouts (CT-I)
   -------------------------------------------------------------------------- */

/* Editorial zone: top overlay for dual-overlay mode */
.un-pane-editorial-zone {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 16px;
}

.un-pane-editorial-title {
	margin: 0 0 4px;
	font-size: .95rem;
	font-weight: 700;
	color: #fff;
}

.un-pane-editorial-desc {
	margin: 0;
	font-size: .82rem;
	color: rgba(255, 255, 255, .85);
	line-height: 1.45;
}

/* Split bottom: two columns pinned at the bottom of the pane */
.un-pane-split-bottom {
	position: absolute;
	inset: auto 0 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	z-index: 3;
}

.un-pane-split-editorial,
.un-pane-split-product {
	padding: 12px 14px;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
}

/* Divider is always between the two columns — first child gets border-right */
.un-pane-split-bottom > *:first-child {
	border-right: 1px solid rgba(255, 255, 255, .15);
}

.un-pane-split-product .un-pane-title {
	font-size: .85rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
}

.un-pane-split-product .un-pane-price {
	font-size: .8rem;
	margin: 0;
	opacity: .9;
}

/* --------------------------------------------------------------------------
   Editor placeholder
   -------------------------------------------------------------------------- */
.un-pane-editor-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: #f5f5f5;
	border: 2px dashed #ccc;
	color: #666;
}

.un-pane-editor-label {
	font-weight: 600;
	font-size: .9rem;
}

.un-pane-editor-span {
	font-size: .75rem;
	color: #999;
}

/* --------------------------------------------------------------------------
   Mobile — all panes full width, single row span
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
	.un-pane-el {
		grid-column: 1 / -1 !important;
		grid-row: span 1 !important;
	}
}

/* --------------------------------------------------------------------------
   About Hero — 3 display templates designed to read big over a dark video.
   Goal: typographic drama, not a polite hero card.
   -------------------------------------------------------------------------- */

/* Kill the legacy nth-child stagger — these templates have their own reveal. */
.un-pane--hero-editorial .un-pane-overlay--hero > *,
.un-pane--hero-stacked .un-pane-overlay--hero > *,
.un-pane--hero-caption .un-pane-overlay--hero > * {
	animation: none;
}

/* Shared tokens — overridable via theme / Elementor custom CSS */
.un-pane-overlay--hero[data-overlay] {
	--un-hero-color: #fff;
	--un-hero-shadow: 0 1px 28px rgba(0, 0, 0, .45);
	--un-hero-tracking-eyebrow: .28em;
	--un-hero-tracking-title: -.02em;

	/* Font stacks (defined here so theme can override via :root) */
	--un-hero-font-display: var(--un-font-display, "Helvetica Neue", Helvetica, Arial, sans-serif);
	--un-hero-font-body:    var(--un-font-body,    "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif);
	--un-hero-font-serif:   var(--un-font-serif,   "Libre Baskerville", "Baskerville", "Baskerville Old Face", "Hoefler Text", Georgia, serif);

	color: var(--un-pane-text-color, var(--un-hero-color));
	position: absolute;
	inset: 0;
}
.un-pane-overlay--hero[data-tracking="tight"] { --un-hero-tracking-title: -.05em; --un-hero-tracking-eyebrow: .2em; }
.un-pane-overlay--hero[data-tracking="loose"] { --un-hero-tracking-title: 0;       --un-hero-tracking-eyebrow: .4em; }

/* Inner block — capped width, vertical rhythm via gap */
.un-pane-overlay--hero .un-pane-hero-inner {
	display: flex;
	flex-direction: column;
	gap: var(--un-hero-gap, 18px);
	max-width: var(--un-hero-max-width, 760px);
	width: 100%;
}

/* Overlay backgrounds (always read over dark video first) */
.un-pane-overlay--hero[data-overlay="gradient-bottom"] {
	background: linear-gradient(to top, rgba(0, 0, 0, var(--un-overlay-pct, 45%)) 0%, rgba(0, 0, 0, 0) 75%);
}
.un-pane-overlay--hero[data-overlay="gradient-radial"] {
	background: radial-gradient(ellipse at center, transparent 25%, rgba(0, 0, 0, var(--un-overlay-pct, 45%)) 100%);
}
.un-pane-overlay--hero[data-overlay="vignette"] {
	box-shadow: inset 0 0 260px 50px rgba(0, 0, 0, var(--un-overlay-pct, 45%));
}
.un-pane-overlay--hero[data-overlay="solid"] {
	background: rgba(0, 0, 0, var(--un-overlay-pct, 45%));
}
.un-pane-overlay--hero[data-overlay="none"] { background: none; box-shadow: none; }

/* Alignment from data-align */
.un-pane-overlay--hero[data-align="left"]   .un-pane-hero-inner { align-items: flex-start; text-align: left; }
.un-pane-overlay--hero[data-align="center"] .un-pane-hero-inner { align-items: center;     text-align: center; margin-left: auto; margin-right: auto; }
.un-pane-overlay--hero[data-align="right"]  .un-pane-hero-inner { align-items: flex-end;   text-align: right; }

/* Vertical alignment from data-valign — overrides per-template defaults */
.un-pane-overlay--hero[data-valign="top"]    { justify-content: flex-start !important; }
.un-pane-overlay--hero[data-valign="center"] { justify-content: center !important; }
.un-pane-overlay--hero[data-valign="bottom"] { justify-content: flex-end !important; }

/* Default font for the hero scope — body sans. Titles and serif accents
   override locally. */
.un-pane-overlay--hero {
	font-family: var(--un-hero-font-body);
}

/* Common eyebrow base */
.un-pane-overlay--hero .un-pane-eyebrow {
	display: inline-flex;
	align-items: center;
	font-family: var(--un-hero-font-body);
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--un-hero-tracking-eyebrow);
	text-shadow: var(--un-hero-shadow);
}
/* Eyebrow with side rules (editorial display) */
.un-pane-eyebrow--ruled::before,
.un-pane-eyebrow--ruled::after {
	content: "";
	display: inline-block;
	width: clamp(28px, 4vw, 56px);
	height: 1px;
	background: currentColor;
	opacity: .7;
	margin: 0 .9em;
}
/* Eyebrow with leading bar (cinematic caption) */
.un-pane-eyebrow--barred::before {
	content: "";
	display: inline-block;
	width: clamp(36px, 5vw, 72px);
	height: 1px;
	background: currentColor;
	margin-right: .8em;
}

/* ============ Unified square ghost CTA ============ */
.un-pane-cta--square {
	display: inline-block;
	padding: clamp(.95em, 1.3vw, 1.2em) clamp(1.8em, 3vw, 2.6em);
	border: 1px solid rgba(255, 255, 255, .85);
	background: transparent;
	color: #fff;
	font-family: var(--un-hero-font-body);
	font-size: clamp(.78rem, .95vw, .92rem);
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: var(--un-hero-shadow);
	line-height: 1;
	transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.un-pane-cta--square:hover,
.un-pane-cta--square:focus-visible {
	background: #fff;
	color: #111;
	border-color: #fff;
	text-shadow: none;
}

/* ============ Editorial Display — magazine layout, top-left anchored ============ */
.un-pane--hero-editorial .un-pane-overlay--hero {
	padding: clamp(36px, 6vh, 96px) clamp(24px, 6vw, 88px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.un-pane--hero-editorial .un-pane-hero-inner {
	align-items: flex-start;
	text-align: left;
	max-width: var(--un-hero-max-width, 640px);
	gap: clamp(14px, 2.2vh, 26px);
}

/* Editorial Display eyebrow — Helvetica tracked uppercase, dressed up with
   a small dot + thin horizontal rule prefix. 2× the previous size so it
   sits as a real graphic element, not a tiny kicker. */
.un-pane-eyebrow--editorial {
	display: inline-flex;
	align-items: center;
	gap: clamp(12px, 1.4vw, 22px);
	font-family: var(--un-hero-font-display);
	font-style: normal;
	font-weight: 500;
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
	letter-spacing: .22em;
	text-transform: uppercase;
	line-height: 1;
	opacity: .9;
	text-shadow: var(--un-hero-shadow);
}
.un-eyebrow-rule {
	display: inline-block;
	width: clamp(48px, 7vw, 110px);
	height: 1px;
	background: currentColor;
	opacity: .85;
	transform-origin: left center;
}
.un-eyebrow-text {
	display: inline-block;
}

/* Title — HUGE Helvetica bold, no italic */
.un-pane--hero-editorial .un-pane-title {
	font-family: var(--un-hero-font-display);
	font-weight: 800;
	font-size: clamp(2.6rem, 8.5vw, 6.4rem);
	line-height: .94;
	letter-spacing: -.02em;
	text-transform: uppercase;
	text-shadow: var(--un-hero-shadow);
	display: block;
}
.un-pane--hero-editorial .un-pane-title--split {
	display: flex;
	flex-direction: column;
	gap: .04em;
}
/* `<em>` (from `*word*` syntax) — sans-serif italic accent. Inherits the
   title's Helvetica family so the italic stays consistent (no broken Baskerville
   capital A). Used sparingly for emphasis on one or two words. */
.un-pane--hero-editorial .un-pane-title em {
	font-style: italic;
	font-weight: inherit;
	font-family: inherit;
	text-transform: inherit;
	display: inline-block;
	transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.un-pane--hero-editorial .un-pane-overlay--hero:hover .un-pane-title em {
	transform: translateX(.18em);
}

/* Description — Helvetica regular, comfortable reading. No serif italic. */
.un-pane--hero-editorial .un-pane-desc {
	font-family: var(--un-hero-font-display);
	font-style: normal;
	font-weight: 400;
	font-size: clamp(1rem, 1.4vw, 1.15rem);
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.45;
	max-width: 24ch;
	opacity: .94;
	text-shadow: var(--un-hero-shadow);
}

/* Eyebrow rule draws in from left on reveal */
.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-rule {
	transition: transform 1.1s cubic-bezier(.22, 1, .36, 1) .25s;
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-eyebrow-rule {
	transform: scaleX(1);
}
.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-mark {
	opacity: 0;
	transform: translateX(-.4em);
	transition: opacity .5s ease 1s, transform .5s cubic-bezier(.22, 1, .36, 1) 1s;
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-eyebrow-mark {
	opacity: .6;
	transform: none;
}

/* Editorial split lines — hierarchy via SIZE + weight:
   - kicker: 90% of title size, weight 400 (lighter)
   - main: 120% of title size, weight 800 (heavy)
   Both Helvetica, no italic. */
.un-pane--hero-editorial .un-pane-title--split {
	display: flex;
	flex-direction: column;
	gap: .05em;
}
.un-pane--hero-editorial .un-hero-line--kicker {
	font-family: var(--un-hero-font-display);
	font-style: normal;
	font-weight: 400;
	font-size: .9em;
	letter-spacing: -.01em;
	opacity: .94;
}
.un-pane--hero-editorial .un-hero-line--main {
	font-style: normal;
	font-weight: 800;
	font-size: 1.2em;
}

/* ============ Stacked Outline — DISPLAY BLOCK ============ */
.un-pane--hero-stacked .un-pane-overlay--hero {
	padding: clamp(28px, 4vh, 64px) clamp(22px, 5vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.un-pane-title--stacked {
	display: flex;
	flex-direction: column;
	line-height: .82;
	font-family: var(--un-hero-font-display);
	font-weight: 900;
	font-size: clamp(2.8rem, 11vw, 8rem);
	letter-spacing: var(--un-hero-tracking-title);
	text-transform: uppercase;
}
.un-pane-title--stacked .un-hero-line {
	display: block;
	transition: color .35s ease, -webkit-text-stroke-color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}
.un-pane-title--stacked .is-outlined {
	-webkit-text-stroke: clamp(1px, .18vw, 2px) currentColor;
	color: transparent;
	text-shadow: none;
}
.un-pane-title--stacked .is-filled {
	color: currentColor;
	text-shadow: var(--un-hero-shadow);
}
.un-pane-title--stacked .is-italic {
	font-style: italic;
	transform: skewX(-6deg);
	display: inline-block;
}
/* Hover: swap fills + slight horizontal drift on alternating lines */
.un-pane--hero-stacked .un-pane-overlay--hero:hover .un-pane-title--stacked .is-outlined {
	-webkit-text-stroke-color: transparent;
	color: currentColor;
}
.un-pane--hero-stacked .un-pane-overlay--hero:hover .un-pane-title--stacked .is-filled {
	color: transparent;
	-webkit-text-stroke: clamp(1px, .18vw, 2px) currentColor;
}
.un-pane--hero-stacked .un-pane-overlay--hero:hover .un-pane-title--stacked .un-hero-line[data-dir="right"] {
	transform: translateX(.5em);
}
.un-pane--hero-stacked .un-pane-overlay--hero:hover .un-pane-title--stacked .un-hero-line[data-dir="left"] {
	transform: translateX(-.5em);
}
.un-pane--hero-stacked .un-pane-overlay--hero:hover .un-pane-title--stacked .is-italic {
	transform: skewX(-6deg) translateX(.5em);
}
.un-pane-eyebrow--foot {
	font-weight: 600;
	opacity: .85;
}

/* ============ Cinematic Caption ============ */
.un-pane--hero-caption .un-pane-overlay--hero {
	justify-content: flex-end;
	padding: clamp(36px, 7vh, 96px) clamp(24px, 6vw, 72px);
	display: flex;
	flex-direction: column;
}
.un-pane-caption-stack { gap: clamp(10px, 1.6vh, 18px); }

.un-pane--hero-caption .un-pane-title {
	font-family: var(--un-hero-font-display);
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 3.6rem);
	line-height: 1.05;
	letter-spacing: var(--un-hero-tracking-title);
	text-shadow: var(--un-hero-shadow);
}
.un-pane--hero-caption .un-pane-title em {
	font-family: var(--un-hero-font-serif);
	font-style: italic;
	font-weight: 500;
}
.un-pane--hero-caption .un-pane-desc {
	font-family: var(--un-hero-font-body);
	font-size: clamp(.88rem, 1.15vw, 1rem);
	line-height: 1.55;
	max-width: 44ch;
	opacity: .88;
	text-shadow: var(--un-hero-shadow);
}

/* ============ Reveal animations ============ */
/* Lines (stacked + editorial split) start hidden + offset for slide-in */
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .un-hero-line {
	opacity: 0;
	transform: translateX(0) translateY(.3em);
	transition:
		opacity .7s cubic-bezier(.22, 1, .36, 1),
		transform .7s cubic-bezier(.22, 1, .36, 1),
		color .35s ease,
		-webkit-text-stroke-color .35s ease;
}
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .un-hero-line[data-dir="left"]  { transform: translateX(-.8em); }
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .un-hero-line[data-dir="right"] { transform: translateX(.8em); }

.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .un-hero-line {
	transition-delay: calc(var(--i, 0) * 80ms);
}

.un-pane-overlay--hero[data-animate="yes"] .un-pane-title .un-hero-line {
	opacity: 0;
	transform: translateY(.5em);
	transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
	transition-delay: calc(var(--i, 0) * 90ms + 150ms);
}

/* Word-level reveal for non-split titles */
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title > .word,
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title em > .word,
.un-pane-overlay--hero[data-animate="yes"] .un-pane-title .un-hero-line > .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(.5em);
	transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
	transition-delay: calc(var(--i, 0) * 60ms + 180ms);
}

/* Eyebrow / desc / CTA */
.un-pane-overlay--hero[data-animate="yes"] .un-pane-eyebrow {
	clip-path: inset(0 100% 0 0);
	transition: clip-path .7s cubic-bezier(.22, 1, .36, 1);
}
.un-pane-overlay--hero[data-animate="yes"] .un-pane-desc,
.un-pane-overlay--hero[data-animate="yes"] .un-pane-cta,
.un-pane-overlay--hero[data-animate="yes"] .un-pane-cta--square,
.un-pane-overlay--hero[data-animate="yes"] .un-pane-cta-inline {
	opacity: 0;
	transform: translateY(.6em);
	transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1);
}

/* Revealed state */
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-eyebrow { clip-path: inset(0 0 0 0); }
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title--stacked .un-hero-line,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title .un-hero-line,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title > .word,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title em > .word,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title .un-hero-line > .word,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-desc,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta--square,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta-inline {
	opacity: 1;
	transform: none;
}
/* Re-assert italic skew after reveal (transform: none was applied above) */
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-title--stacked .is-italic {
	transform: skewX(-6deg);
}

/* ============================================================================
   Editorial Display — sequenced reveal choreography (tightened, ~1.0s total)
   ============================================================================
     0.00s — eyebrow text wipes in (clip-path L→R)
     0.20s — eyebrow rule extends right from after the text
     0.30s — kicker (title line 1) clip-path wipe in L→R
     0.55s — main (title line 2) scales up with subtle bounce
     0.70s — description fade-up (overlaps main tail)
     0.95s — CTA fade-up
   ============================================================================ */

/* Override the generic eyebrow clip-path — editorial uses children */
.un-pane-overlay--hero[data-animate="yes"] .un-pane-eyebrow--editorial {
	clip-path: none !important;
}

/* Eyebrow text: clip-path L→R (first to appear) */
.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-text {
	clip-path: inset(0 100% 0 0);
	transition: clip-path .55s cubic-bezier(.22, 1, .36, 1);
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-eyebrow-text {
	clip-path: inset(0 0 0 0);
}

/* Eyebrow rule: scaleX from left (extends out after the text) */
.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-rule {
	transform: scaleX(0);
	transition: transform .75s cubic-bezier(.22, 1, .36, 1) .2s;
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-eyebrow-rule {
	transform: scaleX(1);
}

/* Kicker (line--kicker): clip-path L→R */
.un-pane-overlay--hero[data-animate="yes"] .un-hero-line--kicker {
	opacity: 1 !important;
	transform: none !important;
	clip-path: inset(0 100% 0 0);
	transition: clip-path .85s cubic-bezier(.22, 1, .36, 1) .3s !important;
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-hero-line--kicker {
	clip-path: inset(0 0 0 0);
}

/* Main (line--main): scale-in bounce */
.un-pane-overlay--hero[data-animate="yes"] .un-hero-line--main {
	opacity: 0;
	transform: scale(.92);
	transform-origin: left center;
	transition:
		opacity .5s ease .55s,
		transform .85s cubic-bezier(.34, 1.36, .64, 1) .55s !important;
}
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-hero-line--main {
	opacity: 1;
	transform: scale(1);
}

/* Description + CTA — late delays */
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-desc          { transition-delay: .7s; }
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta--square,
.un-pane-overlay--hero[data-animate="yes"].is-revealed .un-pane-cta-inline    { transition-delay: .95s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.un-pane-overlay--hero[data-animate="yes"] *,
	.un-pane-overlay--hero[data-animate="yes"] .un-pane-title .un-hero-line,
	.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .un-hero-line,
	.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-rule,
	.un-pane-overlay--hero[data-animate="yes"] .un-eyebrow-text,
	.un-pane-overlay--hero[data-animate="yes"] .un-hero-line--kicker,
	.un-pane-overlay--hero[data-animate="yes"] .un-hero-line--main {
		opacity: 1 !important;
		transform: none !important;
		clip-path: none !important;
		transition: none !important;
		animation: none !important;
	}
	.un-pane-overlay--hero[data-animate="yes"] .un-pane-title--stacked .is-italic { transform: skewX(-6deg) !important; }
}

/* Mobile tightening */
@media (max-width: 767px) {
	.un-pane--hero-editorial .un-pane-title { font-size: clamp(2rem, 10vw, 3rem); }
	.un-pane-title--stacked                  { font-size: clamp(2.4rem, 15vw, 4.5rem); }
	.un-pane--hero-caption .un-pane-title    { font-size: clamp(1.6rem, 8vw, 2.4rem); }
	.un-pane-eyebrow--ruled::before,
	.un-pane-eyebrow--ruled::after { width: 20px; margin: 0 .5em; }
}

/* ==========================================================================
   PANE v2 (v1.31) — Opinionated visual system for standard panes
   (Nouveauté / Look / Produit / Solde / News). Overrides legacy rules above.

   Identity: Helvetica display titles, Public Sans body, white-on-overlay,
   glass-frosted pill tags, sale cascade top-right, baseline-aligned product
   price, breathing gap between title and description.
   ========================================================================== */

/* Typography scale + font stack tokens — scoped to all panes */
.un-pane-inner {
	--un-pane-font-display: var(--un-font-display, "Helvetica Neue", Helvetica, Arial, sans-serif);
	--un-pane-font-body:    var(--un-font-body,    "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif);

	--un-pane-title-size:     clamp(1.05rem, 1.4vw, 1.4rem);
	--un-pane-title-weight:   700;
	--un-pane-title-tracking: -.01em;
	--un-pane-title-line:     1.18;

	--un-pane-desc-size:    clamp(.85rem, 1.05vw, .95rem);
	--un-pane-desc-weight:  400;
	--un-pane-desc-line:    1.5;
	--un-pane-desc-max:     38ch;
	--un-pane-desc-opacity: .82;

	--un-pane-pill-size:     .85rem;
	--un-pane-pill-weight:   600;
	--un-pane-pill-tracking: .24em;

	--un-pane-price-size:   clamp(.95rem, 1.2vw, 1.15rem);
	--un-pane-price-weight: 700;

	--un-pane-text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

/* Title / description override the legacy fixed sizes */
.un-pane-inner .un-pane-title {
	font-family: var(--un-pane-font-display);
	font-size: var(--un-pane-title-size);
	font-weight: var(--un-pane-title-weight);
	letter-spacing: var(--un-pane-title-tracking);
	line-height: var(--un-pane-title-line);
	margin: 0;
	text-shadow: var(--un-pane-text-shadow);
	color: #fff;
}
.un-pane-inner .un-pane-title a { color: inherit; text-decoration: none; }
.un-pane-inner .un-pane-title a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .15em; }

.un-pane-inner .un-pane-desc {
	font-family: var(--un-pane-font-body);
	font-size: var(--un-pane-desc-size);
	font-weight: var(--un-pane-desc-weight);
	line-height: var(--un-pane-desc-line);
	max-width: var(--un-pane-desc-max);
	opacity: var(--un-pane-desc-opacity);
	margin: 0;
	color: #fff;
	text-shadow: var(--un-pane-text-shadow);
}

/* Override text-size modifiers — keep the SELECT but scale via the token */
.un-pane--text-sm { --un-pane-title-size: clamp(.9rem, 1.1vw, 1.05rem); --un-pane-desc-size: clamp(.78rem, .95vw, .85rem); }
.un-pane--text-lg { --un-pane-title-size: clamp(1.25rem, 1.7vw, 1.65rem); --un-pane-desc-size: clamp(.95rem, 1.15vw, 1.05rem); }

/* Bottom overlay — text at the BOTTOM of the box. A moderate padding-top
   (40–70px) sets the fade zone above the text. Gradient stops keep the box
   dense over the lower ~60% (where text lives) then fade quickly to clean
   image above. Box auto-sizes from content → image-only panes have no
   overlay → image fully preserved. */
.un-pane-inner .un-pane-overlay--bottom {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 6px;
	padding: clamp(40px, 5vh, 70px) clamp(14px, 1.8vw, 24px) clamp(14px, 1.6vw, 22px);
}

.un-pane-inner .un-pane-overlay--bottom[data-overlay="gradient-bottom"] {
	background: linear-gradient(to top,
		rgba(0, 0, 0, var(--un-pane-overlay-pct, 65%)) 0%,
		rgba(0, 0, 0, calc(var(--un-pane-overlay-pct, 65%) * .6)) 55%,
		rgba(0, 0, 0, calc(var(--un-pane-overlay-pct, 65%) * .2)) 85%,
		rgba(0, 0, 0, 0) 100%);
}
.un-pane-inner[data-contrast="yes"] {
	--un-pane-overlay-pct: 85%;
}

/* ---- Title + price row (Produit pane, non-solde) ---- */
.un-pane-inner .un-pane-title-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 14px;
}
.un-pane-inner .un-pane-title-row .un-pane-title {
	flex: 1 1 auto;
	min-width: 0;
}
.un-pane-inner .un-pane-price--inline {
	flex: 0 0 auto;
	font-family: var(--un-pane-font-display);
	font-size: var(--un-pane-price-size);
	font-weight: var(--un-pane-price-weight);
	color: #fff;
	white-space: nowrap;
	text-shadow: var(--un-pane-text-shadow);
}
.un-pane-inner .un-pane-price--inline del { opacity: .55; font-weight: 400; margin-right: .35em; }
.un-pane-inner .un-pane-price--inline ins { text-decoration: none; }

/* ---- Glass frosted square tag (replaces the white code-barre look) ---- */
.un-pane-inner .un-pane-type-tag {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	padding: .8em 1.6em;
	background: rgba(0, 0, 0, .22);
	-webkit-backdrop-filter: blur(14px) saturate(.9);
	backdrop-filter: blur(14px) saturate(.9);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 0;
	color: #fff;
	font-family: var(--un-pane-font-body);
	font-size: var(--un-pane-pill-size);
	font-weight: var(--un-pane-pill-weight);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: var(--un-pane-pill-tracking);
	text-shadow: 0 1px 6px rgba(0, 0, 0, .25);
	pointer-events: none;
}
/* Fallback when backdrop-filter isn't supported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.un-pane-inner .un-pane-type-tag { background: rgba(0, 0, 0, .55); }
}

/* Position modifiers tighten the offset compared to legacy */
.un-pane-inner .un-pane-type-tag--top-left     { top: 14px;    left: 14px; }
.un-pane-inner .un-pane-type-tag--top-right    { top: 14px;    right: 14px; }
.un-pane-inner .un-pane-type-tag--bottom-left  { bottom: 14px; left: 14px; }
.un-pane-inner .un-pane-type-tag--bottom-right { bottom: 14px; right: 14px; }

/* ---- Sale stack (top-right cascade) ---- */
.un-pane-sale-stack {
	position: absolute;
	top: 18px;
	right: 18px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	text-align: right;
	color: #fff;
	pointer-events: none;
	text-shadow: var(--un-pane-text-shadow);
}
.un-pane-sale-pct {
	font-family: var(--un-pane-font-display);
	font-weight: 900;
	font-size: clamp(2rem, 4.8vw, 3.6rem);
	line-height: 1;
	letter-spacing: -.02em;
}
.un-pane-sale-prices {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: var(--un-pane-font-body);
	line-height: 1.2;
}
.un-pane-sale-regular {
	font-size: clamp(.78rem, .95vw, .9rem);
	opacity: .55;
	text-decoration: line-through;
	text-decoration-thickness: 1px;
}
.un-pane-sale-regular bdi { color: inherit; }
.un-pane-sale-final {
	font-size: clamp(.95rem, 1.2vw, 1.1rem);
	font-weight: 700;
	text-decoration: none;
}

/* ---- Reveal animations (IntersectionObserver-driven, see un-pane-hero.js) ----
   Gated on `html.un-reveal-ready` — only when the JS has confirmed it'll run.
   Without that class, content stays fully visible (no-JS fallback / editor). */
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-type-tag,
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-stack,
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-overlay--bottom > * {
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
}
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-type-tag {
	transform: scale(.94);
	transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
	transition-delay: .15s;
}
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-pct {
	opacity: 0;
	transform: scale(.85);
	transition: opacity .55s ease, transform .65s cubic-bezier(.34, 1.56, .64, 1);
}
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-prices .un-pane-sale-regular,
html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-prices .un-pane-sale-final {
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-sale-pct                      { opacity: 1; transform: scale(1); transition-delay: .1s; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-sale-prices .un-pane-sale-regular { opacity: .55; transform: none; transition-delay: .38s; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-sale-prices .un-pane-sale-final   { opacity: 1; transform: none; transition-delay: .46s; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-type-tag                      { opacity: 1; transform: none; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-overlay--bottom > *           { opacity: 1; transform: none; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-overlay--bottom > *:nth-child(1) { transition-delay: .2s; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-overlay--bottom > *:nth-child(2) { transition-delay: .3s; }
html.un-reveal-ready .un-pane-inner[data-reveal="yes"].is-revealed .un-pane-overlay--bottom > *:nth-child(3) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-type-tag,
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-stack,
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-pct,
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-prices > *,
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-overlay--bottom > * {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	html.un-reveal-ready .un-pane-inner[data-reveal="yes"] .un-pane-sale-regular { opacity: .55 !important; }
}

/* Make sure the sale stack survives small panes */
@media (max-width: 767px) {
	.un-pane-sale-stack { top: 12px; right: 12px; gap: 4px; }
	.un-pane-sale-pct   { font-size: clamp(1.6rem, 7vw, 2.2rem); }
	.un-pane-inner .un-pane-type-tag--top-left,
	.un-pane-inner .un-pane-type-tag--bottom-left  { left: 10px; }
	.un-pane-inner .un-pane-type-tag--top-right,
	.un-pane-inner .un-pane-type-tag--bottom-right { right: 10px; }
}
