/* News & guides block on /shop/site/ */
.shs-news-block { border-top: 1px solid var(--shs-border, #e2e8f0); }
.shs-news-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .shs-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .shs-news-grid { grid-template-columns: repeat(4, 1fr); }
}
.shs-news-card {
  border: 1px solid var(--shs-border, #e2e8f0);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
  background: var(--shs-bg, #f8fafc);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.shs-news-card:hover {
  border-color: #10b981;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}
.shs-news-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.shs-news-card-title { margin: 0; font-size: 1rem; line-height: 1.35; }
.shs-news-card-title a { color: inherit; text-decoration: none; }
.shs-news-card-title a:hover { color: #059669; }
.shs-news-card-desc {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--shs-muted, #64748b);
  line-height: 1.45;
}
.shs-news-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
  text-decoration: none;
}
.shs-news-card-link:hover { text-decoration: underline; }
.shs-news-hub { text-align: center; margin: 1.5rem 0 0; }
.shs-news-hub a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: #059669;
  text-decoration: none;
}
.shs-news-hub a:hover { text-decoration: underline; }
