.articles-main-container .lead {
  color: #aaa;
}

.articles-main-container .wrapper {
  margin: 5vh 0;
}

.articles-main-container .card {
  border: none;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  overflow: hidden;
  border-radius: 20px;
  min-height: 450px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

@media (max-width: 992px) {
  .articles-main-container .card {
    min-height: 400px;
  }
  .articles-main-container .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .articles-main-container .card {
    min-height: 350px;
  }
  .articles-main-container .card-title {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .articles-main-container .wrapper {
    margin: 2vh 0;
  }
  .articles-main-container .card {
    min-height: 300px;
  }
  .articles-main-container .card-title {
    font-size: 0.9rem;
  }
}

.articles-main-container .card-has-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.articles-main-container .card-has-bg:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 186, 33, 0.1);
  transition: background 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.articles-main-container .card-has-bg:hover:before {
  background: transparent;
}

.articles-main-container .card-title {
  font-weight: 800;
}

.articles-main-container .card-meta {
  color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
}

.articles-main-container .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffba21;
  color: #000;
  padding: 15px;
  transition: transform 500ms cubic-bezier(0.19, 1, 0.22, 1);
}

.articles-main-container .card:hover .card-body {
  transform: translateY(0);
}

.articles-main-container .card:hover {
  cursor: pointer;
}
