/* ===============================
   ABOUT PAGE — ESSAY LAYOUT
   =============================== */

.about-essay {
  background: var(--white);
  padding: 80px 20px;
}

.about-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text h1 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.about-text p {
  color: var(--soft-text);
  line-height: 1.9;
  margin-bottom: 1.4em;
  text-align: justify;
  font-size: 1.05rem;
}

.about-text strong {
  color: var(--dark-text);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 80%;
  }

  .about-text {
    text-align: left;
    margin-top: 20px;
  }

  .about-text h1 {
    text-align: center;
    font-size: 1.8rem;
  }
}
