* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
a,
button:active,
button:focus,
input:active,
input:focus {
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

/* article */
.article {
  background: #1c1d26;
  padding-top: 18px;
  padding-bottom: 50px;
}
.articleTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
.articleTopLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  width: 40%;
}
.articleTopTitle {
  color: #fff;
  font-family: 'Zilla Slab';
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}
.articleUser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.articleUserImg img {
  display: block;
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
}
.articleUserTitle {
  color: #fff;
  font-family: 'Zilla Slab';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.articleUserNumbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
.articleUserNumberSub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: 'Zilla Slab';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.articleUserNumberSub img {
  display: block;
}
.articleTopImg {
  width: 60%;
}
.articleTopImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.articleSubs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
}
.articleTitle {
  color: #fff;
  font-family: 'Zilla Slab';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.articleSub {
  color: #fff;
  font-family: 'Zilla Slab';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.articleImg img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.articleSubList {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  /* article */
  .article {
    padding-bottom: 30px;
  }
  .articleTop {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .articleTopLeft {
    width: 100%;
  }
  .articleTopTitle {
    font-size: 18px;
  }
  .articleTopImg {
    width: 100%;
  }
  .articleTitle {
    font-size: 20px;
  }
}
