/* ============================================================
   MARYAM RAFIEE — ABOUT PAGE (about.html) STYLES
   Loaded together with base.css.
   ============================================================ */

.about-section { padding: 5rem 2rem; }
.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 340px 1fr;
  gap: 5rem; align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 60%; height: 40%;
  border: 2px solid var(--sand-mid); border-radius: 4px; z-index: 0;
}
.about-photo { position: relative; z-index: 1; width: 100%; border-radius: 6px; display: block; }
.about-content p { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.25rem; }
.about-content p strong { color: var(--text-dark); font-weight: 700; }
.about-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo-wrap::after { display: none; }
  .about-photo { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .about-section { padding: 3rem 1.25rem; }
}
