/* Professional Blog Styles */
:root {
  --blog-primary: #1a365d;
  --blog-gold: #d4a44a;
  --blog-dark: #0a1628;
  --blog-light: #f1f5f9;
}

/* Fix Horizontal Scrolling */
*, *::before, *::after {
  box-sizing: border-box;
}

body, html {
  overflow-x: hidden !important;
  width: 100% !important;
}

img {
  max-width: 100%;
  height: auto;
}

/* Blog Hero */
.blog-hero {
  position: relative;
  min-height: 400px;
  background: url('asset/aboutheroimage.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 100px;
  margin-top: 100px;
}

.blog-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(10, 22, 40, 0.95));
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero .hero-content {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--blog-gold);
}

.blog-hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-search {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-search input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  outline: none;
}

.hero-search button {
  padding: 15px 30px;
  background: var(--blog-gold);
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-search button:hover {
  background: #d4a44a;
}

/* Blog Main Layout */
.blog-main {
  padding: 60px 0;
  background: var(--blog-light);
}

.blog-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
  font-size: 18px;
  color: var(--blog-primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blog-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-widget h3 i {
  color: var(--blog-gold);
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 12px 15px;
  margin-bottom: 8px;
  background: var(--blog-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222121;
}

.category-list li:hover,
.category-list li.active {
  background: var(--blog-primary);
  color: #fff;
}

.category-list li .count {
  background: var(--blog-gold);
  color: #000;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.category-list li.active .count {
  background: #fff;
  color: var(--blog-primary);
}

/* Recent Posts */
.recent-posts .recent-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: all 0.3s;
}

.recent-posts .recent-item:last-child {
  border-bottom: none;
}

.recent-posts .recent-item:hover {
  transform: translateX(5px);
}

.recent-posts .recent-item .thumb {
  width: 60px;
  height: 60px;
  background: var(--blog-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blog-gold);
  flex-shrink: 0;
}

.recent-posts .recent-item .info h4 {
  font-size: 14px;
  margin: 0 0 5px;
  color: #333;
  line-height: 1.4;
}

.recent-posts .recent-item .info span {
  font-size: 12px;
  color: #888;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, var(--blog-primary), var(--blog-dark)) !important;
  color: #fff;
  text-align: center;
}

.cta-widget h3 {
  color: var(--blog-gold) !important;
  border-bottom-color: rgba(255,255,255,0.2) !important;
  justify-content: center;
}

.cta-widget p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Posts Section */
.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.posts-header h2 {
  font-size: 28px;
  color: var(--blog-primary);
  margin: 0;
}

.view-toggle button {
  background: #fff;
  border: 2px solid #ddd;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.view-toggle button:first-child {
  border-radius: 8px 0 0 8px;
}

.view-toggle button:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.view-toggle button.active,
.view-toggle button:hover {
  background: var(--blog-primary);
  border-color: var(--blog-primary);
  color: #fff;
}

/* Blog Posts Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.blog-posts-grid.list-view {
  grid-template-columns: 1fr;
}

/* Post Card */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: all 0.4s;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.post-card .card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--blog-primary), var(--blog-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.post-card .card-image i {
  font-size: 50px;
  color: var(--blog-gold);
  opacity: 0.5;
}

.post-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card .card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--blog-gold);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.post-card .card-body {
  padding: 25px;
}

.post-card .card-body h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.post-card .card-body p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.post-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #888;
}

