
.interview {
    margin-bottom: 32px;
    margin-top: 32px;
}
  
.interview .container {
    background-color: #2E3C45;
    padding: 20px 16px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
  
.interview__img-wrapper, .interview__content {
    position: relative;
    z-index: 2;
}
  
.interview__img {
    width: 100px !important;
    height: 100px !important;
}
  
.interview__header {
    display: flex;
    align-items: center;
    gap: 16px;
}
  
.interview__header-content {
    display: flex;
    gap: 4px;
    flex-direction: column;
}
  
.interview__name {
    font-family: 'Stengazeta', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}
  
  .interview__position {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
  }
  
  .interview__content {
    display: flex;
    gap: 16px;
    flex-direction: column;
  }
  
  .interview__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 12px !important;
    margin: 0 !important;
    border-left: 2px solid #647E8F;
  }
  
  .interview__list-item {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    font-size: 16px !important;
    line-height: 150% !important;
    margin-top: 0 !important;
    color: #fff;
    padding-left: 0 !important;
  }

  .interview__list-item::before {
    display: none !important;
  }
  
  .interview__link {
    width: 100% !important;
    background-color: #fff !important;
    color: #2E3C45 !important;
    font-size: 18px !important;
    line-height: 120% !important;
    transition: all 200ms ease-in-out;
  }
  
  .interview__link:hover {
    color: #3381df !important;
    text-decoration: none !important;
  }
  
  @media (min-width: 768px){
    .interview .container {
      flex-direction: row;
      gap: 20px;
    }
  
    .interview__img {
      width: 139px !important;
      height: 139px !important;
    }
  
    .interview__header {
      flex-direction: column;
      gap: 16px;
    }
  
    .interview__header-content {
      gap: 4px;
    }
  
    .interview .container::after {
      width: 118px;
      height: 118px;
      top: -10px;
      right: 0;
    }
  
    .interview {
      margin-top: 48px;
      margin-bottom: 48px;
    }
  
    .interview__list {
      padding-left: 16px !important;
      gap: 8px;
    }
  
  }
  
  @media (min-width: 1200px){
    .interview {
        display: flex;
        justify-content: flex-end;
    }
  
    .interview .container {
      flex-direction: column;
      width: 315px;
      gap: 16px;
    }
  
    .interview__header {
      flex-direction: row;
      gap: 12px;
    }
  
    .interview__img {
      width: 100px !important;
      height: 100px !important;
    }

    .interview__list {
        list-style: none !important;
        gap: 8px;
    }

    .interview__link {
        font-size: 24px !important;
        padding: 16px !important;
    }
  }
  