<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

#news-items {
  width: 80%;
  margin: 0 auto;
}

#news-items li {
  list-style: none;
  margin-bottom: 2em;
}

.news-item {
  display: flex;
  color: #000000;
  text-decoration: none;
}

.news-item:hover {
  text-decoration: underline;
}

.news-item-image {
  width: 35%;
  margin-right: 5%;
  font-size: 0;
}

.news-item-image img {
  width: 100%;
  border-radius: 10px;
  border: 6px solid #D74E58;
}

.news-item-detail {
  width: 60%;
}
</pre></body></html>