/* =========================
   ABOUT PAGE
========================= */

.about-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

/* =========================
   HERO SECTION
========================= */

.about-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.about-hero img {
  width: 220px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

/* =========================
   BODY COPY
========================= */

.about-body {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
}

.about-body p {
  margin-bottom: 1.5rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* =========================
   CONTACT SECTION
========================= */

.about-contact {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  opacity: 0.75;
}

.about-contact a {
  color: var(--link);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-contact a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .about-page {
    padding: 2rem 1.2rem 3rem;
  }

  .about-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .about-hero img {
    width: 200px;
    height: 250px;
  }

  .about-body {
    max-width: 100%;
    text-align: left;
  }
}