.news-list {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 20px;
}
.news-list dt {
  width: 10em;
  grid-column: 1;
}
.news-list dd {
  grid-column: 2;
}

.news-info__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 5px;
}
.news-info__title {
  font-size: 1.5rem;
  display: flex;
}
.news-info__date {
  color: #630;
  font-weight: bold;
}
.news-info__main {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.news-info__main-img {
  width: 40%;
}
.news-info__main-img img {
  width: 100%;
}
.news-info__desc {
  width: calc(60% - 20px);
}
.news-info__imgs {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
.news-info__imgs figure {
  margin: 0;
  width: 33.3%;
}
.news-info__imgs figure img {
  width: 100%;
}

/*# sourceMappingURL=news.css.map */
