.lm-about-lifemate {
  --lm-about-bg: #ffffff;
  --lm-about-accent: #b58b54;
  --lm-about-title: #1f1c1a;
  --lm-about-text: #5a544f;
  --lm-about-stat-number: #b58b54;
  --lm-about-stat-label: #7a736c;
  --lm-about-link: #b58b54;
  background: var(--lm-about-bg);
  padding: 72px 0 84px;
  width: 100%;
  position: relative;
}

.wp-block-acf-lm-about-lifemate {
  margin-block: 0;
}

.lm-about-lifemate.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.wp-admin .lm-about-lifemate.alignfull,
.editor-styles-wrapper .lm-about-lifemate.alignfull,
.block-editor-block-list__layout .lm-about-lifemate.alignfull {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.lm-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}

.lm-about__content {
  max-width: 560px;
}

.lm-about__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lm-about-accent);
  margin-bottom: 12px;
}

.lm-about__title {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.15;
  color: var(--lm-about-title);
  font-family: var(--wd-title-font, inherit);
}

.lm-about__body {
  color: var(--lm-about-text);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.lm-about__body p {
  margin: 0 0 16px;
}

.lm-about__body p:last-child {
  margin-bottom: 0;
}

.lm-about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
  margin: 26px 0 22px;
}

.lm-about__stat-value {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--lm-about-stat-number);
  line-height: 1.1;
}

.lm-about__stat-label {
  font-size: 14px;
  color: var(--lm-about-stat-label);
  margin-top: 6px;
}

.lm-about__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lm-about-link);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lm-about__link-text {
  position: relative;
}

.lm-about__link-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.lm-about__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.22s ease;
}

.lm-about__link-icon i {
  font-size: 14px;
}

.lm-about__link:hover {
  transform: translateX(3px);
}

.lm-about__link:hover .lm-about__link-text::after {
  transform: scaleX(1);
}

.lm-about__link:hover .lm-about__link-icon {
  transform: translateX(2px);
}

.lm-about__media-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: #efe9e2;
  box-shadow: 0 18px 40px rgba(28, 22, 18, 0.18);
}

.lm-about__media-el {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lm-about__media {
  position: relative;
}

.lm-about__media-float {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f0ea;
  box-shadow: 0 16px 32px rgba(28, 22, 18, 0.18);
  animation: lm-about-breathe 6s ease-in-out infinite;
  z-index: 2;
}

.lm-about__media-float--top {
  width: clamp(140px, 18vw, 180px);
  aspect-ratio: 3 / 2;
  top: -52px;
  left: -72px;
  animation-delay: 0.4s;
}

.lm-about__media-float--bottom {
  width: clamp(180px, 22vw, 220px);
  aspect-ratio: 14 / 9;
  right: -18px;
  bottom: -68px;
  animation-delay: 1.2s;
}

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

@keyframes lm-about-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lm-about__media-float {
    animation: none;
  }
}

@media (max-width: 1024px) {
  .lm-about__inner {
    grid-template-columns: 1fr;
  }

  .lm-about__content {
    max-width: 100%;
  }

  .lm-about__media-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .lm-about__media-float--top {
    left: -36px;
  }

  .lm-about__media-float--bottom {
    right: -12px;
  }
}

@media (max-width: 640px) {
  .lm-about-lifemate {
    padding: 56px 0 64px;
  }

  .lm-about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-about__media {
    margin-top: 12px;
  }

  .lm-about__media-card {
    border-radius: 20px;
  }

  .lm-about__media-float--top {
    width: clamp(130px, 44vw, 180px);
    top: -32px;
    left: -14px;
  }

  .lm-about__media-float--bottom {
    width: clamp(160px, 50vw, 220px);
    right: -10px;
    bottom: -38px;
  }
}
