.page-hero { padding-top: 36px; }
.page-links {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.page-links a {
  display: inline-flex; align-items: center;
  padding: 8px 12px; border-radius: 999px;
  background: #fff; border: 1px solid #eee;
  color: #333; text-decoration: none; font-size: .88rem; font-weight: 600;
}
.page-links a:hover { border-color: #ffca18; background: #fffdf5; text-decoration: none; }
.soft-card {
  transition: transform .15s ease, box-shadow .15s ease;
}
.soft-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.soft-card .btn-mini {
  display: inline-block; margin-top: 8px; font-size: .82rem; font-weight: 600;
  color: #111; background: transparent; padding: 6px 14px; border-radius: 999px;
  text-decoration: none; border: 1.5px solid #222;
}
.soft-card .btn-mini:hover { background: #111; color: #fff; text-decoration: none; }
.soft-top {
  display: flex; gap: 12px; align-items: flex-start;
}
.soft-main { grid-template-columns: 1fr; }
.soft-main .soft-top img {
  width: 72px; height: 72px; border-radius: 16px;
}
.soft-desc { margin-top: 10px; grid-column: 1 / -1; }
.soft-desc .label { color: #e11d48; font-weight: 700; }
@media (min-width: 900px) {
  .soft-grid.three { grid-template-columns: 1fr 1fr 1fr; }
}
/* breadcrumb & articles */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 14px 0 0; font-size: .82rem; color: #888;
}
.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { color: #111; }
.article-meta { color: #888; font-size: .85rem; margin-bottom: 14px !important; }
.article-card h3 { margin-top: 18px; }
.article-card .steps { margin-top: 10px; }
.news-grid {
  display: grid; gap: 12px; grid-template-columns: 1fr;
  margin-top: 14px;
}
.news-card {
  display: block; background: #fff; border: 1px solid #eee; border-radius: 14px;
  padding: 16px 16px 14px; text-decoration: none; color: inherit;
  transition: .15s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.06); text-decoration: none; border-color: #ffe08a; }
.news-card h3 { font-size: 1.02rem; margin: 0 0 8px; color: #111; }
.news-card p { margin: 0; color: #666; font-size: .9rem; line-height: 1.65; }
.news-card span { display: inline-block; margin-top: 10px; color: #9a7200; font-size: .82rem; font-weight: 700; }
@media (min-width: 760px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
