/* LJ Link Reveal v1.3.0 */
:root {
  --ljlr-motion: cubic-bezier(.22,1,.36,1);
}

.ljlr,
.ljlr * {
  box-sizing: border-box;
}

.ljlr {
  --ljlr-bg: #0b0b0b;
  --ljlr-item-bg: transparent;
  --ljlr-hover-bg: #f5f0e7;
  --ljlr-border: rgba(255,255,255,.16);
  --ljlr-accent: #fe2525;
  --ljlr-title: #f8f8f8;
  --ljlr-title-hover: #080808;
  --ljlr-desc: rgba(255,255,255,.68);
  --ljlr-meta: rgba(255,255,255,.48);
  --ljlr-arrow: currentColor;
  --ljlr-arrow-bg: rgba(255,255,255,.08);
  --ljlr-radius: 0px;
  --ljlr-gap: 0px;
  --ljlr-item-pt: 28px;
  --ljlr-item-pr: 24px;
  --ljlr-item-pb: 28px;
  --ljlr-item-pl: 24px;
  --ljlr-arrow-size: 52px;
  --ljlr-img-w: 260px;
  --ljlr-img-h: 170px;
  --ljlr-img-opacity: .92;
  --ljlr-columns: 1;
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--ljlr-columns), minmax(0, 1fr));
  gap: var(--ljlr-gap);
  padding: 0;
  background: var(--ljlr-bg);
  color: var(--ljlr-title);
  overflow: visible;
  isolation: isolate;
}

.ljlr--light {
  --ljlr-bg: #f6f2e9;
  --ljlr-item-bg: transparent;
  --ljlr-hover-bg: #0b0b0b;
  --ljlr-border: rgba(0,0,0,.16);
  --ljlr-title: #0b0b0b;
  --ljlr-title-hover: #ffffff;
  --ljlr-desc: rgba(0,0,0,.62);
  --ljlr-meta: rgba(0,0,0,.46);
  --ljlr-arrow-bg: rgba(0,0,0,.08);
}

.ljlr--transparent {
  --ljlr-bg: transparent;
}

.ljlr__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, .55fr) auto;
  align-items: center;
  min-height: 110px;
  padding: var(--ljlr-item-pt) var(--ljlr-item-pr) var(--ljlr-item-pb) var(--ljlr-item-pl);
  color: var(--ljlr-title);
  text-decoration: none !important;
  background: var(--ljlr-item-bg);
  border-top: 1px solid var(--ljlr-border);
  border-radius: var(--ljlr-radius);
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: color .38s var(--ljlr-motion), background-color .38s var(--ljlr-motion), transform .38s var(--ljlr-motion), border-color .38s var(--ljlr-motion), box-shadow .38s var(--ljlr-motion);
}

.ljlr__item:last-child {
  border-bottom: 1px solid var(--ljlr-border);
}

.ljlr__item:focus-visible {
  outline: 2px solid var(--ljlr-accent);
  outline-offset: 4px;
}

.ljlr__fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ljlr-hover-bg);
  transform: translateX(-101%);
  transition: transform .62s var(--ljlr-motion), opacity .62s var(--ljlr-motion);
  will-change: transform;
}

.ljlr__main {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  min-width: 0;
  position: relative;
  z-index: 2;
}

.ljlr__index {
  flex: 0 0 auto;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1;
  letter-spacing: .12em;
  color: var(--ljlr-meta);
  transition: color .38s var(--ljlr-motion), transform .38s var(--ljlr-motion);
}

.ljlr__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ljlr-border);
  border-radius: 999px;
  color: var(--ljlr-title);
  transition: transform .38s var(--ljlr-motion), border-color .38s var(--ljlr-motion), color .38s var(--ljlr-motion), background .38s var(--ljlr-motion);
}

.ljlr__icon svg,
.ljlr__icon i {
  width: 1em;
  height: 1em;
  display: block;
  font-size: 16px;
}

.ljlr__text {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.ljlr__eyebrow {
  display: block;
  width: fit-content;
  font-size: clamp(11px, .9vw, 13px);
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ljlr-meta);
  transition: color .38s var(--ljlr-motion), transform .38s var(--ljlr-motion);
}

.ljlr__title {
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(28px, 5.6vw, 96px);
  line-height: .94;
  font-weight: 700;
  letter-spacing: -.06em;
  color: var(--ljlr-title);
  transition: color .38s var(--ljlr-motion), transform .52s var(--ljlr-motion), letter-spacing .52s var(--ljlr-motion);
}

