/* About — Profile Feature Page */

.profile-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-black);
}

.profile-hero__image {
  position: absolute;
  inset: 0;
}

.profile-hero__image img,
.profile-hero__image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.profile-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    transparent 70%
  );
}

.profile-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-lg);
}

.profile-hero__label {
  font-family: var(--font-secondary);
  font-size: var(--text-overline);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.profile-hero__name {
  font-family: var(--font-display);
  font-size: var(--text-display);
  color: var(--color-paper);
  line-height: 0.9;
  margin-bottom: var(--space-md);
}

.profile-hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  color: var(--gray-300);
  font-style: italic;
  max-width: 45ch;
}

/* Profile body */
.profile-body {
  background: var(--color-paper);
  padding: var(--space-2xl) 0;
}

.profile-body .editorial-grid {
  row-gap: var(--space-xl);
}

.profile-body p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.8;
  color: var(--gray-800);
}

.profile-body p + p {
  margin-top: 1.75em;
}

/* Facts sidebar / info box */
.profile-facts {
  background: var(--gray-50);
  border-left: 1px solid var(--color-accent);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.profile-facts h3 {
  font-family: var(--font-secondary);
  font-size: var(--text-overline);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: var(--space-md);
}

.profile-facts dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xs) var(--space-md);
}

.profile-facts dt {
  font-family: var(--font-secondary);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-facts dd {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--gray-700);
}

/* Wide images in profile */
.profile-body .image-wide {
  grid-column: wide;
  margin: var(--space-xl) 0;
  overflow: hidden;
}

.profile-body .image-full {
  grid-column: full;
  margin: var(--space-xl) 0;
  overflow: hidden;
}

.profile-body .image-wide img,
.profile-body .image-full img,
.profile-body .image-wide .placeholder-img,
.profile-body .image-full .placeholder-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Contact sign-off */
.profile-signoff {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.profile-signoff p {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.profile-signoff a {
  font-family: var(--font-body);
  font-size: var(--text-h3);
  color: var(--color-accent);
  font-style: italic;
  transition: color var(--duration-fast) ease;
}

.profile-signoff a:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 768px) {
  .profile-hero__name {
    font-size: var(--text-display-sm);
  }

  .profile-hero__content {
    padding: var(--space-xl) var(--space-md);
  }

  .profile-facts dl {
    grid-template-columns: 1fr;
  }
}
