/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  padding: 80px 5%;
  background-color: var(--bg-offwhite);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%; /* Ensures it spans the flex container */
}

/* --- Content Column Styles --- */
.about-content {
  flex: 1.2;
  border-left: 1px solid rgba(168, 141, 62, 0.3);
  padding-left: 60px;
}

.eyebrow {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.about-content .section-title {
  color: var(--primary-navy);
  margin-top: 0;
  margin-bottom: 24px;
}

.lead-text {
  font-size: 1.1rem; /* Standardized to match the hero paragraph size */
  color: var(--primary-navy);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.body-text {
  font-size: 1.05rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.highlight-text {
  color: var(--primary-navy);
  font-weight: 600;
}

/* --- List Styling --- */
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlights li {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.check-icon {
  width: 22px;
  height: 22px;
  color: var(--secondary-gold);
  margin-right: 16px;
  flex-shrink: 0;
}

/* --- Image Column Styles --- */
.about-image-wrapper {
  flex: 1;
  position: relative;
  max-width: 450px;
}

.image-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(168, 141, 62, 0.15);
}

.profile-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */
@media (max-width: 900px) {
  .about {
    padding: 60px 5%;
    min-height: auto; /* On mobile, we let the content dictate the height so it doesn't stretch awkwardly */
  }

  .about-container {
    flex-direction: column;
    gap: 60px;
  }

  .about-image-wrapper {
    max-width: 90%;
    margin: 0 auto;
  }

  .about-content {
    text-align: center;
    border-left: none;
    border-top: 1px solid rgba(168, 141, 62, 0.3);
    padding-left: 0;
    padding-top: 50px;
  }

  .about-highlights {
    display: inline-block;
    text-align: left; /* Keeps the list readable while the container is centered */
  }
}
