.artikel-item {
  position: relative;
  transition: all 1s ease 0s;
  cursor: pointer;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 8px 16px 0px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 8px;
  width: 200px;
  background-color: #fff;
}
.artikel-image {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.artikel-image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 75%;
}
.category-icon {
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  line-height: 16px;
}
.category-icon svg {
  width:16px;
  height:16px;
  display: inline-block;
  font-size: 1.5rem;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  -moz-user-select: none;
}

.artikel-kategori {
  margin: 10px 16px 0 16px;
}
.artikel-kategori-text {
max-width: 100%;
font-size: 12px;
line-height: 16px;
letter-spacing: 2px;
margin: 0;
margin-left: 9px;
text-transform: uppercase;
}
.artikel-kategori-text a {
  color: rgb(45, 179, 198);
}

.artikel-title {
  display: block;
  display: -webkit-box;
  height: 72px;
  margin: 10px;
  margin-top: 5px;
  color: #3e6255;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artikel-title a { color: #000 }
.artikel-title a:hover {
  color: #3e6255;
}