@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
  background: #fff;
  color: #000;
  
}
.item {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  
  .image {
    padding: 1em 2em;
    
    > div {
      position: relative;
      text-align: center;
      font-size: 0.8em;

      &::after {
        content: '';
        width: 100%;
        height: 0;
        border-bottom: 1px solid #008CBA;
        position: absolute;
        top: 2.75em;
        left: 2.5em;
        z-index: -1;
      }
    }
    
    img {
      border-radius: 50%;
      height: 5em;
      border: 0.2em solid #008CBA;
    }
    span {
      display: block;
      clear: both;
      padding: 0.25em 0;
      margin: 0.5em 0;
      background: #fff;
    }
  }
  
  .details {
    position: relative;
    flex-grow: 1;

    > div {
      border: 1px solid #008CBA;
      border-radius: 0.5em;
      padding: 1.5em;
      margin: 1em 0;
      
      h1 {
        color: #008CBA;
        font-size: 1.3em;
        margin: 0;
        padding: 0 0 0.1em 0;
/*      letter-spacing: 0.1em;  */
      }
      
      p {
        margin: 0;
        padding: 0;
        line-height: 150%;
      }
    }

    &::before {
      content: '';
      width: 0;
      height: 100%;
      border-left: 1px solid #008CBA;
      position: absolute;
      top: 0;
      left: -4em;
      z-index: -1;
    }
    
  }
  
}