.post-card .card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-card .read-more {
  color: var(--blog-primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* List View */
.blog-posts-grid.list-view .post-card {
  display: grid;
  grid-template-columns: 250px 1fr;
}

.blog-posts-grid.list-view .post-card .card-image {
  height: 100%;
  min-height: 200px;
}

/* Single Post View */
.single-post-view {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blog-primary);
  font-weight: 600;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all 0.3s;
}

.back-link:hover {
  color: var(--blog-gold);
  transform: translateX(-5px);
}

.post-detail .post-header {
  margin-bottom: 30px;
}

.post-detail .post-category {
  display: inline-block;
  background: var(--blog-gold);
  color: #000;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.post-detail h1 {
  font-size: 36px;
  color: var(--blog-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.post-detail .post-meta {
  display: flex;
  gap: 25px;
  color: #666;
  font-size: 14px;
}

.post-detail .post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.post-detail .post-meta i {
  color: var(--blog-gold);
}

.post-detail .post-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.post-detail .post-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

/* No image placeholder for single post view */
.post-detail .post-image .no-image-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--blog-primary), var(--blog-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.post-detail .post-image .no-image-placeholder i {
  font-size: 80px;
  color: var(--blog-gold);
  opacity: 0.8;
}

.post-detail .post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

.post-detail .post-content p {
  margin-bottom: 20px;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #eee;
}

.post-share span {
  font-weight: 600;
  color: #333;
}

.post-share a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blog-light);
  border-radius: 50%;
  color: var(--blog-primary);
  transition: all 0.3s;
}

.post-share a:hover {
  background: var(--blog-primary);
  color: #fff;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.blog-pagination button {
  padding: 10px 18px;
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.blog-pagination button:hover,
.blog-pagination button.active {
  background: var(--blog-primary);
  border-color: var(--blog-primary);
  color: #fff;
}

/* CTA Banner */
.cta-banner {
  background: url('asset/appointment-bg.jpg') center/cover no-repeat;
  position: relative;
}

.cta-banner .overlay {
  background: rgba(10, 22, 40, 0.9);
  padding: 80px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 36px;
  color: var(--blog-gold);
  margin-bottom: 15px;
}

.cta-banner p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Loading States */
.loading-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: #888;
}

.loading-posts i {
  color: var(--blog-gold);
  margin-bottom: 15px;
}

/* No Posts */
.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  background: #fff;
  border-radius: 16px;
}

.no-posts i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.no-posts h3 {
  color: #666;
  margin-bottom: 10px;
}

.no-posts p {
  color: #888;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .sidebar-widget {
    margin-bottom: 0;
  }
  
  .blog-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 350px;
  }
  
  .blog-hero h1 {
    font-size: 28px;
  }
  
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-posts-grid.list-view .post-card {
    grid-template-columns: 1fr;
  }
  
  .single-post-view {
    padding: 25px;
  }
  
  .post-detail h1 {
    font-size: 26px;
  }
  
  .post-detail .post-meta {
    flex-wrap: wrap;
    gap: 15px;
  }
}


/* ========================================
   ENGAGEMENT FEATURES - Views, Likes, Comments
   ======================================== */

/* Card Stats on Post Cards */
.card-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.card-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666;
}

.card-stats .stat-item i {
  font-size: 14px;
}

