body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
  color: #000;
}

.news-page {

}

.news-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.news-title {
  padding: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.red-dot {
  width: 1.4rem;
  height: 1.4rem;
  background-color: red;
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.5rem;
}

.news-list {
  padding: 3rem;
  list-style-type: none;
}

.news-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: justify;
  font-size: 0.95rem;
}

.news-footer-img {
  width: 100%;
  margin-top: 2rem;
}

.news-footer-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.news-divider {
  border: none;
  border-top: 2px solid #000;
  width: 100%;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}

/* Make news links look like regular text */
.news-list a,
.news-list a:visited {
  color: inherit;            /* keep the same black color */
  text-decoration: none;     /* remove underline */
}

/* (Optional) keep it clean on hover too */
.news-list a:hover,
.news-list a:focus {
  color: inherit;
  text-decoration: none;
}

/* Make the whole line clickable without affecting layout */
.news-list li > a {
  display: block;            /* full-row click target */
  cursor: pointer;
}
