/* =========================================================
   public/assects/css/news.css — Hírek blokk + lista (egyoszlopos)
   ========================================================= */

.news-section{
  background:#fff; border:1px solid #bababa;
  border-radius:0 10px 0 10px; box-shadow:0 2px 5px rgba(0,0,0,.06);
  padding:18px; margin:0 0 24px;
}
.news-section > h2{
  margin:0 0 10px;
  font-family:var(--font-head); font-size:1.125rem;
  text-transform:uppercase; letter-spacing:.2px; color:#003366;
}

.news-list{ list-style:none; margin:0; padding:0; display:block; }

.news-card{
  background:transparent; border:0; box-shadow:none;
  padding:12px 4px; border-bottom:1px dotted #d6d6d6;
}
.news-card:last-child{ border-bottom:0; }

.news-title{
  margin:0 0 4px; font-family:var(--font-head);
  font-size:1rem; color:var(--brand-maroon); text-transform:none;
}
.news-title a{ color:inherit; text-decoration:none; }
.news-title a:hover{ text-decoration:underline; }

.news-teaser{ margin:0 0 6px; color:#333; }

.news-meta{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; font-size:.9rem; color:#666;
}
.news-more{ color:var(--brand-maroon); text-decoration:none; }
.news-more:hover{ text-decoration:underline; }

@media (max-width:640px){
  .news-meta{ flex-direction:column; align-items:flex-start; gap:4px; }
}
