@charset "utf-8";
.blog__item {
  border-bottom: 1px solid #d2d9e0;
}

.blog__item-link {
  display: block;
  position: relative;
  padding-block: 30px;
  overflow: hidden;
}

.blog__item-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: width 0.5s ease, height 0.5s ease, right 0.5s ease;
}

.blog__item-link:hover::after {
  width: 15px;
  height: 15px;
  right: 18px;
}

.blog__item-row {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .blog__item-row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.blog__item-time {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-base);
}

.blog__item-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: 1.2;
  padding: 3px 12px;
  border-radius: 30px;
  background: var(--color-accent);
  color: var(--color-white);
}

.blog__item-title {
  margin-top: 15px;
  font-size: clamp(12px, 1.03vw, 14px);
  font-weight: 500;
  letter-spacing: calc(30 / 1000 * 1em);
  line-height: 1.2;
  color: var(--color-base);
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog__slidebar-head .page__sidebar-head-en {
  width: 25px;
}
