.about {
  min-height: 100vh;
  padding: 160px 20px 120px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* PHOTO */

.about-photo {
  text-align: center;
}

.about-photo img {
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #38bdf8;
}

/* TEXT */

.about-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-text span {
  color: #38bdf8;
}

.about-text p {
  color: #9ca3af;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* INFO GRID */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 10px;
}

.about-card h4 {
  color: #38bdf8;
  margin-bottom: 5px;
}

/* RESPONSIVE */

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

  .about-grid {
    grid-template-columns: 1fr;
  }
}
