.testimony_section{
  .list_container{
    padding: 5rem;
    border-radius: 2vw;
    background-color: white;

  }

  .list{
    padding: 2rem 0;
    display: flex;
    border-bottom: 1px solid #E2E2E2;

    .avatar {
      margin-right: 2rem;
      aspect-ratio: 1;
      width: 100%;
      min-width: 30px;
      height: 100%;
      max-width: 52px;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5vw;
      line-height: 1;
      text-align: center;
      font-family: Arial, sans-serif; /* 使用簡單的無襯線字體會更加精確 */
    }
    .avatar.orange {
      background-color: #FDA24E;
    }
    .avatar.blue {
      background-color: #7EC6EE;
    }


    .testimony_date{
      color: #8B939C;
    }
  }
  .list:last-child {
    border-bottom: none; /* 最後一個 .list 沒有底線 */
  }
}

@media (max-width: 768px) {
  .testimony_section {
    .list_container {
      padding: 1rem;

    }
  }
  }


