.bg-yellow {
  background-color: hsl(47, 88%, 63%);
}

.bg-white {
  background-color: hsl(0, 0%, 100%);
}

.bg-black {
  background-color: hsl(0, 0%, 7%);
}

.bg-grey {
  background-color: hsl(0, 0%, 50%);
}

.ft-yellow {
  color: hsl(47, 88%, 63%);
}

.ft-white {
  color: hsl(0, 0%, 100%);
}

.ft-black {
  color: hsl(0, 0%, 7%);
}

.ft-grey {
  color: hsl(0, 0%, 50%);
}

.badge {
  padding: 5px 10px 5px;
  width: fit-content;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 800;
}

@font-face {
  font-family: "Figtree";
  src: url(../assets/fonts/Figtree-VariableFont_wght.ttf);
}
html, body {
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100%;
  font-family: "Figtree";
  display: flex;
  justify-content: center;
  align-items: center;
}
html .card, body .card {
  box-shadow: 7px 7px hsl(0, 0%, 7%);
  border: 1px solid hsl(0, 0%, 7%);
  border-radius: 10px;
  transition: box-shadow 0.15s ease-in-out;
  width: 80%;
  height: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
html .card:hover, body .card:hover {
  box-shadow: 0 0;
}
html .card .card-img, body .card .card-img {
  flex: 45%;
  border-radius: inherit;
}
html .card .card-img img, body .card .card-img img {
  border-radius: inherit;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
html .card .card-details, body .card .card-details {
  flex: 55%;
}
html .card .card-details .publish-date, body .card .card-details .publish-date {
  font-size: 0.9rem;
  font-weight: 600;
}
html .card .card-details .article-title, body .card .card-details .article-title {
  font-weight: 800;
  margin: 0;
  color: hsl(0, 0%, 7%);
  transition: color 0.1s ease-in-out;
  cursor: pointer;
}
html .card .card-details .article-title:active, body .card .card-details .article-title:active {
  color: hsl(47, 88%, 63%);
}
html .card .card-details .article-desc, body .card .card-details .article-desc {
  font-size: 0.9rem;
  line-height: 1.3rem;
}
html .card .card-details .publisher, body .card .card-details .publisher {
  display: flex;
  justify-content: start;
  align-items: center;
}
html .card .card-details .publisher .publisher-avatar, body .card .card-details .publisher .publisher-avatar {
  width: 30px;
}
html .card .card-details .publisher .publisher-name, body .card .card-details .publisher .publisher-name {
  font-size: 0.9rem;
  font-weight: 800;
  margin-left: 15px;
  display: inline-block;
}

@media screen and (min-width: 600px) {
  html .card, body .card {
    width: 50% !important;
  }
}
@media screen and (min-width: 1200px) {
  html .card, body .card {
    width: 22.5% !important;
  }
}

/*# sourceMappingURL=style.css.map */
