/* V10.1 — About hero only. Loaded after styles.css to avoid browser cache conflicts. */
@media (min-width: 901px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(380px, 450px);
    gap: 34px;
    align-items: end;
  }

  .about-hero-copy {
    padding: 4px 0 38px;
  }

  .about-page-hero h1 {
    max-width: 760px;
  }

  .about-portrait {
    position: relative;
    min-height: 400px;
    height: 400px;
    overflow: hidden;
    display: block;
    background: transparent;
    border-left: 0;
  }

  .about-portrait img {
    position: absolute;
    top: 0;
    right: -5%;
    bottom: auto;
    width: 116%;
    max-width: none;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    display: block;
  }
}

@media (max-width: 900px) {
  .about-portrait {
    min-height: 330px;
    height: 330px;
    overflow: hidden;
    border-top: 3px solid var(--copper);
  }
  .about-portrait img {
    position: absolute;
    top: 0;
    right: -4%;
    bottom: auto;
    width: 112%;
    max-width: none;
    max-height: none;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .about-portrait {
    min-height: 280px;
    height: 280px;
  }
  .about-portrait img {
    right: -8%;
    width: 124%;
  }
}
