/* zanoza-news.com — light visual polish, 2026-05-20.
   Layered on top of /zanoza-theme.css. Intentionally minimal: no colour, logo
   or navigation changes. Only optical refinements. */

/* Subtle hover lift on news list rows and tile cards. */
.news-list__list .item,
.articles-item {
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.news-list__list .item:hover,
.articles-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Tighter optical line-height on h1/h2 titles. */
h1.article__title,
.news-list__title,
.home-intro h1 {
  line-height: 1.2;
  letter-spacing: -0.005em;
}

/* Soft accent rule under category badges and the news-list eyebrow. */
.news-list__head {
  border-bottom: 1px solid hsl(0, 65%, 45%);
  background: hsla(0, 65%, 45%, 0.04);
  padding-bottom: 6px;
}

/* Slightly larger body text in article paragraphs for readability. */
.article__content p {
  font-size: 17px;
  line-height: 1.62;
}

/* Improved focus ring on links — for keyboard users. */
a:focus-visible {
  outline: 2px solid #c8202a;
  outline-offset: 2px;
  border-radius: 2px;
}

/* "Свежее" ribbon for the newest cards on the homepage. */
.news-list__list .item.is-fresh::before {
  content: "СВЕЖЕЕ";
  display: inline-block;
  background: #c8202a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  line-height: 1.4;
}
