/* Sinaslist Articles — long-form content layout, extends style.css */

.article-hero { text-align: left; }
.article-breadcrumb { font-size: .82rem; opacity: .85; margin-bottom: .5rem; }
.article-breadcrumb a { color: #fff; }
.article-meta { font-size: .82rem; opacity: .8; margin-top: .5rem; }

.article-wrap { max-width: 760px; padding: 2.5rem 1.25rem 3rem; margin: 0 auto; }
.article-body { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem clamp(1.25rem, 4vw, 2.5rem); }
.article-body h2 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin: 2rem 0 .85rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 .6rem; }
.article-body p { font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; color: var(--text); }
.article-body ul, .article-body ol { margin: 0 0 1rem 1.35rem; font-size: .95rem; line-height: 1.75; }
.article-body li { margin-bottom: .4rem; }
.article-body strong { font-weight: 700; }
.article-body a { color: var(--primary); font-weight: 600; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

.tool-cta {
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.tool-cta h3 { color: #fff; margin: 0 0 .25rem; font-size: 1rem; }
.tool-cta p { color: rgba(255,255,255,.85); margin: 0; font-size: .85rem; }
.tool-cta .cta-btn { flex-shrink: 0; background: #fff; color: var(--primary-dk); font-weight: 700; padding: .6rem 1.4rem; border-radius: 7px; text-decoration: none; font-size: .9rem; white-space: nowrap; }
.tool-cta .cta-btn:hover { background: #f0f7ff; }

.service-cta {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  text-align: center;
}
.service-cta p { margin-bottom: .6rem; font-size: .9rem; color: var(--muted); }
.service-cta a { display: inline-block; }

/* Articles index */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; padding: 2rem 0; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.article-card h2 { font-size: 1.05rem; font-weight: 700; }
.article-card h2 a { color: var(--text); text-decoration: none; }
.article-card h2 a:hover { color: var(--primary); }
.article-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; flex: 1; }
.article-card .view-btn { align-self: flex-start; }

@media (max-width: 600px) {
  .tool-cta { flex-direction: column; align-items: flex-start; }
}