.ljlr__title-main,
.ljlr__title-clone {
  display: block;
  color: inherit;
  transition: transform .62s cubic-bezier(.19,1,.22,1);
  will-change: transform;
}

.ljlr__title-clone {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  pointer-events: none;
}

.ljlr__description {
  display: block;
  color: var(--ljlr-desc);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
  max-width: 520px;
  position: relative;
  z-index: 2;
  transition: color .38s var(--ljlr-motion), transform .52s var(--ljlr-motion), opacity .52s var(--ljlr-motion);
}

.ljlr__arrow {
  position: relative;
  overflow: hidden;
  width: var(--ljlr-arrow-size);
  height: var(--ljlr-arrow-size);
  display: inline-grid;
  place-items: center;
  justify-self: end;
  z-index: 2;
  border-radius: 999px;
  background: var(--ljlr-arrow-bg);
  color: var(--ljlr-arrow);
  transition: color .38s var(--ljlr-motion), background .38s var(--ljlr-motion), transform .52s var(--ljlr-motion);
}

.ljlr__arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ljlr-accent);
  transform: scale(0);
  opacity: .95;
  transition: transform .52s var(--ljlr-motion), opacity .52s var(--ljlr-motion);
}

.ljlr__arrow svg {
  position: relative;
  z-index: 1;
  width: 46%;
  height: 46%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ljlr__image {
  position: absolute;
  right: 18%;
  top: 50%;
  z-index: 1;
  width: var(--ljlr-img-w);
  height: var(--ljlr-img-h);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, -42%, 0) rotate(-2deg) scale(.88);
  transition: opacity .36s var(--ljlr-motion), transform .52s var(--ljlr-motion);
  will-change: transform, opacity, left, top;
  overflow: hidden;
  border-radius: calc(var(--ljlr-radius) + 14px);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}

.ljlr__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform .7s var(--ljlr-motion);
}

.ljlr__item:hover,
.ljlr__item:focus-visible {
  color: var(--ljlr-title-hover);
  border-color: transparent;
}

.ljlr__item:hover .ljlr__fill,
.ljlr__item:focus-visible .ljlr__fill {
  transform: translateX(0);
}

.ljlr__item:hover .ljlr__title,
.ljlr__item:focus-visible .ljlr__title {
  color: var(--ljlr-title-hover);
  transform: translateX(10px);
  letter-spacing: -.045em;
}

.ljlr__item:hover .ljlr__description,
.ljlr__item:focus-visible .ljlr__description {
  color: color-mix(in srgb, var(--ljlr-title-hover) 66%, transparent);
  transform: translateX(-8px);
}

.ljlr__item:hover .ljlr__index,
.ljlr__item:focus-visible .ljlr__index,
.ljlr__item:hover .ljlr__eyebrow,
.ljlr__item:focus-visible .ljlr__eyebrow {
  color: color-mix(in srgb, var(--ljlr-title-hover) 56%, transparent);
}

.ljlr__item:hover .ljlr__icon,
.ljlr__item:focus-visible .ljlr__icon {
  color: var(--ljlr-title-hover);
  border-color: color-mix(in srgb, var(--ljlr-title-hover) 26%, transparent);
  transform: rotate(-8deg) scale(1.06);
}

.ljlr__item:hover .ljlr__arrow,
.ljlr__item:focus-visible .ljlr__arrow {
  color: var(--ljlr-title-hover);
  background: color-mix(in srgb, var(--ljlr-title-hover) 12%, transparent);
  transform: translate(6px, -6px) rotate(45deg);
}

.ljlr__item:hover .ljlr__image,
.ljlr__item:focus-visible .ljlr__image {
  opacity: var(--ljlr-img-opacity);
  transform: translate3d(0, -50%, 0) rotate(2deg) scale(1);
}

.ljlr__item:hover .ljlr__image img,
.ljlr__item:focus-visible .ljlr__image img {
  transform: scale(1);
}


/* Constructum exact flow: rolling text, diagonal arrow swap, controlled background reveal */
.ljlr--anim-constructum-flow .ljlr__item {
  overflow: hidden;
}

.ljlr--anim-constructum-flow .ljlr__fill {
  transform: translate3d(0, 104%, 0) skewY(1.4deg);
  transform-origin: left bottom;
  transition: transform .72s cubic-bezier(.19,1,.22,1);
}

