/* ictheme — Hírek sablon (template-hirek.php) saját, egyedi komponensei.
   A közös design rendszer (main.css) elemeit — .wrap, .eyebrow, .btn*, header/footer,
   .article-shell, .article-head, .entry-content stb. — itt nem ismételjük meg. */

/* ---------- Oldal hero (article-head kiegészítés: bevezető szöveg) ---------- */
.ictheme .article-head .intro{color:var(--muted);font-size:17px;max-width:78ch;margin:14px 0 0}

/* ---------- Hírlista ---------- */
.ictheme .news-list{display:flex;flex-direction:column;gap:24px;margin-top:8px}

.ictheme .news-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:32px 36px 36px;
}

.ictheme .news-date{
  display:block;
  font-family:var(--mono);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.03em;
  color:var(--muted);
  margin-bottom:10px;
}

.ictheme .news-title{margin:0 0 18px}
.ictheme .news-title a{
  font-size:clamp(20px,2.4vw,25px);
  font-weight:800;
  color:var(--ink);
  transition:color .15s;
}
.ictheme .news-title a:hover{color:var(--accent-strong)}

/* A kártyán belül az entry-content ne korlátozza a szélességet a kártya szélére */
.ictheme .news-card .entry-content{max-width:none}

/* ---------- Lapozás ---------- */
.ictheme .news-pagination{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:44px;
}
.ictheme .news-pagination a{white-space:nowrap}

@media (max-width:680px){
  .ictheme .news-card{padding:24px 20px 28px}
  .ictheme .news-pagination{flex-direction:column;align-items:stretch}
  .ictheme .news-pagination a{text-align:center;justify-content:center}
}
