/* article */

:root {
  --article-title-color: var(--blue);
  --article-subtitle-color: var(--black);
  --article-description-color: var(--black);
}

.articles-view .page-sub-title {
  font-size: 60px;
  font-weight: var(--robotocondensed-bold);
  padding-bottom: 6px;
  margin-top: 0;
}

.articles-view .views-row {
  width: 100%;
  margin-bottom: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

.articles-view .views-row:last-child {
  margin-bottom: 0;
}

.article-wrap {
  width: 100%;
  display: flex;
  align-items: center;
}

.article-left {
  width: 195px;
}

.article-image-wrap img {
  max-width: 100%;
}

.article-author-image {
  border-radius: 100%;
  overflow: hidden;
}

.article-right {
  width: calc(100% - 195px);
  padding-left: 40px;
}

.article-title {
  font-size: 21px;
  line-height: 24px;
  font-weight: var(--opensans-bold);
  color: var(--article-title-color);
}

.article-subtitle {
  font-size: 18px;
  line-height: 22px;
  font-weight: var(--opensans-regular);
  color: var(--article-subtitle-color);
}

.article-subtitle-2 {
  font-size: 16px;
  font-weight: var(--opensans-regular);
  color: var(--article-subtitle-color);
}

.article-description {
  margin-top: 20px;
  font-size: 18px;
  line-height: 26px;
  color: var(--article-description-color);
}

.article-description p {
  margin-bottom: 17px;
}

.article-description p:last-child {
  margin-bottom: 0;
}
