uix-article-view {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  height: fit-content !important;
  padding-top: 30px !important;
  margin-top: -30px;
}
uix-article-view .rainbow-text {
  background: -webkit-linear-gradient(-70deg, #8250df 0%, #d42a32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  -webkit-box-decoration-break: clone;
}
uix-article-view #articleSubtitle {
  margin-top: 25px;
  font-size: large;
  line-height: 100%;
  cursor: text;
  font-weight: normal;
  margin-bottom: 6px;
}
uix-article-view #articleTitle {
  margin-top: 10px;
  font-size: xx-large;
  line-height: 100%;
  font-family: sans-serif;
  font-weight: bold;
  color: var(--text);
}
uix-article-view #articleTitle a {
  color: var(--text_accent_1);
}
uix-article-view #articleDate {
  font-family: monospace;
}
uix-article-view #articleDescription {
  margin-top: 10px;
  line-height: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: large;
  cursor: text;
  overflow: hidden;
  color: var(--text-light);
}
uix-article-view uix-article-view {
  height: unset !important;
  display: flex;
  justify-content: center;
  /* width: unset!important; */
}
uix-article-view #preview {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
uix-article-view #preview > div {
  border-radius: 18px;
  overflow: hidden;
  min-width: 80px;
}
uix-article-view #preview > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
uix-article-view #preview > div img:hover {
  transform: scale(1.05);
}
uix-article-view #preview span {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 8px;
  padding: 5px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: var(--bg_color);
  color: var(--text_accent_1);
}
uix-article-view[size=normal] {
  grid-column: span 1;
  border-top: 1px solid gray;
}
uix-article-view[size=normal] #preview {
  display: none;
}
uix-article-view[size=normal] #preview div {
  height: 200px;
}
uix-article-view[size=medium] {
  grid-column: span 1;
  border-top: 1px solid gray;
}
uix-article-view[size=medium] #preview div {
  height: 200px;
}
uix-article-view[size=big] {
  grid-column: span 3;
}
