.about {
  padding: 120px 24px;
  color: var(--text);
}

.about-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;

  align-items: center;
}

/* IMAGE */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 640px;
  height: auto;

  object-fit: cover;

  border-radius: 24px;

  background: transparent;
  border: none;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}


/* TEXT */
.about-text .tag {
  font-size: 12px;
  opacity: 0.6;
}

.about-text h2 {
  font-size: 38px;
  margin: 10px 0 20px 0;
}

.about-text p {
  font-size: 15px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.about-stats div {
  display: flex;
  flex-direction: column;
}

.about-stats strong {
  font-size: 16px;
}

.about-stats span {
  font-size: 12px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-text h2 {
    font-size: 30px;
  }
}