/*
 * Single blog post view — social share + article typography only.
 * Listing/grid styles stay in blogs.css.
 */

.sofiya-1 {
  margin-bottom: 3rem;
}

.sofiya-1 h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.sofiya-1 h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.sofiya-1 p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.sofiya-1 blockquote {
  border-left: 4px solid #0056b3;
  padding-left: 1.5rem;
  font-style: italic;
  margin: 2rem 0;
}

.sofiya-1 ul,
.sofiya-1 ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.sofiya-1 li {
  margin-bottom: 0.5rem;
}

.sofiya-1 img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.social-share-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  max-width: 60px;
  margin-left: auto;
  margin-right: auto;
}

.social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.social-share-btn.linkedin:hover {
  background: #005885;
  color: white;
}

.social-share-btn.facebook {
  background: #1877f2;
  color: white;
}

.social-share-btn.facebook:hover {
  background: #166fe5;
  color: white;
}

.social-share-btn.twitter {
  background: #000000;
  color: white;
}

.social-share-btn.twitter:hover {
  background: #333333;
  color: white;
}

.social-share-mobile {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-share-btn-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.social-share-btn-mobile:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.social-share-btn-mobile.linkedin {
  background: #0077b5;
  color: white;
}

.social-share-btn-mobile.linkedin:hover {
  background: #005885;
  color: white;
}

.social-share-btn-mobile.facebook {
  background: #1877f2;
  color: white;
}

.social-share-btn-mobile.facebook:hover {
  background: #166fe5;
  color: white;
}

.social-share-btn-mobile.twitter {
  background: #000000;
  color: white;
}

.social-share-btn-mobile.twitter:hover {
  background: #333333;
  color: white;
}

@media (max-width: 991.98px) {
  .social-share-sidebar {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .social-share-mobile {
    justify-content: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #e9ecef;
  }

  .social-share-btn-mobile {
    width: 45px;
    height: 45px;
  }

  .social-share-mobile,
  .social-share-sidebar {
    max-width: 100%;
    overflow: hidden;
  }
}
