/**
 * @file
 * Biography Personal Information Box
 * 
 * Classic SAHO styling for Personal Information section.
 */

/* Personal Information Box - Classic SAHO Style */
.saho-personal-info-box {
  background: #fefdf8;
  border: 2px solid #d4a574;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  max-width: 100%;
}

.saho-personal-info-box h3 {
  color: #900;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d4a574;
}

/* Full name display - larger, prominent */
.saho-bio-fullname {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Information rows - simple, clean layout */
.saho-bio-info-row {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
}

.saho-bio-info-row:last-child {
  margin-bottom: 0;
}

.saho-bio-info-row strong {
  color: #900;
  font-weight: 600;
  display: inline-block;
  min-width: 75px;
  margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .saho-personal-info-box {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }

  .saho-personal-info-box h3 {
    font-size: 1rem;
  }

  .saho-bio-fullname {
    font-size: 1rem;
  }

  .saho-bio-info-row {
    font-size: 0.9rem;
  }

  .saho-bio-info-row strong {
    min-width: 70px;
  }
}

@media (max-width: 480px) {
  .saho-personal-info-box {
    padding: 1rem;
    margin: 1rem 0;
  }

  .saho-bio-info-row {
    font-size: 0.875rem;
  }

  .saho-bio-info-row strong {
    display: block;
    margin-bottom: 0.25rem;
    min-width: auto;
  }
}