


  #team-details-overlay {
    position: fixed;
    inset: 0;
    z-index: 1005;
    overflow: clip;
    --height: 100vh;
  }

  #team-details-overlay .background {
    position: absolute;
    inset: 0;
    background: var(--base-color-black);
    z-index: 1;
  }

  #team-details-overlay > .inner {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    height: var(--height);
  }

  #team-details-overlay > .inner > .wrap {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    height: var(--height);
  }

  #team-details-overlay .col-1 {
    width: 50%;
    position: relative;
    height: var(--height);
  }
  
  #team-details-overlay .col-1 img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  #team-details-overlay .col-2 {
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    overflow: auto;
    height: var(--height);
  }
  
  #team-details-overlay .copy-wrap {
    width: 72.222222222222222222%;
    color: var(--base-color-white);
    padding: 50px 0;
    margin: auto;
  }
  
  #team-details-overlay .headline {
    color: var(--base-color-yellow);
    margin-bottom: .46875em;
    padding-left: .4375em;
    --min-font-size: 2.25rem;
  }

  #team-details-overlay .headline .icon {
    padding-top: .5em;
    width: max(35px, .75em);
  }

  #team-details-overlay .headline .icon svg {
    display: block;
    width: 100%;
    height: auto;
    transform: rotate(90deg);
    position: relative;
  }

  #team-details-overlay .headline .icon svg path {
    fill: currentColor;
  }


  
  
  
  
  
  
  
  @media (max-width: 600px) {
    
    #team-details-overlay > .inner > .wrap {
      display: block;
      overflow: auto;
    }
    
    #team-details-overlay .col-1 {
      width: 100%;
      height: auto;
    }
    
    #team-details-overlay .col-1 img {
      position: static;
      height: auto;
      aspect-ratio: 1 / 1 !important;
    }
    
    #team-details-overlay .col-2 {
      width: 100%;
      height: auto;
      overflow: hidden;
      display: block;
      box-sizing: border-box;
      padding: var(--page-padding-left );
    }
    
    #team-details-overlay .copy-wrap {
      width: 100%;
      max-width: 430px;
      padding-top: 75px;
    }
    
    #team-details-overlay .headline {
      padding-left: 0;
      margin-bottom: 22px;
      position: relative;
    }
    
    #team-details-overlay .headline.spanned > span:not(.icon) {
      display: inline;
    }
    
    #team-details-overlay .headline .icon {
      position: absolute;
      left: 0;
      bottom: calc(100% + 15px);
    }
    
  }
  
  
  
  
  
  
