.sec__news {
  background-color: #fff;
  padding: 4rem 0;
}

.news__unity {
  background-color: transparent;
  margin: 0 auto;
  float: none;
  margin-bottom: 10px;
  padding: 0.4rem;
  transition: 0.5s;
}

.news__card {
  background: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: 0.5s;
}

.news__card a {
  text-decoration: none;
}

.news__img {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 250px;
  position: relative;
  display: block;
  transition: 0.5s;
}

.news__img:hover {
  transform: scale(1.015);
  opacity: 0.8;
  transition: 0.3s;
}

.news__date {
  display: inline-block;
  background: rgba(0, 0, 0, 0.6);
}

.news__date .day {
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0 .5rem;
  letter-spacing: 1px;
  margin-bottom: -3px;
}

.news__date .mos, .news__date .yr {
  font-size: .9rem;
  padding: 0 .5rem;
  letter-spacing: 1px;
}

.news__date span {
  display: block;
  color: #fff;
  font-family: "BebasNeue-Regular";
}

.news__content {
  padding: 1rem;
}

.news__title {
  font-family: "Title-Regular";
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  line-height: 20px;
  margin-bottom: 0.7rem;
  text-align: left;
}

.news__title a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.news__title a:hover,
.news__title a:active,
.news__title a:focus {
  color: var(--bs-primary);
  transition: 0.3s;
}

.news__info{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
}

.news__footer {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}