/* CONTAINER */
.umkm-container {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */
.umkm-card {
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

/* IMAGE */
.umkm-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* INFO */
.umkm-info {
  padding: 20px;
  flex: 1;
}

.umkm-info h3 {
  margin-bottom: 10px;
}

.desc {
  margin-bottom: 15px;
  color: #555;
}

/* INFO BOX */
.info-box p {
  margin: 5px 0;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #ff9800;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.btn:hover {
  background: #e68900;
}