.hh-courses-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.hh-course-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.hh-course-card:hover {
  transform: translateY(-5px);
}

.hh-course-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hh-course-inner {
  display: flex;
  align-items: stretch;
}

.hh-course-image {
  width: 200px;
  flex-shrink: 0;
}

.hh-course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hh-course-content {
  padding: 20px;
  position: relative;
  flex-grow: 1;
}

.hh-course-type {
  color: #2BAEA1;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

.hh-course-title {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.hh-course-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.hh-course-price {
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-symbol {
  color: #2BAEA1;
  font-size: 14px;
}

.price-amount {
  color: #2BAEA1;
  font-size: 24px;
  font-weight: bold;
}

.hh-course-bookmark {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.bookmark-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 3;
}

.bookmark-btn .dashicons {
  color: #999;
  font-size: 24px;
  transition: color 0.3s ease;
}

.bookmark-btn.active .dashicons {
  color: #2BAEA1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hh-course-inner {
    flex-direction: column;
  }

  .hh-course-image {
    width: 100%;
    height: 200px;
  }

  .hh-courses-grid {
    padding: 15px;
  }
}