.ljlr--anim-constructum-flow .ljlr__title {
  overflow: hidden;
  line-height: 1.02;
  text-shadow: none;
  transition: color .42s var(--ljlr-motion), letter-spacing .42s var(--ljlr-motion);
}

.ljlr--anim-constructum-flow .ljlr__description,
.ljlr--anim-constructum-flow .ljlr__index,
.ljlr--anim-constructum-flow .ljlr__eyebrow,
.ljlr--anim-constructum-flow .ljlr__icon {
  transition-duration: .62s;
  transition-timing-function: cubic-bezier(.19,1,.22,1);
}

.ljlr--anim-constructum-flow .ljlr__arrow {
  border: 1px solid color-mix(in srgb, var(--ljlr-arrow) 28%, transparent);
  background: transparent;
  transform: translateZ(0);
}

.ljlr--anim-constructum-flow .ljlr__arrow::before {
  transform: translate3d(-108%, 108%, 0) scale(1);
  transition: transform .58s cubic-bezier(.19,1,.22,1);
}

.ljlr--anim-constructum-flow .ljlr__arrow::after {
  content: '↗';
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  font-size: calc(var(--ljlr-arrow-size) * .42);
  line-height: 1;
  color: var(--ljlr-title-hover);
  transform: translate(-165%, 72%);
  transition: transform .58s cubic-bezier(.19,1,.22,1), color .38s var(--ljlr-motion);
}

.ljlr--anim-constructum-flow .ljlr__arrow svg {
  transition: transform .58s cubic-bezier(.19,1,.22,1), opacity .38s var(--ljlr-motion);
}

.ljlr--anim-constructum-flow .ljlr__image {
  clip-path: inset(0 100% 0 0 round calc(var(--ljlr-radius) + 14px));
  transform: translate3d(18px, -50%, 0) rotate(0deg) scale(.96);
  transition: opacity .44s var(--ljlr-motion), transform .68s cubic-bezier(.19,1,.22,1), clip-path .68s cubic-bezier(.19,1,.22,1);
}

