#body
{
  h1
  {
    position: relative;
    text-align: center;
    color:$main-color;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 2.4px;
    margin-bottom:150px;
    &::after
    {
      content:' ';
      width: 21px;
      height:15px;
      background-color: #9CCCD3;
      border-radius: 100%;
      position: absolute;
      top:-14px;
      left:calc(50% - 10px);
    }
  }

  .article-list
  {
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    article
    {
      margin:0 5% 150px 5%;
      position: relative;
      background-color: $bg-color;
      border-radius:67px;
      padding:10px;
      display: flex;
      width: 380px;
      picture
      {
        display: block;
        width: 120px;
        height:120px;
        border-radius: 100%;
        border:10px solid $bg-color;
        border-bottom-color:transparent;
        position: absolute;
        top:-85px;
        left:calc(50% - 60px);
        &::after
        {
          border-top:1px dashed $main-color;
          content:' ';
          display: block;
          position: absolute;
          width: 100%;
          height:15px;
          bottom:0px;
          left:0px;
          background-color: $bg-color;
        }
        img
        {
          background-color: $bg-color;
          position: relative;
          z-index:1;
          display: block;
          border:1px dashed $main-color;
          border-bottom-color:transparent;
          border-radius: 100%;
          height: 100%;
          width: 100%;
          display: block;
          object-fit: cover;
          object-position: top center;
        }
      }
      >div
      {
        border:1px dashed $main-color;
        border-radius: 67px;
        padding:30px 20px 40px 20px;
        h3
        {
          width: 100%;
          text-align: center;
          font-size: 20px;
          font-weight: 400;
          line-height: 150%; /* 30px */
          letter-spacing: 2px;
          margin-bottom:20px;
          a
          {
            color:$main-color;
          }
        }
        p
        {
          padding:0 40px;
          font-size: 16px;
          font-weight: 400;
          line-height: 24px;
          letter-spacing: 1.6px;
          color:$main-color;
        }
      }
    }
    @media(max-width:767px)
    {
      article
      {
        margin:0 0 100px 0;
      }
    }
  }
}