/* variabel */
/* mixin */
/*html, body {*/
/*  background: #f1f1f1;*/
/*  font-family: 'Raleway', sans-serif;*/
/*}*/

a {
  text-decoration: none;
}

.layout-article {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0px;
  font-family: 'Raleway', sans-serif;
}
.layout-article ul.box-article {
  list-style: none;
  -webkit-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 0px;
  column-gap: 0px;
}
.layout-article ul.box-article li {
  display: inline-block;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  column-break-inside: avoid;
  padding: 25px;
  background: #ffffff;
  height: auto;
  overflow: hidden;
  margin: 15px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.layout-article ul.box-article li article {
  width: 100%;
}
.layout-article ul.box-article li article h1 {
  transition: ease 0.3s;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  color: #191919;
  margin-bottom: 0;
}
.layout-article ul.box-article li article h2 {
  transition: ease 0.3s;
  font-size: 12px;
  line-height: 21px;
  font-weight: 300;
  color: #9c9c9c;
  margin-bottom: 15px;
}
.layout-article ul.box-article li article figure {
  width: 100%;
}
.layout-article ul.box-article li article figure img {
  width: 100%;
}
.layout-article ul.box-article li article figure iframe {
  width: 100%;
}
.layout-article ul.box-article li article p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  color: #1d1d1d;
}
.layout-article ul.box-article li article span {
  width: 100%;
  display: block;
  padding: 15px;
  text-align: center;
  background: #00ff6d;
  margin-left: -15px;
  color: #ffffff;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  transition: ease 0.3s;
}
.layout-article ul.box-article li:hover article h1 {
  color: #00ff6d;
}
.layout-article ul.box-article li:hover article span {
  /* @include translateY(0px); */
}
@media only screen and (max-width: 480px) {
  .layout-article ul.box-article {
    -webkit-column-count: 1;
    column-count: 1;
  }
}
@media only screen and (min-width: 481px) and (max-width: 1023px) {
  .layout-article ul.box-article {
    -webkit-column-count: 2;
    column-count: 2;
  }
}

/*.credit {*/
/*  position: fixed;*/
/*  bottom: 15px;*/
/*  right: 15px;*/
/*  width: 150px;*/
/*  height: 100px;*/
/*  background: url(http://tlab.co.id/images/logo.png) no-repeat center center;*/
/*}*/
