.blog-data-bar-section {
  padding: 1rem 0;
  margin: 1.875rem 0 0.25rem 0;
}

.blog-data-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.blog-data-bar-left,
.blog-data-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.blog-data-bar-stack {
  display: flex;
  gap: 24px;
}

.blog-data-bar-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.blog-data-bar-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-data-bar-icon {
  fill: var(--color-primary);
  flex-shrink: 0;
}

.blog-data-bar-text {
  font-family: var(--font-primary-family);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Share functionality */
.blog-data-bar-share {
  position: relative;
  cursor: pointer;
}

.blog-data-bar-share:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

.blog-data-bar-share-buttons {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-data-bar-share:hover .blog-data-bar-share-buttons,
.blog-data-bar-share:focus .blog-data-bar-share-buttons,
.blog-data-bar-share:focus-within .blog-data-bar-share-buttons {
  display: flex;
}

.share-btn {
  padding: 8px 12px;
  text-decoration: none;
  color: var(--color-primary);
  font-family: var(--font-primary-family);
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
}

.share-btn:hover {
  background-color: #f5f5f5;
  text-decoration: none;
}

.share-btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}

/* Mobile */
@media (max-width: 767px) {
  .blog-data-bar-inner {
    align-items: flex-start;
  }

  .blog-data-bar-stack {
    flex-direction: column;
    gap: 12px;
  }

  .blog-data-bar-left .blog-data-bar-stack {
    align-items: flex-start;
  }

  .blog-data-bar-right .blog-data-bar-stack {
    align-items: flex-end;
  }

  .blog-data-bar-icon-wrapper {
    width: 24px;
    justify-content: center;
  }

  
}




s