/*=================================================
  ABOUT PAGE
=================================================*/

.hero-section .hero-subtitle {
  max-width: 50ch;
  margin: 0 auto;
  color: var(--color-slate);
}

/* Force equal height columns for photo/bio section */
.section-band--plain .row {
  align-items: stretch !important;
}

.section-band--plain .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.profile-card {
  background: transparent;
  border: none;
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  box-shadow: none;
  height: 100%;
}

.profile-hero {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: var(--border-width) solid var(--border-color-card);
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.section-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section-card h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--weight-regular);
  margin-bottom: 0;
}

.section-content {
  display: grid;
  gap: var(--space-md);
}

.education-item,
.interest-card {
  border: var(--border-width) solid var(--color-silver);
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  padding: var(--card-padding);
}

.bio-panel {
  background: var(--color-white);
  border: var(--border-width) solid var(--border-color-card);
  border-radius: var(--border-radius-md);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio-title {
  margin-bottom: var(--space-md);
  color: var(--color-sage-dark);
  font-family: var(--font-family-heading);
  font-weight: var(--weight-regular);
}

.bio-text {
  margin-bottom: 0;
  color: rgba(39, 49, 52, 0.9);
  line-height: 1.7;
}

.education-entry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.education-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.education-details h4 {
  margin-bottom: 0.35rem;
}

.education-meta {
  display: grid;
  gap: 0.25rem;
  font-size: var(--font-size-xs);
  color: var(--color-slate);
}

.education-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.interest-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.interest-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--border-radius-md);
  flex-shrink: 0;
}

.interest-content h4 {
  margin-bottom: 0.35rem;
}

.interest-card p {
  margin: 0;
}

@media (max-width: 767px) {
  .education-entry,
  .interest-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .education-logo,
  .interest-img {
    width: 64px;
    height: 64px;
  }
}
