/* Left-aligned, compact header */
.page-header {
  text-align: left;
  margin-top: 10px; /* less vertical gap */
  margin-bottom: 16px;
  padding-left: 12px;
}

/* Full-width about section */
.about-full {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fdfcfb;
  display: flex;
  justify-content: center;
  padding: 40px 20px 60px; /* smaller top/bottom padding */
  min-height: calc(100vh - 220px); /* fits header + card */
}

/* Keep the about card near top of screen */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  align-items: stretch;
  max-width: 1050px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(30, 30, 30, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  animation: fadeUp 0.7s ease forwards;
  margin-top: 0; /* no vertical centering offset */
}

/* Profile photo */
.about-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #faf9f8;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.about-content {
  padding: 40px 60px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 340px;
  }

  .about-content {
    padding: 28px 24px;
  }
}
