.home-blog-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.home-blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-blog-title {
  background: #e3f2fd;
  padding: 20px;
  margin: 0;
}

.home-blog-title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.home-blog-title a {
  color: #333;
  text-decoration: none;
}

.home-blog-content {
  background: #f1f8fe;
  padding: 20px;
  min-height: 120px;
}

.home-blog-content p {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  gap: 8px;
}

.blog-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: #fff;
  border: 1px solid #dee2e6;
  color: #007bff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

.blog-pagination a:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
  color: #0056b3;
  text-decoration: none;
}

.blog-pagination a.active {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  z-index: 3;
}

.blog-pagination a.disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
  opacity: 0.65;
}

.blog-post-text {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  transition: transform 0.2s ease-in-out;
}

.blog-post-text:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-post-text h3 {
  margin-bottom: 15px;
}

.blog-post-text h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-post-text h3 a:hover {
  color: #007bff;
}

.blog-post-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.excerpt-more {
  margin-top: 15px;
  text-align: center;
}

.excerpt-more a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #007bff;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.excerpt-more a:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.company-name {
  font-size: 14px;
  font-weight: 900;
  color: #007bff;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: -0.2px;
}

@media (max-width: 991px) {
  .company-name {
    display: none;
  }
}
