
    
body, h1, h2, h3, h4, h5, h6, p, a, span, small {
    font-family: 'Roboto', sans-serif !important;
}



/* Blog main image */
.blog-header img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); */
}

/* Blog Content Area */
.blog-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333;
}

.blog-content h2, 
.blog-content h3, 
.blog-content h4 {
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.blog-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
    font-size: 15px;
}

/* Meta Info */
.blog-meta {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

/* Sidebar */
.sidebar {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sidebar h5 {
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.recent-post {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post:hover {
    transform: translateX(5px);
}

.recent-post img {
    width: 75px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.recent-post .ms-3 {
    margin-left: 15px !important; 
}

.recent-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px; 
    line-height: 1.0;
}

.recent-post-date {
    font-weight: 500;
    font-size: 13px;
    color: #4fae70;     
    display: block;
}


@media (max-width: 768px) {
    .blog-header img {
        height: 280px;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}

.blog-content ul,
.blog-content ol {
    margin: 1.2rem 0 1.2rem 1.5rem;   
    padding-left: 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: #333;
}

.blog-content li {
    margin-bottom: 0.6rem;
    padding-left: 5px;
    position: relative;
    list-style: square;
}

.blog-content ul li::marker {
    color: #4ca1af; 
    font-size: 1.1rem;
}

.blog-content ol li::marker {
    color: #4ca1af;
    font-weight: 600;
}


.author-box {
    border-left: 4px solid #16904c; 
    background-color: #fdfdfd;
    margin-top: 2rem; 
    padding: 1.5rem; 
    border-radius: 0.5rem; 
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); 
    display: flex; 
    align-items: flex-start; 
}

.author-image {
    margin-right: 1.5rem; 
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover; 
    border: 2px solid #16904c; 
}

.author-info {
    flex: 1; 
}

.author-info h4 {
    margin-bottom: 0.25rem; 
    color: #16904c; 
    font-size: 20px;
}

.author-info h4::before {
    font-weight: normal;
    color: #6c757d; 
}

.author-info p {
    color: #6c757d;
    margin-bottom: 0.5rem; 
    line-height: 1.5;
}

.author-social {
    margin-top: 0.5rem; 
}

.author-social a {
    color: #16904c;
    text-decoration: none;
    margin-right: 0.5rem; 
    font-size: 15px; 
}

.author-social a:hover {
    color: #fdb813;
    opacity: 0.8;
}

.author-social i {
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem; /* Reduce padding for smaller screens */
    margin-top: 1.5rem;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .author-image img {
    width: 80px;
    height: 80px;
  }

  .author-info {
    text-align: center;
  }

  .author-info h4 {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }

  .author-info p {
    margin-bottom: 1rem;
    padding: 0 0.5rem; /* Add side padding for narrow screens */
  }

  .author-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center; /* Center social icons */
    flex-wrap: wrap; /* Allow wrapping if many icons */
  }

  .author-social a {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    font-size: 18px; /* Larger for touch targets */
  }

  .author-social a:last-child {
    margin-right: 0;
  }
}

.me-4 {
    margin-right: 1.5rem !important;
}

.social-share h6 {
    font-weight: 600;
    color: #333;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Circular button style */
.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Platform Colors */
.social-btn.facebook { background: #3b5998; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.linkedin { background: #0077b5; }
.social-btn.whatsapp { background: #25d366; }

/* Hover effect */
.social-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


.comments-section h5, .comment-form h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.comment {
    border-left: 3px solid #fdb813;
}

.comment p {
    margin-bottom: 0;
}

.comment-form textarea, .comment-form input {
    border-radius: 5px;
}

.comment-form button {
    border-radius: 5px;
}

.swal2-container .swal2-popup {
  width: 450px !important;
  max-width: 90% !important;
  border-radius: 1rem !important;
  padding: 2em !important;
  background: #fff !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
}

/* Optional typography */
.swal2-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #333 !important;
}

.swal2-html-container {
  font-size: 15px !important;
  color: #555 !important;
}

/* Optional button styling */
.swal2-confirm {
  background-color: #3085d6 !important;
  border-radius: 8px !important;
  padding: 10px 25px !important;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li a:hover {
    text-decoration: underline;
}