/* Blog Footer Social Icons */
.blog-footer-socials {
  display: flex;
  gap: var(--spacing-4);
  margin-top: var(--spacing-4);
  flex-wrap: wrap;
}
.blog-footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--footer-color);
  transition: all 0.3s ease;
  text-decoration: none;
}
.blog-footer-social-icon:hover {
  background: var(--color-brand);
  color: white;
  transform: translateY(-2px);
}
.blog-footer-social-icon svg {
  width: 20px;
  height: 20px;
}

.blog-footer-follow-us {
  margin-top: var(--spacing-6);
  margin-bottom: var(--spacing-2);
  color: var(--footer-color);
  font-weight: bold;
}