.card-stats .stat-item:nth-child(1) i { color: #3498db; }
.card-stats .stat-item:nth-child(2) i { color: #e74c3c; }
.card-stats .stat-item:nth-child(3) i { color: #9b59b6; }

/* Post Engagement Section */
.post-engagement {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.engagement-stats {
  display: flex;
  align-items: center;
  gap: 30px;
}

.like-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #fff;
  border: 2px solid #e74c3c;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
  color: #e74c3c;
}

.like-btn:hover {
  background: #fef0f0;
  transform: scale(1.05);
}

.like-btn.liked {
  background: #e74c3c;
  color: #fff;
}

.like-btn.liked:hover {
  background: #c0392b;
}

.like-btn i {
  font-size: 18px;
}

.like-btn.like-animation {
  animation: likePopup 0.3s ease;
}

@keyframes likePopup {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.stat-display {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #666;
}

.stat-display i {
  color: var(--blog-primary);
}

/* ========================================
   FACEBOOK-STYLE COMMENTS SECTION
   ======================================== */

.comments-section {
  margin-top: 40px;
}

/* Facebook Comments Container */
.fb-comments-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Comments Header */
.fb-comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #e4e6eb;
}

.fb-comments-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: #1c1e21;
}

.fb-comments-title i {
  color: var(--blog-primary);
}

.fb-comments-count {
  background: var(--blog-primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.fb-comments-sort select {
  padding: 8px 12px;
  border: none;
  background: #f0f2f5;
  border-radius: 6px;
  font-size: 14px;
  color: #65676b;
  cursor: pointer;
  outline: none;
}

.fb-comments-sort select:hover {
  background: #e4e6eb;
}

/* Comment Input Box */
.fb-comment-input-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #f7f8fa;
  border-bottom: 1px solid #e4e6eb;
}

.fb-comment-avatar .avatar-circle,
.fb-comment-avatar .avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blog-primary), var(--blog-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.fb-comment-form-wrapper {
  flex: 1;
}

.fb-user-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.fb-user-info-row.visible {
  max-height: 50px;
  opacity: 1;
}

.fb-input-name,
.fb-input-email {
  padding: 10px 14px;
  border: 1px solid #dddfe2;
  border-radius: 20px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s;
}

.fb-input-name:focus,
.fb-input-email:focus {
  outline: none;
  border-color: var(--blog-primary);
  box-shadow: 0 0 0 2px rgba(30, 75, 122, 0.1);
}

.fb-textarea-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #fff;
  border: 1px solid #dddfe2;
  border-radius: 20px;
  padding: 4px 4px 4px 14px;
  transition: all 0.2s;
}

.fb-textarea-wrapper:focus-within {
  border-color: var(--blog-primary);
  box-shadow: 0 0 0 2px rgba(30, 75, 122, 0.1);
}

.fb-comment-textarea {
  flex: 1;
  border: none;
  outline: none;
  resize: none;
  font-size: 15px;
  line-height: 1.4;
  padding: 8px 0;
  max-height: 150px;
  background: transparent;
  font-family: inherit;
}

.fb-comment-textarea::placeholder {
  color: #8a8d91;
}

.fb-comment-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fb-emoji-picker {
  position: relative;
}

.fb-emoji-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #65676b;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}

.fb-emoji-btn:hover {
  background: #f0f2f5;
  color: var(--blog-gold);
}

.fb-emoji-dropdown {
  position: absolute;
  bottom: 45px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 100;
}

.fb-emoji-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fb-emoji-dropdown span {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.fb-emoji-dropdown span:hover {
  background: #f0f2f5;
  transform: scale(1.2);
}

.fb-submit-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--blog-primary);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-submit-btn:hover {
  background: var(--blog-dark);
  transform: scale(1.05);
}

.fb-submit-btn:disabled {
  background: #bcc0c4;
  cursor: not-allowed;
}

.fb-comment-notice {
  margin: 10px 0 0;
  font-size: 12px;
  color: #8a8d91;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fb-comment-notice i {
  color: var(--blog-gold);
}

/* Comments List */
.fb-comments-list {
  padding: 8px 0;
}

/* Single Comment Item */
.fb-comment-item {
  display: flex;
  gap: 10px;
  padding: 8px 16px;
  animation: fadeInUp 0.3s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fb-comment-item .fb-comment-avatar .avatar-circle {
  width: 36px;
  height: 36px;
  font-size: 13px;
  font-weight: 600;
}

.fb-comment-item .fb-comment-avatar .avatar-circle span {
  color: #fff;
}

.fb-comment-content {
  flex: 1;
  min-width: 0;
}

.fb-comment-bubble {
  background: #f0f2f5;
  padding: 10px 14px;
  border-radius: 18px;
  display: inline-block;
  max-width: 100%;
}

.fb-comment-author {
  font-weight: 600;
  font-size: 13px;
  color: #050505;
  margin-bottom: 2px;
}

.fb-comment-author:hover {
  text-decoration: underline;
  cursor: pointer;
}

.fb-comment-text {
  font-size: 15px;
  color: #050505;
  line-height: 1.4;
  word-wrap: break-word;
}

.fb-comment-text a {
  color: var(--blog-primary);
}

/* Comment Meta Actions */
.fb-comment-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  font-size: 12px;
}

.fb-meta-btn {
  background: none;
  border: none;
  color: #65676b;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.fb-meta-btn:hover {
  color: var(--blog-primary);
  text-decoration: underline;
}

.fb-meta-btn.liked {
  color: var(--blog-primary);
}

.fb-comment-time {
  color: #8a8d91;
  font-size: 12px;
}

/* Reply Form */
.fb-reply-form-container {
  margin-top: 8px;
  margin-left: 12px;
}

.fb-reply-input {
  display: flex;
  gap: 8px;
  animation: fadeInUp 0.2s ease;
}

.fb-reply-avatar .avatar-circle.small {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.fb-reply-form {
  flex: 1;
}

.fb-reply-name {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #dddfe2;
  border-radius: 16px;
  font-size: 13px;
  margin-bottom: 6px;
  outline: none;
}

.fb-reply-name:focus {
  border-color: var(--blog-primary);
}

.fb-reply-textarea-wrapper {
  display: flex;
  align-items: center;
  background: #f0f2f5;
  border-radius: 18px;
  padding: 4px 4px 4px 12px;
}

.fb-reply-textarea {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  resize: none;
  font-size: 14px;
  padding: 6px 0;
  font-family: inherit;
}

.fb-reply-submit {
  width: 30px;
  height: 30px;
  border: none;
  background: var(--blog-primary);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.2s;
}

.fb-reply-submit:hover {
  background: var(--blog-dark);
}

/* Pending Comment */
.fb-comment-pending {
  opacity: 0;
  transition: opacity 0.3s;
}

.fb-comment-pending.visible {
  opacity: 1;
}

.fb-comment-pending .fb-comment-bubble {
  background: #e7f3ff;
  border: 1px dashed var(--blog-primary);
}

.fb-pending-badge {
  color: var(--blog-gold);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* No Comments */
.fb-no-comments {
  text-align: center;
  padding: 50px 20px;
  color: #65676b;
}

.fb-no-comments-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: #f0f2f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-no-comments-icon i {
  font-size: 36px;
  color: #bcc0c4;
}

.fb-no-comments h4 {
  font-size: 17px;
  color: #1c1e21;
  margin-bottom: 4px;
}

.fb-no-comments p {
  font-size: 14px;
  color: #65676b;
}

/* Load More Button */
.fb-load-more {
  padding: 12px 16px;
  border-top: 1px solid #e4e6eb;
}

.fb-load-more-btn {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  color: #65676b;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.fb-load-more-btn:hover {
  background: #f0f2f5;
  color: var(--blog-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .fb-comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .fb-user-info-row {
    grid-template-columns: 1fr;
  }
  
  .fb-comment-input-box {
    padding: 12px;
  }
  
  .fb-comment-item {
    padding: 8px 12px;
  }
  
  .fb-emoji-dropdown {
    grid-template-columns: repeat(4, 1fr);
    right: -50px;
  }
}

/* Notification Toast */
.blog-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  background: #333;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
}

.blog-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.blog-notification.success {
  background: #27ae60;
}

.blog-notification.error {
  background: #e74c3c;
}

.blog-notification i {
  font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .engagement-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .card-stats {
    justify-content: space-between;
  }
  
  .blog-notification {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}


/* Recent Posts Stats */
.recent-posts .recent-item .info .recent-stats {
  display: inline-block;
  margin-left: 10px;
  font-size: 11px;
  color: #999;
}

.recent-posts .recent-item .info .recent-stats i {
  color: var(--blog-gold);
  margin-right: 3px;
}

/* Button Gold Style */
.btn-gold {
  background: var(--blog-gold);
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-gold:hover {
  background: #d4a44a;
  color: #000;
  transform: translateY(-2px);
}


/* ========================================
   LOGIN REQUIRED COMMENT STYLES
   ======================================== */

/* Login Prompt Box */
.fb-login-prompt {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  margin: 16px;
}

.fb-login-prompt-icon {
  width: 60px;
  height: 60px;
  background: var(--blog-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-login-prompt-icon i {
  font-size: 24px;
  color: #fff;
}

.fb-login-prompt-content h4 {
  font-size: 18px;
  color: #1c1e21;
  margin-bottom: 5px;
}

.fb-login-prompt-content p {
  font-size: 14px;
  color: #65676b;
  margin-bottom: 15px;
}

.fb-login-prompt-buttons {
  display: flex;
  gap: 12px;
}

.fb-btn-login,
.fb-btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.fb-btn-login {
  background: var(--blog-primary);
  color: #fff;
}

.fb-btn-login:hover {
  background: var(--blog-dark);
  color: #fff;
  transform: translateY(-2px);
}

.fb-btn-signup {
  background: #fff;
  color: var(--blog-primary);
  border: 2px solid var(--blog-primary);
}

.fb-btn-signup:hover {
  background: var(--blog-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Logged-in User Info */
.fb-logged-user-info {
  margin-bottom: 10px;
}

.fb-commenting-as {
  font-size: 13px;
  color: #65676b;
}

.fb-commenting-as strong {
  color: var(--blog-primary);
}

.fb-replying-as {
  display: block;
  font-size: 12px;
  color: #65676b;
  margin-bottom: 8px;
}

.fb-replying-as strong {
  color: var(--blog-primary);
}

/* New Comment Animation */
.fb-comment-new {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.fb-comment-new.visible {
  opacity: 1;
  transform: translateY(0);
}

.fb-comment-new .fb-comment-bubble {
  background: #e7f3ff;
  border: 1px solid rgba(30, 75, 122, 0.2);
}

/* Responsive */
@media (max-width: 576px) {
  .fb-login-prompt {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .fb-login-prompt-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .fb-btn-login,
  .fb-btn-signup {
    justify-content: center;
  }
}
