:root {
  --accent: #F74E05;
  --ink: #17191f;
  --muted: #667085;
  --line: #e7e9ee;
  --bg: #fafafa;
  --panel: #ffffff;
  --soft: #fff3ed;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.68;
}

a { color: var(--accent); }

.wrap {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px 22px 72px;
}

.top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.top img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(247, 78, 5, .22);
}

.top b { font-size: 18px; }

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 32px;
  font-size: 14px;
  font-weight: 700;
}

.nav a { text-decoration: none; }

article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  margin: 10px 0 16px;
  letter-spacing: 0;
}

.intro {
  color: #333741;
  font-size: 18px;
  margin-bottom: 26px;
}

h2 {
  font-size: 25px;
  line-height: 1.2;
  margin: 34px 0 10px;
}

h3 {
  font-size: 18px;
  margin: 24px 0 6px;
}

p, li { color: #333741; }

ol, ul { padding-left: 22px; }

li { margin: 8px 0; }

.placeholder {
  min-height: 260px;
  border: 2px dashed #b9c0cc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 78, 5, .08), rgba(0, 145, 255, .08)),
    #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  margin: 28px 0;
  color: var(--muted);
}

.placeholder strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
}

.blog-figure {
  margin: 28px 0;
}

.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #050505;
}

.blog-figure figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  text-align: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.tag-row a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(247, 78, 5, .22);
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cta {
  margin: 36px 0 8px;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid #ffd4c0;
}

.cta h2 { margin-top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.related {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.related a, .article-list a {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.related a:hover, .article-list a:hover { border-color: var(--accent); }

.article-list {
  display: grid;
  gap: 12px;
}

.article-list span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

footer {
  color: var(--muted);
  font-size: 13px;
  margin-top: 34px;
  text-align: center;
}

@media (max-width: 620px) {
  .wrap { padding: 24px 16px 56px; }
  article { padding: 24px 18px; }
  .placeholder { min-height: 210px; }
}
