  /* Expert Opinion section */
  :root {
    --hsd-mod-eo-font-color: #000;
    --hsd-mod-eo-background-color: #f6f6f6;
    --hsd-mod-eo-border: 1px solid #d5d5d5;
    --hsd-mod-eo-drop-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .hsd-mod-expert-opinion {
    max-width: 1440px;
    margin: 0 auto;
    padding: 2rem;
  }

  .hsd-mod-eo-opinion {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 24px;
    padding: 92px 25px 35px 25px;
    border-radius: 4px;
    border: var(--hsd-mod-eo-border);
    box-shadow: var(--hsd-mod-eo-drop-shadow);
    background-color: var(--hsd-mod-eo-background-color);
  }

  .hsd-mod-eo-icon-cont {
    position: relative;
    width: 100%;
    top: 27px;
    height: 50px;
    display: flex;
    justify-content: center;
  }
  .hsd-mod-eo-avatar-cont {
    position: relative;
    width: 100%;
    top: 60px;
    display: flex;
    justify-content: center;
  }
  .hsd-mod-eo-avatar {
    width: 120px;
    border-radius: 50%;
  }

  .hsd-mod-eo-title {
    color: #000;
    font-size: 1.5em;
    font-weight: 900;
    line-height: 36px; /* 150% */
    margin: 0 !important;
  }

  .hsd-mod-eo-content {
    color: #000;
    line-height: 26px;
    margin: 0 !important;
    padding: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
  }

  .hsd-mod-eo-name {
    color: var(--hsd-mod-eo-font-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0 !important;
  }

  .hsd-mod-eo-name a {
    text-decoration: none;
  }

  @media screen and (max-width: 850px) {
    .hsd-mod-eo-title {
      font-size: 20px;
      font-weight: 500;
      line-height: 25px; /* 125% */
    }

    .hsd-mod-eo-content {
      font-size: 14px;
      line-height: 22px; /* 157.143% */
    }
    .hsd-mod-eo-icon-cont {
      height: 35px;
      top: 35px;
    }
  }

  @media screen and (max-width: 375px) {
    .hsd-mod-eo-opinion {
      max-height: 574px;
      overflow-y: scroll;
    }
  }