/* article details - bottom */
.article__details--bottom {
  background: #fdfbff !important;
  border: 1px solid #dcd3f5 !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-top: 40px !important;
}

.article__details--bottom .author-top-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.article__details--bottom .avatar img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
}

.article__details--bottom .author-info {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.article__details--bottom .description .name {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.article__details--bottom .author-link-wrapper {
  color: inherit !important;
  text-decoration: none !important;
}

.article__details--bottom .social {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
}

.article__details--bottom .social img {
  width: 24px !important;
  height: 24px !important;
}

.article__details--bottom .author-bio {
  margin-top: 16px !important;
  font-size: 14px !important;
  color: #333 !important;
  line-height: 1.6 !important;
}

.article__details--bottom .read-more {
  margin-top: 8px !important;
  font-size: 13px !important;
  color: #0d6efd !important;
}

.social {
  display: flex !important;
  gap: 10px !important;
  position: relative !important;
}

.social-icon {
  position: relative !important;
  display: inline-block !important;
}

.social-icon img {
  width: 28px !important;
  height: 28px !important;
  cursor: pointer !important;
}

.tooltip {
  position: absolute !important;
  bottom: 140% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #fff !important;
  border: 1px dashed #888 !important;
  padding: 6px 10px !important;
  font-size: 13px !important;
  color: #333 !important;
  white-space: nowrap !important;
  border-radius: 4px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: all 0.2s ease !important;
  z-index: 10 !important;
}

.social-icon:hover .tooltip {
  opacity: 1 !important;
  pointer-events: auto !important;
}