.jk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.jk-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.jk-card:hover {
  transform: translateY(-5px);
}

.jk-image {
  position: relative;
}

.jk-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.jk-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1e3a8a;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.jk-content {
  padding: 20px;
}

.jk-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.jk-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.jk-button {
  display: inline-block;
  padding: 10px 18px;
  background: #fbbf24;
  color: #000;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.jk-button:hover {
  background: #f59e0b;
}
