/* ============================================================
   RealDomainSearch — Blog v2
   ============================================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  height: 100%;
  transition: all var(--t-mid);
  margin-bottom: 24px;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-image { position: relative; overflow: hidden; }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: var(--white);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 10px; border-radius: var(--r-full);
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .78rem; color: var(--muted); margin-bottom: .75rem; display: flex; gap: 12px; }
.blog-card-meta i { color: var(--accent); }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: .75rem; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; flex: 1; }
.blog-card-footer { padding: 14px 20px; border-top: 1px solid var(--border); background: var(--lighter); }
.read-more { font-size: .85rem; font-weight: 700; color: var(--accent); display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--accent-dark); gap: 8px; }

/* Single blog post */
.post-header { padding: 60px 0 40px; background: var(--light); }
.post-title  { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--primary); margin-bottom: 1rem; }
.post-meta   { font-size: .88rem; color: var(--muted); display: flex; gap: 20px; flex-wrap: wrap; }
.post-content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-content h2, .post-content h3 { color: var(--primary); margin-top: 2rem; }
.post-content img { border-radius: var(--r-md); max-width: 100%; }
.post-content a { color: var(--accent); font-weight: 500; }
.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
  color: var(--primary);
  font-style: italic;
}
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.post-tag  { background: var(--light); border: 1px solid var(--border); color: var(--muted); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: var(--r-full); transition: all var(--t-fast); }
.post-tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
