/* About section (index.html "Permanent Lighting, One Install For Every
   Season") — content moved into a left column with the quote button under
   the copy, stats shrunk into an inline divided row (reuses .about-4-stat's
   existing border-right divider, just at a smaller scale), and a photo with
   floating info pills added on the right. Pills use the same at_fade_anim
   scroll-reveal system already driving the rest of the section instead of
   bespoke JS. */
.about-4-proof__grid--compact {
  margin-top: 28px;
  margin-bottom: 32px;
  padding-bottom: 0;
}
.about-4-proof__grid--compact .about-4-stat {
  padding: 0 20px 0 0;
}
.about-4-proof__grid--compact .about-4-stat:not(:first-child) {
  padding-left: 20px;
}
.about-4-proof__grid--compact .about-4-stat__value {
  margin-bottom: 4px;
  font-size: clamp(20px, 2.2vw, 26px);
}
.about-4-proof__grid--compact .about-4-stat__label {
  max-width: 15ch;
  font-size: 12px;
  line-height: 1.35;
}

.about-4-photo {
  position: relative;
}
.about-4-photo__frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
}
.about-4-photo__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-4-photo:hover .about-4-photo__img {
  transform: scale(1.05);
}
.about-4-photo__pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background: rgba(12, 12, 12, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fefefe;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}
.about-4-photo__pill:hover {
  background: rgba(12, 12, 12, 0.85);
  transform: translateY(-3px);
}
.about-4-photo__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--at-theme-primary, #f0460e);
  flex-shrink: 0;
}
.about-4-photo__pill--1 {
  top: -22px;
  left: 24px;
}
.about-4-photo__pill--2 {
  bottom: -22px;
  right: 24px;
}
@media (max-width: 574.98px) {
  .about-4-photo__pill {
    padding: 9px 14px;
    font-size: 12px;
  }
  .about-4-photo__pill--1 {
    top: -18px;
    left: 16px;
  }
  .about-4-photo__pill--2 {
    bottom: -18px;
    right: 16px;
  }
}
