/**
 * LITALEX Blocks — front-end styles
 * Uses theme CSS variables when available, with safe fallbacks.
 */

.lx-block {
  --lx-accent: var(--accent, #f0d060);
  --lx-text: var(--text, #1c1915);
  --lx-muted: var(--text-muted, #5c564c);
  --lx-bg: var(--bg, #ffffff);
  --lx-elevated: var(--bg-elevated, #ffffff);
  --lx-border: var(--border, rgba(28, 25, 21, 0.12));
  --lx-font-display: var(--font-display, "Space Grotesk", system-ui, sans-serif);
  --lx-font-body: var(--font-body, "Source Sans 3", system-ui, sans-serif);
  margin-block: 2.5rem;
}

html[data-theme="dark"] .lx-block {
  --lx-text: var(--text, #f2eee7);
  --lx-muted: var(--text-muted, #b0a89c);
  --lx-bg: var(--bg, #0e0d0b);
  --lx-elevated: var(--bg-elevated, #171511);
  --lx-border: var(--border, rgba(242, 238, 231, 0.12));
  --lx-accent: var(--accent, #d4a84b);
}

.lx-container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.lx-section-title {
  margin: 0 0 0.75rem;
  font-family: var(--lx-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--lx-text);
}

.lx-lead,
.lx-muted {
  color: var(--lx-muted);
  max-width: 40rem;
}

.lx-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--lx-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lx-accent);
}

.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  font-family: var(--lx-font-display);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.lx-btn--primary {
  background: var(--lx-accent);
  color: #15120e;
}

.lx-btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.lx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.lx-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .lx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .lx-grid {
    grid-template-columns: repeat(var(--lx-cols, 3), minmax(0, 1fr));
  }
}

/* Hero / carousel media */
.lx-hero,
.lx-carousel {
  position: relative;
  min-height: var(--lx-hero-min-height, 70vh);
  overflow: hidden;
  color: #f5f1ea;
  background: #0e0d0b;
  margin-block: 0;
}

.lx-carousel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lx-carousel__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lx-carousel--has-bg {
  background: #0e0d0b;
}

.lx-carousel--has-bg .lx-hero__fallback {
  display: none;
}


.lx-hero {
  display: grid;
  align-items: end;
}

.lx-carousel {
  display: block;
}

.lx-hero__media,
.lx-carousel__media {
  position: absolute;
  inset: 0;
}

.lx-hero__image,
.lx-hero__video,
.lx-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lx-hero__fallback {
  background:
    radial-gradient(circle at 70% 30%, rgba(212, 168, 75, 0.35), transparent 42%),
    linear-gradient(160deg, #2a241c, #0e0d0b 60%);
}

.lx-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, var(--lx-overlay, 0.45));
}

.lx-hero__content,
.lx-carousel__inner {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem 3rem;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.lx-carousel--align-center .lx-carousel__slide {
  align-items: center;
}

.lx-carousel--align-center .lx-carousel__inner {
  padding-block: 2.25rem 2.75rem;
}

.lx-carousel--align-end .lx-carousel__slide {
  align-items: end;
}

.lx-carousel--align-end .lx-carousel__inner {
  padding-block: 3rem 3.5rem;
}

.lx-carousel--hero {
  min-height: var(--lx-hero-min-height, clamp(280px, 42vh, 440px));
}

.lx-carousel--hero .lx-hero__title {
  max-width: 14ch;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
}

.lx-carousel--hero .lx-carousel__inner {
  padding-block: 2.25rem 2.75rem;
}

.lx-hero__title {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-family: var(--lx-font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lx-hero__subtitle {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: rgba(245, 241, 234, 0.84);
  font-size: 1.1rem;
}

.lx-carousel__slide.is-active.is-animate-fade .lx-carousel__inner,
.lx-carousel__slide.is-active.is-animate-rise .lx-carousel__inner {
  animation: lx-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lx-carousel.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@keyframes lx-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Carousel track: only one slide visible at a time */
.lx-carousel__track {
  position: relative;
  z-index: 1;
  min-height: inherit;
  height: 100%;
}

.lx-carousel__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 500ms ease, visibility 500ms ease;
  z-index: 0;
}

.lx-carousel__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.lx-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.lx-carousel__nav:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: var(--lx-accent);
}

.lx-carousel__nav--prev { left: 1rem; }
.lx-carousel__nav--next { right: 1rem; }

.lx-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.lx-carousel__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.lx-carousel__dot.is-active {
  background: var(--lx-accent);
}

/* Banner / CTA */
.lx-banner {
  background: color-mix(in srgb, var(--lx-accent) 16%, var(--lx-elevated));
  border-block: 1px solid var(--lx-border);
  padding-block: 1.35rem;
}

.lx-banner.is-tone-dark {
  background: var(--bg-muted, #f4f4f2);
  color: var(--lx-text);
  border-block: 1px solid var(--lx-border);
}

html[data-theme="dark"] .lx-banner.is-tone-dark {
  background: #171511;
  color: #f2eee7;
  border-block-color: rgba(255, 255, 255, 0.08);
}

.lx-banner.is-tone-muted {
  background: var(--lx-elevated);
}

.lx-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.lx-banner__title {
  margin: 0;
  font-family: var(--lx-font-display);
  font-weight: 650;
}

.lx-banner__text {
  margin: 0.25rem 0 0;
  color: var(--lx-muted);
}

.lx-cta__inner {
  padding: 2.5rem;
  border: 1px solid var(--lx-border);
  background: var(--lx-elevated);
}

.lx-cta.is-tone-dark {
  margin-block: 0;
  background: var(--bg-muted, #f4f4f2);
  color: var(--lx-text);
  border-block: 1px solid var(--lx-border);
}

.lx-cta.is-tone-dark .lx-cta__inner {
  background: transparent;
  border: 0;
  padding-block: 3.25rem;
  text-align: center;
}

.lx-cta.is-tone-dark .lx-section-title {
  color: var(--lx-text);
  max-width: 18ch;
  margin-inline: auto;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.lx-cta.is-tone-dark .lx-lead {
  color: var(--lx-muted);
  margin-inline: auto;
}

.lx-cta.is-tone-dark .lx-actions {
  justify-content: center;
}

html[data-theme="dark"] .lx-cta.is-tone-dark {
  background: #12100e;
  color: #f5f1ea;
  border-block-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .lx-cta.is-tone-dark .lx-section-title {
  color: #f5f1ea;
}

html[data-theme="dark"] .lx-cta.is-tone-dark .lx-lead {
  color: rgba(245, 241, 234, 0.78);
}

.lx-cta.is-tone-accent .lx-cta__inner {
  background: color-mix(in srgb, var(--lx-accent) 18%, var(--lx-elevated));
}

.lx-cta.is-tone-muted .lx-cta__inner {
  background: var(--lx-surface, var(--lx-elevated));
}

/* Numbered steps (Factory pillars) */
.lx-steps__grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  counter-reset: none;
}

.lx-steps__item {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--lx-border);
}

.lx-steps__num {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--lx-font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--lx-accent);
  font-weight: 650;
}

.lx-steps__item-title {
  margin: 0 0 0.55rem;
  font-family: var(--lx-font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.lx-steps__item-text {
  margin: 0;
  color: var(--lx-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Split section */
.lx-split {
  margin-block: 0;
  background: var(--lx-bg, transparent);
}

.lx-split.is-tone-dark {
  background: var(--bg-muted, #f4f4f2);
  color: var(--lx-text);
}

html[data-theme="dark"] .lx-split.is-tone-dark {
  background: #12100e;
  color: #f5f1ea;
}

.lx-split.is-tone-muted {
  background: var(--bg-muted, #f4f4f2);
}

html[data-theme="dark"] .lx-split.is-tone-muted {
  background: var(--lx-elevated);
}

.lx-split__inner {
  display: grid;
  min-height: min(52vh, 28rem);
}

@media (min-width: 900px) {
  .lx-split__inner {
    grid-template-columns: 1fr 1fr;
  }

  .lx-split--media-left .lx-split__media {
    order: -1;
  }
}

.lx-split__content {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.lx-split__title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--lx-font-display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lx-split.is-tone-dark .lx-split__title {
  color: var(--lx-text);
}

html[data-theme="dark"] .lx-split.is-tone-dark .lx-split__title {
  color: #f5f1ea;
}

.lx-split__text {
  margin: 0;
  max-width: 36rem;
  color: var(--lx-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lx-split.is-tone-dark .lx-split__text {
  color: var(--lx-muted);
}

html[data-theme="dark"] .lx-split.is-tone-dark .lx-split__text {
  color: rgba(245, 241, 234, 0.78);
}

.lx-split__media {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
}

.lx-split__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 900px) {
  .lx-split__media,
  .lx-split__image {
    min-height: 100%;
  }
}

.lx-split__placeholder {
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 40%, rgba(184, 137, 42, 0.16), transparent 45%),
    linear-gradient(145deg, #eceae6 0%, #f7f6f4 55%, #e4e1db 100%);
  color: var(--lx-muted);
  font-family: var(--lx-font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

html[data-theme="dark"] .lx-split__placeholder {
  background:
    radial-gradient(circle at 30% 40%, rgba(212, 168, 75, 0.28), transparent 45%),
    linear-gradient(145deg, #2c261d 0%, #0f0e0c 55%, #1a1712 100%);
  color: rgba(245, 241, 234, 0.55);
}

/* Features / cards */
.lx-feature,
.lx-card {
  min-width: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--lx-border);
  border-radius: 0;
  padding: 1.35rem 0 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.lx-card:hover {
  color: var(--lx-accent);
}

.lx-card:hover .lx-card__text {
  color: var(--lx-muted);
}

.lx-feature__icon {
  font-size: 1.35rem;
  color: var(--lx-accent);
  margin-bottom: 0.65rem;
}

.lx-feature__title,
.lx-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--lx-font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.lx-feature__text,
.lx-card__text {
  margin: 0;
  color: var(--lx-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.lx-card__body {
  min-width: 0;
}

.lx-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0.85rem;
}

/* Accordion / FAQ */
.lx-accordion__list {
  display: grid;
  gap: 0.5rem;
}

.lx-accordion__item {
  border: 1px solid var(--lx-border);
  background: var(--lx-elevated);
}

.lx-accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--lx-text);
  font-family: var(--lx-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.lx-accordion__panel {
  padding: 0 1.15rem 1.1rem;
  color: var(--lx-muted);
}

/* Stats / timeline / quotes */
.lx-stats__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
}

.lx-stat__value {
  margin: 0;
  font-family: var(--lx-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--lx-accent);
  letter-spacing: -0.03em;
}

.lx-stat__label {
  margin: 0.25rem 0 0;
  color: var(--lx-muted);
}

.lx-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  border-left: 2px solid var(--lx-border);
}

.lx-timeline__item {
  position: relative;
  padding-left: 1.35rem;
}

.lx-timeline__item::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--lx-accent);
}

.lx-timeline__year {
  margin: 0;
  color: var(--lx-accent);
  font-family: var(--lx-font-display);
  font-weight: 650;
}

.lx-timeline__title {
  margin: 0.2rem 0;
  font-family: var(--lx-font-display);
}

.lx-quote {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--lx-border);
  background: var(--lx-elevated);
}

.lx-quote__text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.lx-quote__name {
  font-style: normal;
  font-weight: 650;
}

.lx-quote__role {
  display: block;
  color: var(--lx-muted);
  font-size: 0.9rem;
}

/* Contact / downloads / icons */
.lx-contact__companies {
  display: grid;
  gap: 1.5rem;
  margin: 1.75rem 0 2.25rem;
}

@media (min-width: 860px) {
  .lx-contact__companies {
    grid-template-columns: 1fr 1fr;
  }
}

.lx-contact__company {
  padding-top: 1rem;
  border-top: 1px solid var(--lx-border);
}

.lx-contact__company-title {
  margin: 0 0 0.65rem;
  font-family: var(--lx-font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--highlight, var(--chemie, #1d5599));
}

.lx-contact__company--chemie .lx-contact__company-title {
  color: var(--highlight, var(--chemie, #1d5599));
}

.lx-contact__company-meta {
  margin: 0 0 0.75rem;
  color: var(--lx-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.lx-btn--highlight {
  border-color: var(--highlight, #1d5599) !important;
  color: var(--highlight, #1d5599) !important;
}

.lx-btn--primary {
  color: #1c1915;
}

.lx-contact__company-text {
  margin: 0 0 0.75rem;
  color: var(--lx-muted);
  line-height: 1.55;
}

.lx-contact__company-text a {
  color: inherit;
}

.lx-contact__map {
  margin: 0 0 2.25rem;
}

.lx-contact__map-title {
  margin: 0 0 1rem;
  font-family: var(--lx-font-display);
  font-size: 1.35rem;
}

.lx-map {
  overflow: hidden;
  border: 1px solid var(--lx-border);
  border-radius: 0.5rem;
  background: var(--lx-elevated, var(--bg-elevated, #fff));
}

.lx-map__frame {
  position: relative;
  width: 100%;
  min-height: 16rem;
  aspect-ratio: 16 / 9;
  max-height: 26rem;
}

.lx-map__frame[hidden] {
  display: none !important;
}

.lx-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
}

.lx-map__placeholder {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.75rem;
  min-height: 16rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: var(--bg-muted, #f4f4f2);
}

.lx-map__placeholder[hidden] {
  display: none !important;
}

.lx-map__placeholder-title {
  margin: 0;
  font-family: var(--lx-font-display);
  font-weight: 600;
  color: var(--lx-text, var(--text));
}

.lx-map__placeholder-text {
  margin: 0;
  max-width: 36rem;
  color: var(--lx-muted, var(--text-muted));
  font-size: 0.95rem;
  line-height: 1.5;
}

.lx-map__placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.lx-map__placeholder-legal {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
}

.lx-map__placeholder-legal a {
  color: var(--highlight, #1d5599);
}

.lx-map__address {
  margin: 0.85rem 0 0;
  color: var(--lx-muted, var(--text-muted));
  font-size: 0.95rem;
  line-height: 1.5;
}

.lx-map__address strong {
  color: var(--lx-text, var(--text));
  font-weight: 600;
}

.lx-contact__form-wrap {
  margin-top: 0.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--lx-border);
}

.lx-contact__form-title {
  margin: 0 0 1rem;
  font-family: var(--lx-font-display);
  font-size: 1.35rem;
}

.lx-contact__form-grid {
  display: grid;
  gap: 0.85rem 1rem;
}

@media (min-width: 700px) {
  .lx-contact__form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lx-field--full {
    grid-column: 1 / -1;
  }
}

.lx-contact__notice {
  padding: 0.9rem 1rem;
  margin: 0 0 1.25rem;
  border: 1px solid var(--lx-border);
}

.lx-contact__notice--ok {
  border-color: color-mix(in srgb, #2f7d4a 45%, var(--lx-border));
  background: color-mix(in srgb, #2f7d4a 12%, transparent);
}

.lx-contact__notice--err {
  border-color: color-mix(in srgb, #b42318 45%, var(--lx-border));
  background: color-mix(in srgb, #b42318 10%, transparent);
}

.lx-contact__legal {
  margin: 0 0 1rem;
  color: var(--lx-muted);
  font-size: 0.85rem;
}

.lx-field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.lx-field input,
.lx-field textarea,
.lx-field select {
  width: 100%;
  border: 1px solid var(--lx-border);
  background: var(--lx-bg);
  color: var(--lx-text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.lx-downloads__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.lx-downloads__link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--lx-border);
  background: var(--lx-elevated);
  color: inherit;
  text-decoration: none;
}

.lx-downloads__meta {
  color: var(--lx-muted);
  font-size: 0.9rem;
}

.lx-icons__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.lx-icons__item {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  min-width: 5.5rem;
}

/* Team */
.lx-team__member {
  padding-top: 0.25rem;
}

.lx-team__photo {
  aspect-ratio: 1 / 1;
  margin-bottom: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 30%, rgba(184, 137, 42, 0.14), transparent 50%),
    linear-gradient(160deg, #eceae6, #f7f6f4);
  display: grid;
  place-items: center;
}

html[data-theme="dark"] .lx-team__photo {
  background:
    radial-gradient(circle at 40% 30%, rgba(212, 168, 75, 0.22), transparent 50%),
    linear-gradient(160deg, #2a241c, #12100e);
}

.lx-team__placeholder {
  font-family: var(--lx-font-display);
  font-size: 2.5rem;
  color: var(--lx-muted);
  letter-spacing: -0.03em;
}

html[data-theme="dark"] .lx-team__placeholder {
  color: rgba(245, 241, 234, 0.55);
}

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

.lx-team__name {
  margin: 0 0 0.25rem;
  font-family: var(--lx-font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lx-team__role {
  margin: 0 0 0.55rem;
  color: var(--lx-accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.lx-team__bio {
  margin: 0;
  color: var(--lx-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}


.lx-icons__glyph {
  font-size: 1.5rem;
  color: var(--lx-accent);
}

.lx-icons__label {
  font-size: 0.9rem;
  color: var(--lx-muted);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .lx-hero.is-animate-fade .lx-hero__content,
  .lx-hero.is-animate-rise .lx-hero__content {
    animation: none;
  }
}
