body {
  background: #0b0c10;
  color: #e8f6f3;
  font-family: system-ui;
  margin: 0;
  padding-top: 0; /* 🔹 Enam ei nihuta alla */
}

a {
  color: #5de88d;
}

.site-header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}

.controls {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.news-list {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.card {
  background: #14181d;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}

.title {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
}

.pubdate {
  display: block;
  color: #9fb5b1;
  margin-bottom: 8px;
}

.desc {
  margin-bottom: 10px;
}

/* Ainult allikate ploki kujundus */
footer.site-footer {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer.site-footer a {
  color: #58a6ff;
  text-decoration: none;
}

footer.site-footer a:hover {
  text-decoration: underline;
}

/* Tekstide ja linkide murdmine */
.news-list, .card, .desc, .actions, a {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.card a {
  display: inline-block;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
}
