/*----------------------------------------------------------------------*/
/* news-single.scss */
/*----------------------------------------------------------------------*/
.newsSingle .newsSingle__info {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.newsSingle .newsSingle__tag {
  border: 1px solid var(--color-accent);
}
.newsSingle .newsSingle__title {
  margin-bottom: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-base);
}
.newsSingle .newsSingle__thumbnail {
  margin-bottom: 1.5rem;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--color-base);
  text-align: center;
}
.newsSingle .newsSingle__thumbnail img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.newsSingle .newsSingle__content p {
  margin-block: 1.5rem;
  line-height: 2;
}

@media screen and (min-width: 37.5rem) {
  .newsSingle .newsSingle__thumbnail {
    aspect-ratio: 16/7;
  }
}
@media screen and (min-width: 60rem) {
  .newsSingle .newsSingle__thumbnail {
    aspect-ratio: 16/5;
  }
}/*# sourceMappingURL=news-single.css.map */