/**
 * Bio Page - Fairwood Brothers
 */

.fb-bio-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.fb-bio-card {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.fb-bio-card:last-child {
  margin-bottom: 0;
}

.fb-bio-img {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.fb-bio-info {
  flex: 1;
}

.fb-bio-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px 0;
}

.fb-bio-role {
  font-size: 0.9rem;
  color: #777;
  margin: 0 0 12px 0;
  font-style: italic;
}

.fb-bio-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.fb-bio-band {
  text-align: center;
  margin-top: 20px;
}

.fb-bio-band-img {
  width: 100%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

.fb-bio-band-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
}

@media (max-width: 600px) {
  .fb-bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .fb-bio-img {
    width: 160px;
    height: 160px;
  }
}
