@charset "utf-8";
/* CSS Document */


.showBio {
  cursor: pointer;
}          

/*+  ///  -----  HOF BIO PAGE  -----  ///  */
.bioCon {
  display: flex;
  flex-direction: column;
  color: white;
  width: min(50rem, 65svw);
  height: auto;
  max-height: 80svh;
  overflow-x: hidden;
  overflow-y: auto;
  background: linear-gradient(to bottom, #323232 0%, #3F3F3F 40%, #1C1C1C 150%), linear-gradient(to top, rgba(255,255,255,0.40) 0%, rgba(0,0,0,0.25) 200%);
  background-blend-mode: multiply;
  padding-inline: 2rem;
  padding-block: 2rem;

  p {margin-block-end: .625rem;}
}

/*/ HEADER - old css
.bioCon header {
  display: flex;
  align-items: end;
  gap: 1rem;
  border-bottom: 1.5px solid hsl(39, 39%, 61%);
  padding-block-end: 1rem;
  padding-inline: 1rem;
} 
 TEXT HEADER -old css
.bioCon header .textHeader {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: fit-content;
} 
.bioCon header {
  display: flex;
  align-items: end;
  gap: 1rem;
  border-bottom: 1.5px solid hsl(39, 39%, 61%);
  padding-block-end: 1rem;
  padding-inline: 1rem;
}*/

/**  ///  HEADER  ///  */
.bioCon header.textHeader  {
  display: grid;
  grid-template-areas: "img h2"
  "img h1";
  grid-template-columns: 6.25rem 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1rem;
  width: 100%;
  height: fit-content;
  border-bottom: 1.5px solid hsl(39, 39%, 61%);
  padding-block-end: 1rem;
  padding-inline: 1rem;

  @media(max-width: 768px) {
    grid-template-areas: "img h2"
    "h1 h1";
  }
}
.bioCon header.textHeader img {
  grid-area: img;
  align-self: center;
}

.bioCon h2 {
  grid-area: h2;
  font-family:'Times New Roman', Times, serif;
  font-size: clamp(1.5rem, 1.5vw + 5px, 2rem);
  color: hsl(39, 39%, 61%);
  align-self: start;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.bioCon h1 {
  grid-area: h1;
  font-family:'Times New Roman', Times, serif;
  align-self: end;
  font-size: clamp(2.25rem, 2vw + 5px, 2.875rem);
  font-weight: normal;
  font-variant: small-caps;
  background-image: none;
  background-color: unset;
  border: none;
  
  small {
    font-size: .6em;
    font-variant: small-caps;
  }
}


/** MAIN | BIO */
main h3:empty {display: none;}
main h3 {
  font-size: var(--fz-h2);
  /* font-size: clamp(1.25rem, 1.2vw + 5px, 1.5rem); */
  margin-block: 1.25rem .625rem;
}
main h3 sup {font-size: 0.6em;}
main h4 {
  font-size: var(--fz-h3);
  /* font-size: clamp(1.125rem, 1.2vw + 5px, 1.25rem); */
  font-weight: normal;
  color: inherit;
  text-transform: uppercase;
  margin-block: 2rem 1rem;
}
main p {
  line-height: 1.5;
  margin-block: .625rem;
}
main p.h4p {margin-top: 0.5rem;}

/** ============*/
/** J WILLS CSS */
/** ============*/

.inducteeBlock span {
  display: block;
  text-align: center;
}
.inducteeGrid img {
  cursor: pointer;
}
.inducteeGrid .loader {
  left: 35%;
}
#biolog {
  min-width: 200px;
  min-height: 200px;
  background-color: rgba(70, 70, 70, 1);
  border: none!important;
}

#biolog .bioCon {
  z-index: 5;
}

.closeBio {
  position: absolute;
  z-index: 10;
  right: 40px;
  font-size: 3rem;
  cursor: pointer;
  color: white;
}

.modalContainer {
  position: relative;
  inset: 0;
}

dialog::backdrop {
  background-color: rgb(60, 63, 68, .75);
  backdrop-filter: blur(3px);
}
