/* Shared bio header across Park-* venue pages */
.bio-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "img name" "img links";
  gap: 0 16px;
  padding: 10px 12px;
  position: relative;
  overflow: visible;
  align-items: start;
  align-content: start;
}

.bio-imgwrap {
  grid-area: img;
  width: 100px;
  height: 100%;
  background: #ededed;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  align-self: stretch;
  padding: 0;
}

.bio-imgwrap img {
  display: block;
  width: 112%;
  height: 112%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.bio-text { display: contents; line-height: 1; }

.bio-teamline { grid-area: team; align-self: start; margin: 0; }
.bio-team { font-size: 18px; font-weight: 700; line-height: 1.1; }

h2.bio-name,
.bio-name {
  grid-area: name;
  align-self: start;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.venue-name-full { display: inline; }
.venue-name-short { display: none; }

.bio-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin: -3px 0 0;
  padding: 0;
  color: inherit;
  align-self: start;
  position: relative;
  top: 6px;
}

.bio-links a {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
  font-size: 14px;
}

.bio-links a:hover { text-decoration: underline; opacity: .9; }
.bio-links a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 4px;
}

.bio-dd {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  color: inherit;
  line-height: 1;
}

.bio-dd .chev {
  width: 12px;
  height: 12px;
  opacity: .7;
  transform: translateY(1px);
}

@media (min-width: 900px) {
  .bio-team { font-size: 20px; }
  h2.bio-name,
  .bio-name { font-size: 30px; font-weight: 700; }
}

@media (max-width: 800px) {
  .venue-name-full { display: none; }
  .venue-name-short { display: inline; }

  .bio-card {
    grid-template-columns: 52px 1fr;
    column-gap: 10px;
    row-gap: 0;
    padding: 6px 10px;
  }

  .bio-imgwrap {
    width: 52px;
    height: auto;
    align-self: stretch;
  }

  .bio-imgwrap img {
    width: 115%;
    height: 115%;
  }

  .bio-team { font-size: 15px; line-height: 1; }
  h2.bio-name,
  .bio-name { line-height: 1; margin: 0; }
  .bio-links {
    align-self: start;
    gap: 2px 10px;
    margin: -2px 0 0;
    top: 4px;
  }
  .bio-links a { line-height: 1; font-size: 8px; }
  .bio-dd {
    display: inline-flex;
    flex-wrap: wrap;
    white-space: normal;
    max-width: 100%;
  }
  .bio-dd span { min-width: 0; flex: 1 1 auto; }
  .bio-teamline,
  h2.bio-name,
  .bio-name,
  .bio-links { min-width: 0; }
  body { overflow-x: hidden; }
}

@media (max-width: 400px) {
  .bio-team { font-size: 17px; }
  h2.bio-name,
  .bio-name { font-size: 24px; }
}
