/* News Detail Page */
.news {
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  min-height: 150px;
}

.news-item {
  display: block;
  gap: 30px;
  font-size: 16px;
  /* padding-left: 15px; */
  padding-top: 20px;
  border-bottom: 1.5px solid var(--color-gray);
  margin-bottom: 40px;
}

.news-date {
  color: var(--color-dark-gray);
}

.news-title {
  color: var(--color-green);
  text-decoration: none;
  font-weight: bold;
  padding: 15px 0;
  font-size: 30px;
}

.news-text {
  color: var(--color-dark-gray);
  font-size: 18px;
  min-height: 120px;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  width: 250px;
  position: relative;
  display: inline-block;
  text-align: center;
  color: var(--color-green);
  border: solid 0.5px var(--color-green);
  background: white;
  padding: 15px 30px;
  /* margin: 40px; */
  text-decoration: none;
}

.btn i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

@media (max-width: 768px) {
}