.main-blog {
  margin-top: 88px;
}

.content-tiltle {
  font-size: 75px;
  font-weight: 500;
  line-height: 1.1;
  margin: 24px 0;
  color: #188ffe;
}

.btn-cate {
  outline: none;
  padding: 0px 15px;
  border-radius: 5px;
  border: 1px solid #e3e4e8;
  cursor: pointer;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-cate:hover {
  background: #0e88f9;
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .btn-cate {
    margin: 10px 0;
  }
}

/* Blog image container */
.blog-image {
  position: relative;
  overflow: hidden;
}

/* Category tag - góc trên bên phải */
.category-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #37a955;
  color: white;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  z-index: 2;
  transition: all 0.3s ease;
}

.blog-card:hover .category-tag {
  background: #1eb245;
  transform: scale(1.05);
}

/* Tag list - góc dưới bên trái */
.tag-list {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.tag-blog {
  background: rgba(255, 255, 255, 0.95);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-tag {
    top: 8px;
    right: 8px;
    padding: 5px 12px;
    font-size: 12px;
  }

  .tag-list {
    bottom: 8px;
    left: 8px;
  }

  .tag-blog {
    padding: 4px 10px;
    font-size: 11px;
  }
}

.content-btn {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 15px;
  flex-wrap: wrap;
}

.content-cate {
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .content-btn {
    top: 78px;
  }
  .main-blog {
    margin-top: 78px;
  }
}
