.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 20px 0;
}

.blog-card {
  background: #111315;
  border: 1px solid #212327;
  border-radius: 8px;
  transition: transform 0.3s ease;
  padding: 16px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.card-image img {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
}

.card-content {
  padding: 15px 0;
}

.card-meta-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-avatar img {
  border-radius: 50%;
  margin-right: 10px;
}

.meta-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #ffffff;
}

.author-name {
  font-weight: bold;
  color: #ffffff;
}

.card-title a {
  text-decoration: none;
  color: #9cc9f5;
  font-size: 1.2rem;
  font-weight: 700;
}

.card-excerpt {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.5;
  height: 80px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-footer {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #888;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.likes-container .wp_ulike_btn img,
.likes-container .wp_ulike_btn i {
  width: 18px !important;
  height: auto !important;
}

.blog-header-info {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 15px;
}

.blog-header-info h2 {
  color: #ec870e;
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: 30px;
}
