html {
  font-family: 'Roboto', sans-serif;
}
img {
  max-width:100%;
  display: block;
}
.wrapper {
  width:1140px;
  margin: 0 auto;
}
h2 {
  text-transform: uppercase;
  margin-bottom: 0;
}
.subnav {
  display: flex;
  margin: 10px 0 20px;
}
.subnav a {
  color:#000;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border:1px solid #a6a6a6;
  border-radius:15px;
  padding:5px 10px;
  margin-right: 10px;
  transition:.2s all ease-in-out;
}
.subnav a:hover {
  color:#014cbb;
  border-color:#014cbb;
}

/* Available on all articles */
.news {
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1rem;
}
.article__img {
  position: relative;
}
.article__img img {
  border-radius:5px;
}
.category {
  position: absolute;
  left:10px;
  top:10px;
  font-size: 10px;
  background:#1168e9;
  color:#fff;
  font-weight: 700;
  text-transform: uppercase;
  padding:7px 10px;
  border-radius:5px;
  color:#fff;
}
.article__info {
  display: flex;
  font-size: 12px;
}
.tags span {
  border-width: 1px;
  border-style:solid;
  padding:3px 5px;
  border-radius:10px;
  font-weight: 700;
  font-size: 11px;
  margin-left: 3px;
}
h3 {
  font-size: 15px;
  line-height: 20px;
}
/* Only on Big articles */
.article--big .article__content {
  position: absolute;
  bottom:0;
  padding:10px;
}
.article--big a * {
  color:#fff;
}
.article--big .tags span {
  border-color:#fff;
}
.article--big:hover h3 {
  color:#d7d7d7;
}
.article--big .article__img::before {
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  top:0;
  left:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 46%, rgba(0,0,0,1) 100%);
}
/* Only on Small articles */
.article--small .article__content * {
  color:#000;
}
.article--small a {
  text-decoration: none;
}
.article--small:hover h3 {
  color:#014cbb;
}