
.blog-content {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #2b2b2b;
}

/* Headings */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin: 1.8rem 0 1.1rem;
}

/* Drop Cap (first paragraph only) */
.blog-content > p:first-of-type::first-letter {
  float: left;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  padding: 5px 12px 0 0;
  color: #2563eb;
}

/* Remove drop-cap everywhere else */
.blog-content p:not(:first-of-type)::first-letter {
  float: none !important;
  font-size: inherit !important;
  padding: 0 !important;
  color: inherit !important;
}

/* Paragraphs */
.blog-content p {
  margin-bottom: 1.25rem;
}

/* Links */
.blog-content a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: underline;
}
.blog-content a:hover {
  color: #7c3aed;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  margin: 0 0 1rem;
  padding-left: 1.6rem;
}
.blog-content li {
  margin-bottom: 0;
}

.blog-content li p{
    margin-bottom: 0
}

/* Blockquote */
.blog-content blockquote {
  border-left: 4px solid #2563eb;
  background: #eef6ff;
  padding: 1.2rem 1.6rem;
  border-radius: 0.6rem;
  font-style: italic;
  margin: 2rem 0;
}

/* Images */
.blog-content img {
  max-width: 100%;
  border-radius: 1rem;
  margin: 1.8rem 0;
}

/* Divider */
.blog-content hr {
  border: none;
  height: 2px;
  background: #e2e8f0;
  margin: 2rem 0;
}

/* --- Stylized Table (Professional + Mobile Friendly) --- */
.blog-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  display: block;
  overflow-x: auto;
}

/* Smooth horizontal scroll on mobile */
.blog-content table::-webkit-scrollbar {
  height: 6px;
}
.blog-content table::-webkit-scrollbar-thumb {
  background: #c3c8d1;
  border-radius: 5px;
}

/* Header */
.blog-content thead {
  background: linear-gradient(to right, #2563eb, #7c3aed);
}
.blog-content thead th {
  color: #fff;
  padding: 14px 20px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Row Cards */
.blog-content tbody tr {
  background: #fff;
  transition: 0.22s ease;
  border-radius: 12px;
}
.blog-content tbody tr:hover {
  background: #eef4ff;
  transform: translateY(-2px);
}

/* Row Cells */
.blog-content td {
  padding: 14px 20px;
  white-space: nowrap;
  vertical-align: middle;
}

/* Rounded Row */
.blog-content tbody tr td:first-child {
  border-radius: 12px 0 0 12px;
}
.blog-content tbody tr td:last-child {
  border-radius: 0 12px 12px 0;
}

/* Floating Share */
.share-floating { position: fixed; top: 50%; left: 28px; transform: translateY(-50%); z-index: 2000; }
.share-icons { list-style: none; margin: 0; padding: 0; }
.share-icons li { margin: 10px 0; }
.share-icons a, .share-toggle {
  width: 45px; height: 45px;
  background: linear-gradient(to right, #2563eb, #7c3aed);
  color: #fff; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 20px;
  transition: .25s ease;
}
.share-icons a:hover { transform: scale(1.1); box-shadow: 0 8px 18px rgba(0,0,0,0.18); }

/* Mobile Share */
@media (max-width: 992px) {
  .share-floating { right: 20px; left: auto; bottom: 20px; top: auto; transform: none; }
  .share-icons { display: none; background: #fff; padding: 12px; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.14); }
  .share-floating.active .share-icons { display: block; }
}

/* Author Box */
.author-bio { padding-top: 24px; margin-top: 48px; display: flex; gap: 18px; align-items: center; }
.author-photo { width: 80px; height: 80px; object-fit: cover; }
.author-name { font-size: 1.3rem; font-weight: 700; margin: 0 0 4px; color: #0f172a; }
.author-desc { font-size: .95rem; color: #475569; line-height: 1.55; margin: 0; }
.author-link { color: #2563eb; font-weight: 600; text-decoration: none; }
.author-link:hover { color: #7c3aed; text-decoration: underline; }

@media (max-width: 576px) {
  .author-bio { flex-direction: column; text-align: center; }
}
