/* news-archive layout - match business page tab pattern */
.news-archive .section__inner{
  margin-top: 0;
  margin-bottom: 150px;
}

/* news tab */
.news-tab{
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  border-bottom: 2px solid #E1E1E4;
  margin: 60px 0 80px 0;
}

.news-tab__wrapper{
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  max-width: 1440px;
  gap: 20px;
  margin: auto;
}

.news-tab__item{
  padding: 20px 30px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #767676;
  cursor: pointer;
}

.news-tab__item.active{
  border-bottom: 2px solid #111;
  font-weight: 700;
  color: #111;
}

.news-tab__item a{
  color: inherit;
  text-decoration: none;
}

/* content area below tab */
.news-archive__content{
  margin-top: 200px;
}

/* company post list */
.company-post__list{
  margin-top: 20px;
  border-top: 2px solid #111;
}

.company-post__header{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E1E1E4;
  background-color: #F8F8FA;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

.company-post__row{
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #E1E1E4;
  font-size: 18px;
  line-height: 26px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.company-post__row:hover{
  background-color: #F8F8FA;
}

.company-post__col-no{
  width: 80px;
  text-align: center;
  flex-shrink: 0;
  color: #767676;
  font-size: 16px;
}

.company-post__col-title{
  flex: 1;
  padding: 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-post__col-date{
  width: 120px;
  text-align: center;
  flex-shrink: 0;
  color: #767676;
  font-size: 16px;
}

.company-post__header .company-post__col-no,
.company-post__header .company-post__col-title,
.company-post__header .company-post__col-date{
  color: #111;
  font-weight: 700;
}

.company-post__empty{
  padding: 80px 0;
  text-align: center;
  color: #767676;
  font-size: 18px;
  line-height: 26px;
  border-bottom: 1px solid #E1E1E4;
}

@media (max-width: 1440px){
  .news-tab{
    margin: 45px 0 80px 0;
  }

  .news-archive__content{
    margin-top: 150px;
  }
}

@media (max-width: 767px){
  .news-archive .section__inner{
    margin-top: 0;
    margin-bottom: 100px;
  }

  .news-tab{
    height: auto;
  }

  .news-tab__wrapper{
    gap: 5px;
    padding-bottom: 10px;
  }

  .news-tab__item{
    border-radius: 29px;
    border: 1px solid #E1E1E4;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 24px;
  }

  .news-tab__item.active{
    border: 2px solid #111;
  }

  .news-archive__content{
    margin-top: 100px;
  }

  .company-post__header{
    display: none;
  }

  .company-post__row{
    flex-flow: column nowrap;
    align-items: flex-start;
    padding: 16px 10px;
  }

  .company-post__col-no{
    display: none;
  }

  .company-post__col-title{
    padding: 0;
    width: 100%;
    font-size: 15px;
    line-height: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .company-post__col-date{
    width: auto;
    text-align: left;
    font-size: 14px;
    margin-top: 6px;
  }

  .company-post__empty{
    padding: 50px 0;
    font-size: 15px;
  }
}
