
main article {
  margin: 100px 0 100px;
  
  padding: 50px 40px 0;
  border-top: #e2eaef 1px solid;
  box-sizing: border-box;
}
main article header {
  display: flex;
  min-height: 120px;
  margin-bottom: 45px;
}
main article header .ymd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: #e2eaef 1px solid;
  width: 120px;
  padding-right: 30px;
  box-sizing: border-box;
  line-height: 1;
}
main article header .ymd .y { font-size: 18px;}
main article header .ymd .md { font-size: 24px; display: flex;margin-top: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;}
main article.new header .md::after {
  content: "NEW";
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 5px 15px;
  line-height: 1;
  color: #fff;
  background: #e55c56;
  border-radius: 5px;
  margin-top: 10px;
}
main article header h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 26px;
  line-height: 1.3;
  font-weight: bold;
  padding: 20px 0 20px 35px;
}
main article header h2 .cat {
  border: #108e8e 1px solid;
  border-radius: 5px;
  padding: 8px 15px;
  color: #108e8e;
  font-size: 15px;
  margin-top: 15px;
}
.pager { border-top: #e2eaef 1px solid;}
@media only screen and (max-width: 782px) {
  main article {
    margin: 50px -2.5vw 50px;
    width: calc(100% + 5vw);
    padding: 0 2.5vw;
    position: relative;
  }
  main article.new::after {
    content: "NEW";
    font-size: 11px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    line-height: 1;
    color: #fff;
    background: #e55c56;
    border-radius: 3px;
    position: absolute;
    left: 2.5vw;
    top: -10px;
  }
  main article header {
    display: block;
    min-height: inherit;
    padding-top: 30px;
    margin-bottom: 25px;
  }
  main article header .ymd {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border-right: none;
    width: auto;
    padding-right: 0px;
  }
  main article header .ymd .y { font-size: 11px;}
  main article header .ymd .md { 
    font-size: 15px; display: flex;margin: 0px 0 0 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  main article header .ymd .cat {
    font-size: 11px;
    border: #108e8e 1px solid;
    border-radius: 3px;
    padding: 5px 10px;
    color: #108e8e;
    margin-left: 10px;
  }
  main article.new header .md::after { display: none;}
  main article header h2 {
    display: block;
    font-size: 22px;
    padding: 20px 0 0;
    line-height: 1.5;
  }
  main article header h2 .cat {display: none;}
}