/* Blog Page = START */
.blog-article #product-product.container {
  max-width: 903px;
}

.blog-latest .container {
  max-width: 1624px;
}

.blog-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000;
    margin: 40px 0 15px;
}

.blog-title {
    margin: 20px 0 15px;
    font-size: 30px;
}

.blog-description {
  margin-bottom: 29px;
  color: #828282;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: lowercase;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mobile .articles-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  padding-bottom: 50px;
}

.article-item {
  height: 100%;
  text-decoration: none;
  transition: box-shadow 0.3s ease-in-out;
}

.article-item .article-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  color: #101828;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  transition: 0.2s;
}

.article-item:hover .article-title {
  color: #a51511;
}


.article-item .article-title span {
    max-width: calc(100% - 40px);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-item .article-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #667085;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}

.article-item:hover .article-description {
  color: #a51511;
}

.article-item:hover {
  color: #a51511;
}

.article-image {
  border-radius: 10px;
  margin-bottom: 32px;
  overflow: hidden;
}

.article-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.article-title {
  color: #151515;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.article-description {
  color: #151515;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
}

.article-description h2,
.article-description p,
.article-description ul,
.article-description ol {
  margin-bottom: 30px;
}

.article-description h2 {
  margin-bottom: 30px;
}

.article-description ul li {
  list-style: disc;
}

.article-description a {
  color: #007bff;
}

.article-description a:hover {
  text-decoration: underline;
}

/* Blog Page = END */
