/* =========================
   ABOUT US SECTION
========================= */

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 10px;
}

.section-title {
  text-align: center;
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  margin-bottom: 10px;
}

.about-quote {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 70px;
  font-style: italic;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.about-animation {
  display: flex;
  justify-content: center;
}

.about-animation lottie-player {
  width: 100%;
  max-width: 420px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.about-content span {
  color: var(--pink);
  font-weight: 500;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-animation lottie-player {
    max-width: 320px;
    margin-bottom: 30px;
  }
}
/* Highlight "Us" in About Us */
.about .highlight {
  color: var(--pink);
}
