	.cateogory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: #f8f9fa;
}

.category-item {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #be9a5a, #8b6b43);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.category-item:hover .category-badge {
  opacity: 1;
  transform: translateY(0);
}

.category-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
  transition: opacity 0.3s ease;
}

.category-item:hover .category-img img {
  transform: scale(1.1);
}

.category-info {
  padding: 2rem;
}

.category-info h2 {
  margin: 0 0 1rem;
  position: relative;
}

.category-info h2 a {
  /*color: #1a1a1a;*/
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.title-underline {
  width: 50px;
  height: 3px;
  background: rgb(139, 114, 50);
  margin: 1rem 0;
  transition: width 0.3s ease;
}

.category-item:hover .title-underline {
  width: 100px;
}

.category-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.highlight {
  color: rgb(139, 114, 50);
}

.emphasis {
  color: #1a1a1a;
  font-weight: 700;
}

.keyword-list, .partner-list {
  display: block;
  color: #444;
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(139, 114, 50);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-more i {
  transition: transform 0.3s ease;
}

.view-more:hover {
  color: #1557b0;
}

.view-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cateogory-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .category-img {
    height: 200px;
  }
  
  .category-info {
    padding: 1.5rem;
  }
}