.ljlr--anim-constructum-flow .ljlr__item:hover,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible {
  color: var(--ljlr-title-hover);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__fill,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__fill {
  transform: translate3d(0, 0, 0) skewY(0deg);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__title,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__title {
  color: var(--ljlr-title-hover);
  transform: none;
  letter-spacing: -.055em;
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__title-main,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__title-main {
  transform: translateY(-105%);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__title-clone,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__title-clone {
  transform: translateY(-100%);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__description,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__description {
  transform: translateX(0);
  opacity: .78;
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__index,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__index {
  transform: translateY(-4px);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__arrow,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__arrow {
  transform: translate(7px, -7px);
  background: transparent;
  color: var(--ljlr-title-hover);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__arrow::before,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__arrow::before {
  transform: translate3d(0, 0, 0) scale(1);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__arrow::after,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__arrow::after {
  transform: translate(-50%, -50%);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__arrow svg,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__arrow svg {
  transform: translate(150%, -150%);
}

.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__image,
.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__image {
  clip-path: inset(0 0 0 0 round calc(var(--ljlr-radius) + 14px));
  transform: translate3d(0, -50%, 0) rotate(0deg) scale(1);
}

/* Animation alternatives */
.ljlr--anim-image-cursor .ljlr__image {
  left: var(--ljlr-cursor-x, 55%);
  top: var(--ljlr-cursor-y, 50%);
  right: auto;
  transform: translate3d(-50%, -50%, 0) rotate(-5deg) scale(.82);
}
.ljlr--anim-image-cursor .ljlr__item:hover .ljlr__image,
.ljlr--anim-image-cursor .ljlr__item:focus-visible .ljlr__image {
  transform: translate3d(-50%, -50%, 0) rotate(1deg) scale(1);
}

.ljlr--anim-underline-arrow .ljlr__fill {
  inset: auto var(--ljlr-item-pr) 18px var(--ljlr-item-pl);
  height: 2px;
  background: var(--ljlr-accent);
  transform: scaleX(0);
  transform-origin: left center;
}
.ljlr--anim-underline-arrow .ljlr__item:hover .ljlr__fill,
.ljlr--anim-underline-arrow .ljlr__item:focus-visible .ljlr__fill {
  transform: scaleX(1);
}
.ljlr--anim-underline-arrow .ljlr__item:hover,
.ljlr--anim-underline-arrow .ljlr__item:focus-visible {
  color: var(--ljlr-title);
}
.ljlr--anim-underline-arrow .ljlr__item:hover .ljlr__title,
.ljlr--anim-underline-arrow .ljlr__item:focus-visible .ljlr__title {
  color: var(--ljlr-title);
}

.ljlr--anim-magnetic .ljlr__item:hover,
.ljlr--anim-magnetic .ljlr__item:focus-visible {
  transform: translate3d(var(--ljlr-magnet-x, 0px), var(--ljlr-magnet-y, 0px), 0);
}

.ljlr--anim-lift .ljlr__fill {
  opacity: 0;
  transform: none;
}
.ljlr--anim-lift .ljlr__item:hover,
.ljlr--anim-lift .ljlr__item:focus-visible {
  transform: translateY(-8px);
  background: var(--ljlr-hover-bg);
}

.ljlr--anim-none .ljlr__fill,
.ljlr--anim-none .ljlr__image {
  display: none;
}
.ljlr--anim-none .ljlr__item:hover .ljlr__title,
.ljlr--anim-none .ljlr__item:focus-visible .ljlr__title,
.ljlr--anim-none .ljlr__item:hover .ljlr__description,
.ljlr--anim-none .ljlr__item:focus-visible .ljlr__description {
  transform: none;
}

/* Constructum rows */
.ljlr--constructum {
  border-left: 1px solid var(--ljlr-border);
  border-right: 1px solid var(--ljlr-border);
}
.ljlr--constructum .ljlr__item {
  border-radius: 0;
}


/* Constructum button / rolling CTA */
.ljlr--flow-button {
  --ljlr-bg: transparent;
  --ljlr-hover-bg: #f5f0e7;
  --ljlr-title: #ffffff;
  --ljlr-title-hover: #0b0b0b;
  --ljlr-border: rgba(255,255,255,.24);
  --ljlr-arrow-bg: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: max(12px, var(--ljlr-gap));
  background: transparent;
}

.ljlr--light.ljlr--flow-button {
  --ljlr-title: #0b0b0b;
  --ljlr-title-hover: #ffffff;
  --ljlr-hover-bg: #0b0b0b;
  --ljlr-border: rgba(0,0,0,.24);
}

.ljlr--flow-button .ljlr__item {
  width: auto;
  min-height: 0;
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 14px;
  padding: 16px 18px 16px 22px;
  border: 1px solid var(--ljlr-border);
  border-radius: var(--ljlr-radius, 999px);
  overflow: hidden;
}

.ljlr--flow-button .ljlr__item:last-child {
  border-bottom: 1px solid var(--ljlr-border);
}

.ljlr--flow-button .ljlr__main {
  gap: 0;
}

.ljlr--flow-button .ljlr__index,
.ljlr--flow-button .ljlr__eyebrow,
.ljlr--flow-button .ljlr__description,
.ljlr--flow-button .ljlr__icon {
  display: none;
}

.ljlr--flow-button .ljlr__title {
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.ljlr--flow-button .ljlr__arrow {
  --ljlr-arrow-size: 38px;
  flex: 0 0 auto;
}

.ljlr--flow-button .ljlr__fill {
  z-index: 0;
}

/* Bulletin minimal: proche du visuel noir + CTA sobre */
.ljlr--bulletin {
  --ljlr-bg: transparent;
  --ljlr-item-bg: transparent;
  --ljlr-hover-bg: transparent;
  --ljlr-title: #ffffff;
  --ljlr-title-hover: #ffffff;
  --ljlr-desc: rgba(255,255,255,.72);
  --ljlr-meta: rgba(255,255,255,.58);
  display: block;
}
.ljlr--bulletin .ljlr__item {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  padding: 10px 0;
  border: 0;
  overflow: visible;
}
.ljlr--bulletin .ljlr__main {
  gap: 10px;
}
.ljlr--bulletin .ljlr__index,
.ljlr--bulletin .ljlr__eyebrow,
.ljlr--bulletin .ljlr__description,
.ljlr--bulletin .ljlr__icon {
  display: none;
}
.ljlr--bulletin .ljlr__title {
  font-family: inherit;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.ljlr--bulletin .ljlr__arrow {
  width: 19px;
  height: 19px;
  background: transparent;
  margin-left: 4px;
}
.ljlr--bulletin .ljlr__arrow svg {
  width: 100%;
  height: 100%;
}
.ljlr--bulletin .ljlr__fill {
  inset: auto 0 4px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .85;
}
.ljlr--bulletin .ljlr__item:hover .ljlr__fill,
.ljlr--bulletin .ljlr__item:focus-visible .ljlr__fill {
  transform: scaleX(1);
}
.ljlr--bulletin .ljlr__item:hover .ljlr__title,
.ljlr--bulletin .ljlr__item:focus-visible .ljlr__title {
  transform: translateX(0);
  letter-spacing: -.02em;
}
.ljlr--bulletin .ljlr__item:hover .ljlr__arrow,
.ljlr--bulletin .ljlr__item:focus-visible .ljlr__arrow {
  transform: translate(4px, -4px) rotate(0deg);
  background: transparent;
}

/* Cards grid */
.ljlr--cards {
  padding: var(--ljlr-gap);
  background: var(--ljlr-bg);
}
.ljlr--cards .ljlr__item {
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: start;
  min-height: 280px;
  border: 1px solid var(--ljlr-border);
  border-radius: var(--ljlr-radius, 22px);
}
.ljlr--cards .ljlr__main {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.ljlr--cards .ljlr__description {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  align-self: end;
  max-width: 100%;
  margin-top: 60px;
}
.ljlr--cards .ljlr__arrow {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.ljlr--cards .ljlr__image {
  right: 24px;
  bottom: 24px;
  top: auto;
  width: min(var(--ljlr-img-w), calc(100% - 48px));
  height: min(var(--ljlr-img-h), 160px);
  transform: translateY(14px) rotate(-2deg) scale(.92);
}
.ljlr--cards .ljlr__item:hover .ljlr__image,
.ljlr--cards .ljlr__item:focus-visible .ljlr__image {
  transform: translateY(0) rotate(1deg) scale(1);
}
.ljlr--cards .ljlr__title {
  font-size: clamp(30px, 3.4vw, 58px);
}

/* Compact CTA */
.ljlr--compact {
  background: var(--ljlr-bg);
  border-radius: var(--ljlr-radius, 18px);
}
.ljlr--compact .ljlr__item {
  grid-template-columns: 1fr auto;
  min-height: 74px;
  border: 1px solid var(--ljlr-border);
  border-radius: var(--ljlr-radius, 18px);
}
.ljlr--compact .ljlr__description,
.ljlr--compact .ljlr__index,
.ljlr--compact .ljlr__eyebrow {
  display: none;
}
.ljlr--compact .ljlr__title {
  font-size: clamp(18px, 2.1vw, 32px);
  letter-spacing: -.04em;
}

@media (max-width: 1024px) {
  .ljlr {
    --ljlr-columns: 1;
  }
  .ljlr__item {
    grid-template-columns: minmax(0,1fr) auto;
    gap: 22px;
  }
  .ljlr__description {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .ljlr__image {
    right: 12%;
  }
}

@media (max-width: 767px) {
  .ljlr--flow-button {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ljlr--flow-button .ljlr__item {
    justify-content: space-between;
    width: 100%;
  }
  .ljlr__item {
    min-height: 92px;
    padding: calc(var(--ljlr-item-pt) * .78) calc(var(--ljlr-item-pr) * .72) calc(var(--ljlr-item-pb) * .78) calc(var(--ljlr-item-pl) * .72);
    grid-template-columns: minmax(0,1fr) auto;
  }
  .ljlr__main {
    gap: 12px;
  }
  .ljlr__index,
  .ljlr__icon {
    display: none;
  }
  .ljlr__arrow {
    --ljlr-arrow-size: 42px;
  }
  .ljlr__image {
    display: none;
  }
  .ljlr__title {
    font-size: clamp(28px, 11vw, 50px);
  }
  .ljlr__description {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ljlr *,
  .ljlr *::before,
  .ljlr *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

.ljlr--cols-1 { --ljlr-columns: 1; }
.ljlr--cols-2 { --ljlr-columns: 2; }
.ljlr--cols-3 { --ljlr-columns: 3; }
.ljlr--cols-4 { --ljlr-columns: 4; }
.ljlr--cols-5 { --ljlr-columns: 5; }
.ljlr--cols-6 { --ljlr-columns: 6; }


/* === V1.3 frontend hardening / Elementor compatibility === */
body .ljlr.ljlr {
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 1px;
}

body .ljlr.ljlr a.ljlr__item,
body a.ljlr__item.ljlr__item {
  text-decoration: none !important;
  color: var(--ljlr-title) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body .ljlr.ljlr .ljlr__main,
body .ljlr.ljlr .ljlr__text,
body .ljlr.ljlr .ljlr__description,
body .ljlr.ljlr .ljlr__arrow,
body .ljlr.ljlr .ljlr__index,
body .ljlr.ljlr .ljlr__eyebrow {
  visibility: visible !important;
}

body .ljlr.ljlr .ljlr__title {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  color: var(--ljlr-title) !important;
  max-width: 100%;
  isolation: isolate;
  contain: paint;
  text-decoration: none !important;
}

body .ljlr.ljlr .ljlr__title-main {
  display: block !important;
  position: relative !important;
  z-index: 2;
  color: inherit !important;
  transform: translate3d(0, 0, 0);
}

body .ljlr.ljlr .ljlr__title-clone {
  display: block !important;
  position: absolute !important;
  z-index: 1;
  left: 0 !important;
  top: 100% !important;
  width: 100% !important;
  color: inherit !important;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0);
  pointer-events: none !important;
}

body .ljlr.ljlr .ljlr__item:hover .ljlr__title,
body .ljlr.ljlr .ljlr__item:focus-visible .ljlr__title {
  color: var(--ljlr-title-hover) !important;
}

body .ljlr.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__title-main,
body .ljlr.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__title-main {
  transform: translate3d(0, -105%, 0) !important;
}

body .ljlr.ljlr--anim-constructum-flow .ljlr__item:hover .ljlr__title-clone,
body .ljlr.ljlr--anim-constructum-flow .ljlr__item:focus-visible .ljlr__title-clone {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, -100%, 0) !important;
}

body .ljlr.ljlr--anim-slide-fill .ljlr__title-clone,
body .ljlr.ljlr--anim-image-cursor .ljlr__title-clone,
body .ljlr.ljlr--anim-underline-arrow .ljlr__title-clone,
body .ljlr.ljlr--anim-magnetic .ljlr__title-clone,
body .ljlr.ljlr--anim-lift .ljlr__title-clone,
body .ljlr.ljlr--anim-none .ljlr__title-clone {
  display: none !important;
}

@supports not (color: color-mix(in srgb, #000 50%, transparent)) {
  .ljlr__item:hover .ljlr__description,
  .ljlr__item:focus-visible .ljlr__description {
    color: var(--ljlr-title-hover);
  }
  .ljlr__item:hover .ljlr__icon,
  .ljlr__item:focus-visible .ljlr__icon {
    border-color: var(--ljlr-title-hover);
  }
  .ljlr__item:hover .ljlr__arrow,
  .ljlr__item:focus-visible .ljlr__arrow {
    background: transparent;
  }
}

/* Better match for the Constructum-like flow rows */
body .ljlr.ljlr--constructum.ljlr--light,
body .ljlr.ljlr--constructum.ljlr--transparent {
  --ljlr-bg: #f4efe6;
  --ljlr-title: #050505;
  --ljlr-title-hover: #050505;
  --ljlr-desc: rgba(0,0,0,.62);
  --ljlr-meta: rgba(0,0,0,.46);
  --ljlr-border: rgba(0,0,0,.14);
  --ljlr-arrow-bg: transparent;
}

body .ljlr.ljlr--constructum .ljlr__item {
  grid-template-columns: minmax(90px, .18fr) minmax(0, 1fr) minmax(240px, .42fr) auto;
  gap: clamp(18px, 2.5vw, 42px);
}

body .ljlr.ljlr--constructum .ljlr__main {
  display: contents;
}

body .ljlr.ljlr--constructum .ljlr__index {
  grid-column: 1;
  align-self: center;
}

body .ljlr.ljlr--constructum .ljlr__text {
  grid-column: 2;
}

body .ljlr.ljlr--constructum .ljlr__description {
  grid-column: 3;
  justify-self: start;
}

body .ljlr.ljlr--constructum .ljlr__arrow {
  grid-column: 4;
}

@media (max-width: 1024px) {
  body .ljlr.ljlr--constructum .ljlr__item {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  body .ljlr.ljlr--constructum .ljlr__main {
    display: inline-flex;
  }
  body .ljlr.ljlr--constructum .ljlr__index,
  body .ljlr.ljlr--constructum .ljlr__text,
  body .ljlr.ljlr--constructum .ljlr__description,
  body .ljlr.ljlr--constructum .ljlr__arrow {
    grid-column: auto;
  }
  body .ljlr.ljlr--constructum .ljlr__description {
    grid-column: 1 / -1;
  }
}
