.news {
  margin: 90px 0;
  background: #ffffff;
}
@media (max-width: 900px) {
  .news {
    margin: 60px 0;
  }
}
.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .news__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 57.6px;
  color: #1a1a1a;
}
@media (max-width: 1200px) {
  .news__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 900px) {
  .news__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 900px) {
  .news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .news__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.news__empty {
  text-align: center;
  color: #8892a6;
  padding: 40px 20px;
  border: 1px dashed #e5e7eb;
  border-radius: 12px;
}

.news-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
}
.news-card__media {
  aspect-ratio: 25/14;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f7fb;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.news-card__date {
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #6b7280;
}
.news-card__title {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1a1a1a;
}
.news-card__excerpt {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: #6b7280;
}
.news-card__inner:hover .news-card__title {
  color: #ff8c00;
}
.news-card__inner:hover .news-card__media img {
  transform: scale(1.02);
}
.news-card__media img {
  transition: transform 0.3s ease;
}
.news-card__title {
  transition: color 0.2s ease;
}
/*# sourceMappingURL=styles.css.map */
