/*=============== NEWS PAGE ===============*/
#news-container {
  background: #fff;
  padding: 200px 30px;
  width: 100%;
	box-sizing: border-box;
}

#news-content {
  max-width: 900px;
  margin: 0 auto;
}

#news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  padding: 20px 10px;
  border-bottom: 1px solid rgba(159, 159, 159, 0.5);
}

.news-item:last-child {
  border-bottom: none;
}

.news-link {
  text-decoration: none;
  color: #060606;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-date {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #f19ec2;
}

.news-title {
  flex: 1;
  font-weight: 700;
  font-size: 1.2rem;
  margin-left: 20px;
	margin-right: 20px;
}

.news-more-btn {
  background-color: #f19ec2;
  color: white;
  border: none;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.news-more-btn:hover {
  background-color: #e180ad;
}

@media screen and (max-width: 480px) {
  #news-container {
    padding: 100px 10px;
	  box-sizing: border-box;
  }

  .news-link {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
}
