.blog-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #ff3d67;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.blog-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author-name {
  font-weight: 600;
  color: #333;
}

.read-more {
  font-weight: 600;
  color: #ff3d67;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  letter-spacing: 1px;
}
