#body
{
  
  section
  {
    header
    {
      padding-top:80px;
      padding-bottom:80px;
      border-bottom:1px solid $text-color;
      margin-bottom:80px;
      h1
      {
        color: $text-color;
        font-size: 36px;
        line-height: 52px; /* 144.444% */
        letter-spacing: 0.72px;
        margin-bottom:24px;
      }
      p
      {
        max-width:720px;
      }
    }
    .article-list
    {
      
      article
      {
        margin-bottom: 48px;
        picture
        {
          display: block;
          img
          {
            border-radius: 8px;
            display: block;
            width: 100%;
          }
        }
        >div
        {
          h2
          {
            margin-bottom: 16px;
            font-size: 24px;
            font-weight: 400;
            line-height: 35px; /* 145.833% */
            letter-spacing: 0.48px;
          }
          p
          {
            margin-bottom: 24px;;
          }
          h3
          {
            font-size: 15px;
            font-weight: 700;
            line-height: 22px; /* 146.667% */
            letter-spacing: 0.3px;
            margin-bottom: 6px;
          }
          ul
          {
            list-style-type: disc;
            list-style-position:inside;
            margin-bottom: 18px;
            li
            {
              margin-bottom: 6px;
            }
          }
          .more
          {
            display: flex;
            a
            {
              color:$text-color;
              border:1px solid $text-color;
              padding:8px 22px;
              border-radius: 100px;
            }
          }
        }
      }
      @media(min-width:768px)
      {
        article
        {
          display: flex;
          picture
          {
            width: calc(50% - 24px);
            margin-right: 24px;
          }
          >div
          {
            width: calc(50% - 24px);
            margin-left:24px;
          }
        }
      }
      @media(max-width:767px)
      {
        article
        {
          picture
          {
            margin-bottom:24px;
          }
        }
      }
    }
  }

}