
.news-detail-container {
  width: 70%;
  padding-left: 15%;
  padding-right: 15%;
  margin-top: 3rem;
}

.news-detail-title {
  text-align: center;
  font-size: 1.125rem;
  color: #0066cb;
  letter-spacing: .0625rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.news-detail-date-and-views {
  font-size: .6875rem;
  color: #666;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: .0625rem solid rgb(231, 231, 231);
}

.news-detail-date {
  margin-right: 2rem;
}

.news-detail-content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1400px) {
  .news-detail-title {
    font-size: 1.5rem;
  }
  .news-detail-date-and-views {
  	font-size: 1rem;
  }
}

@media screen and (max-width: 1000px) {
  .news-detail-title {
    font-size: 2.5rem;
  }
  .news-detail-date-and-views {
  	font-size: 2rem;
  }
  
  .news-detail-container {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 3rem;
  }
  
  .news-detail-content {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .news-detail-content {
    font-size: 2.5rem;
  }
}
