/* ============================================
   V8Loans — Blog Shared Styles
   ============================================ */

/* ---- Category Badges ---- */
.blog-category-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  line-height: 1;
  width: fit-content;
}

.badge-education {
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-200);
}

.badge-tips {
  background: var(--gold-100);
  color: var(--gold-600);
  border: 1px solid var(--gold-200);
}

.badge-guide {
  background: var(--neutral-50);
  color: var(--neutral-600);
  border: 1px solid var(--neutral-200);
}

/* ---- Article Callout Box ---- */
.article-callout {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-left: 3px solid var(--green-600);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin: 1.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--green-900);
}

.article-callout-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green-600);
}

/* ---- Read More Link ---- */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 0.875rem;
}

.read-more-link:hover {
  color: var(--green-600);
  gap: 0.625rem;
}

/* ---- Blog Meta Dot ---- */
.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neutral-300);
  flex-shrink: 0;
  display: inline-block;
}
