/* Blog styles — extends service-page.css */

.post-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1.post-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.02;
}

.post-body {
  max-width: 760px;
}

.post-body h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.1;
}

.post-body h3 {
  margin-top: 28px;
}

.post-body p {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.post-body ul,
.post-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: rgba(16, 19, 15, 0.68);
  font-size: 1.04rem;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body li::marker {
  color: var(--moss);
  font-weight: 800;
}

.post-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--moss);
  font-weight: 600;
}

.post-body strong {
  color: var(--ink);
}

.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--moss);
  background: rgba(102, 143, 86, 0.08);
}

.callout p {
  margin: 0;
  color: rgba(16, 19, 15, 0.78);
}

/* Blog index post list */
.post-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 860px;
}

.post-list li {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.post-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.post-list .post-date {
  display: block;
  margin-bottom: 8px;
  color: var(--moss);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-list h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.08;
  max-width: none;
}

.post-list h2 a:hover {
  color: var(--moss);
}

.post-list p {
  max-width: 720px;
  margin-bottom: 12px;
}

.post-list .read-link {
  font-weight: 800;
  color: var(--ink);
}

.post-list .read-link:hover {
  color: var(--moss);
}
