/* ─── Section ─── */

/* ─── Main text block ─── */
.about__text {
  margin-bottom: 5rem;
}
.about__headline {
  font-weight: var(--font-weight-light);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s ease forwards;
}
.about__headline em {
  font-style: italic;
  color: var(--color-red-500);
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem 6rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.28s ease forwards;
}
.about__body p {
  font-size: 1rem;
  font-weight: var(--font-weight-light);
  line-height: 1.9;
  color: var(--color-gray-600);
}
.about__body p:first-child {
  color: var(--color-gray-900);
}

/* ─── Stats row ─── */
.about__stats {
  /* border-top: 1px solid var(--color-gray-300);
  border-bottom: 1px solid var(--color-gray-300); */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  opacity: 0;
  animation: fadeUp 0.9s 0.42s ease forwards;
}
.stat {
  padding: 2.5rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat + .stat {
  /* border-left: 1px solid var(--color-gray-300); */
  padding-left: 2rem;
}
.stat__num {
  font-weight: var(--font-weight-light);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.stat:hover .stat__num {
  color: var(--color-red-500);
}
.stat__desc {
  font-size: 0.8rem;
  font-weight: var(--font-weight-light);
  color: var(--color-gray-600);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ─── CTA / Social row ─── */
.about__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.56s ease forwards;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about__podcast {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-gray-900);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: gap 0.3s;
}
.about__podcast:hover {
  gap: 1.5rem;
}
.about__podcast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-red-500);
  animation: pulse 2s ease-in-out infinite;
}
.about__social {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.about__social a {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.about__social a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gray-900);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.about__social a:hover {
  color: var(--color-gray-900);
}
.about__social a:hover::after {
  transform: scaleX(1);
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
  .about__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .about__stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat__desc {
    max-width: 14ch;
  }

  .stat + .stat {
    padding-left: 1.25rem;
  }
  .about__stats .stat:nth-child(odd) {
    border-left: none;
  }
}
