div.banner-block {
    width: 100%;
    max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.banner-block div.banner-block-details {
    display: grid;
    align-items: 'center';
    row-gap: '0px';
}

div.banner-block .logo-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 0px solid #F5F3F2;
}

div.banner-block .intervenant-ref {
    font-family: Heebo;
    font-size: 16px;
    font-weight: 400;
    line-height: 23.5px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #939799;

    .number {
        color: #2B2B2B !important;
    }
}

.banner-info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #F5F3F2;
    align-content: center;
  }
  .banner-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
  }
  .banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-left: 5%;
  }
  .banner-info .banner-details:last-child {
    margin-top: 35px;
  }
  .banner-name {
    font-size: 24px;
    margin: 0;
  }
  .banner-id {
    color: #939799;
    font-size: 16px;
    line-height: normal;
  }
  .banner-id strong{
    color: #2B2B2B;
    font-family: inherit;
    font-size: inherit;
  }
  .banner-connection {
    color: #939799;
  }

/* Desktop styles */
@media (min-width: 750px) {
  .banner-info  {
      height: 140px;
      justify-content: start !important;
  }
  .banner-photo {
      margin-left: 15%;
  }
}

/* Mobile styles */
@media (max-width: 750px) {
  .banner-info {
      height: 200px;
      flex-direction: column;
      justify-content: center;
  }
  .banner-info .banner-details:last-child {
    margin-top: 0;
  }
  .banner-photo {
      align-self: center;
  }
}