.blogHead {
  margin: 40px 0 56px 0;
}
.blogHead__content {
  display: flex;
  flex-flow: column;
  gap: 120px;
}
.blogHead__mini-title {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #818181;
}
.blogHead__desc {
  font-family: "ABC Arizona Mix Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 300;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -0.03em;
  color: #000000;
}
.blogHead__desc .word {
  transition: color 0.2s ease;
  color: #000;
}
.blogHead__desc .word.highlight {
  color: #818181;
}

.blogFilters {
  margin-bottom: 40px;
}
.blogFilters__content {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 4px;
}
.blogFilters__item {
  padding: 10px 14px;
  border-radius: 100px;
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: 0.01em;
  background: rgba(129, 129, 129, 0.2);
  color: #000000;
  transition: 0.3s ease;
  cursor: pointer;
}
.blogFilters__item:hover {
  background: rgba(129, 129, 129, 0.403);
}
.blogFilters__item.active {
  color: #fff;
  background: #000;
}

.blogList {
  margin-bottom: 128px;
}
.blogList__content {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 48px;
}
.blogList__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 104px;
  column-gap: 104px;
  row-gap: 64px;
  width: 100%;
  transition: 0.8s ease;
}
.blogList__item {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 24px;
}
.blogList__item.big-item {
  grid-column: span 2;
  grid-row: span 2;
}
.blogList__item.big-item .blogList__img {
  height: 640px;
}
.blogList__item.big-item .blogList__title {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #000000;
}
.blogList__item.vertical {
  grid-column: span 1;
  grid-row: span 2;
}
.blogList__item.vertical .blogList__img {
  height: 648px;
}
.blogList__img {
  width: 100%;
  height: 291px;
}
.blogList__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blogList__texting {
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: 70%;
}
.blogList__title {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #000000;
}
.blogList__meta {
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0.01em;
  color: #818181;
}
.blogList__loadMore {
  padding: 14px 24px;
  background: #000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "ABC Diatype Variable Unlicensed Trial";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s ease;
}
.blogList__loadMore:hover {
  background: rgba(0, 0, 0, 0.5058823529);
}
.blogList__skeleton {
  display: flex;
  flex-flow: column;
  gap: 16px;
  animation: pulse 1.5s infinite;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.blogList__skeleton.show {
  opacity: 1;
  transform: translateY(0);
}
.blogList__skeleton-img {
  width: 100%;
  height: 291px;
  background: #e0e0e0;
  border-radius: 4px;
}
.blogList__skeleton-line {
  width: 80%;
  height: 20px;
  background: #e0e0e0;
  border-radius: 4px;
}
.blogList__skeleton-line.short {
  width: 40%;
}
@keyframes pulse {
  0% {
    background-color: #e0e0e0;
  }
  50% {
    background-color: #f0f0f0;
  }
  100% {
    background-color: #e0e0e0;
  }
}
.blogList__item {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.blogList__item.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1279px) {
  .blogHead {
    margin-top: 20px;
  }
  .blogHead__content {
    gap: 80px;
  }
  .blogHead__desc {
    font-family: "ABC Arizona Mix Variable Unlicensed Trial";
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 90%;
    letter-spacing: -0.03em;
  }
  .blogFilters {
    margin-bottom: 32px;
  }
  .blogFilters__content {
    flex-wrap: wrap;
  }
  .blogList__grid {
    grid-template-columns: 1fr;
  }
  .blogList__texting {
    width: 100%;
    gap: 16px;
  }
  .blogList__item {
    gap: 20px;
  }
  .blogList__item.big-item {
    grid-column: span 1;
    grid-row: span 1;
  }
  .blogList__item.big-item .blogList__title {
    font-family: "ABC Diatype Variable Unlicensed Trial";
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 110%;
    letter-spacing: -0.01em;
  }
} /*# sourceMappingURL=blog.css.map */
