main > section > article {
  width: 97%;
  margin: 1.7rem auto;
  padding: 0;
  position: relative;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  top: 0;
  text-align: justify;
  word-break: keep-all;
}

main > section > article > .photo {
  float: left;
  width: 160px;
  margin: 0 20px 20px 20px;
  -webkit-box-shadow: 0 .1875rem .625rem gray;
          box-shadow: 0 .1875rem .625rem gray;
  border-radius: 5px;
}

@media screen and (max-width: 645px) {
  main > section > article > .photo {
    width: 120px;
    margin: 0 10px 5px 10px;
  }
}

main > section > article .contentArea p {
  font-family: 'NanumSquare', sans-serif;
  font-size: 1rem;
  color: #000;
  line-height: 1.4rem;
  margin: 0;
  word-break: keep-all;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-animation: fadeEffect 0.6s ease;
          animation: fadeEffect 0.6s ease;
  width: 100%;
  padding: 0;
}

main > section > article .contentArea .conTitle {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 645px) {
  main > section > article .contentArea p {
    font-size: 0.94em;
  }
  
main > section > article .contentArea .conTitle {
  font-size: 1rem;
  font-weight: 600;
}
}

main > section > article .titF1 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .625rem;
}

main > section > article .dateF {
  font-size: 1rem;
  text-align: right;
}

main > section > article .dateF span {
  font-size: 1.1rem;
  font-weight: 500;
}

main > section > article:after {
  content: "";
  height: .3125rem;
  width: 100%;
  z-index: -3;
  position: absolute;
  background-image: linear-gradient(135deg, #24909f 0%, #5db6ce 100%);
  left: 0;
  bottom: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}