/* Blog-specific styles. Base/nav/footer come from ../contact.css (shared vars). */

.blog-wrap { max-width: 1080px; margin: 0 auto; padding: 72px 24px 100px; }

.blog-hero { text-align: center; margin-bottom: 52px; }
.blog-hero .eyebrow {
  display: inline-block; color: var(--green); font-weight: 700;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}
.blog-hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 800; color: var(--text); line-height: 1.1; margin: 0; }
.blog-hero p { color: var(--text-secondary); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; line-height: 1.6; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--border);
  border-radius: 22px; padding: 26px; text-decoration: none; color: inherit; transition: all .2s ease;
}
.blog-card:hover { border-color: var(--green); box-shadow: 0 12px 34px var(--green-glow); transform: translateY(-3px); }
.blog-card .cat { color: var(--green); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 10px 0 8px; line-height: 1.25; }
.blog-card p { color: var(--text-secondary); font-size: .93rem; line-height: 1.6; margin: 0; flex: 1; }
.blog-card .more { color: var(--green); font-weight: 700; font-size: .85rem; margin-top: 16px; }

/* Article page */
.article { max-width: 720px; margin: 0 auto; padding: 44px 24px 100px; }
.article .back { display: inline-flex; align-items: center; gap: 6px; color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: .9rem; }
.article .back:hover { color: var(--green); }
.article .cat { color: var(--green); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 26px; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--text); margin: 8px 0 26px; line-height: 1.15; }
.article h2 { font-size: 1.32rem; font-weight: 800; color: var(--text); margin: 34px 0 12px; }
.article p { color: var(--text-secondary); line-height: 1.78; margin: 0 0 16px; font-size: 1.03rem; }
.article ul { color: var(--text-secondary); line-height: 1.78; padding-left: 22px; margin: 0 0 16px; }
.article li { margin-bottom: 8px; }
.article .callout {
  background: var(--green-dim); border: 1px solid var(--green-glow); border-radius: 16px;
  padding: 18px 20px; color: var(--text-secondary); line-height: 1.7; margin: 22px 0;
}
.article .article-foot { margin-top: 44px; border-top: 1px solid var(--border); padding-top: 22px; color: var(--text-muted); font-size: .95rem; }
.article .article-foot a { color: var(--green); font-weight: 700; text-decoration: none; }
