.blog-content-single .blog-count-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.blog-content-single hr {
  border: 0;
  border-top: 0.5px solid #fff;
  flex: 1;
}

.blog-content-single .blog-count {
  background: #044481;
  padding: 8px 15px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
}

.blog-content-single .blog-count p {
  margin: 0;
  color: #fbfbfb;
}

.blog-content-single .table-blog {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.blog-content-single .table-blog th {
  background: #044481;
  color: #fff;
  padding: 14px;
  text-align: left;
  font-weight: 600;
}

.blog-content-single .table-blog td {
  padding: 14px;
  border-bottom: 1px solid #e5e5e5;  
  text-align: left;
  background: #fff;
}

.blog-content-single .table-blog tr:last-child td {
  border-bottom: none;
}

.blog-content-single .table-blog tr:hover td {
  background: #f5f9ff;
}

@media (max-width: 768px) {
  .blog-content-single .table-blog td,
  .blog-content-single .table-blog th {
    padding: 10px;
    font-size: 14px;
  }
  
}

.blog-content-single .blog-img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.blog-content-single .blog-img img {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-content-single .blog-img img {
    max-width: 100%;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .blog-content-single .blog-img img {
    border-radius: 6px;
  }
}
