.news-detail-page__aside {
  width:fit-content;
}

.news-detail-page__aside-content {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.news-detail-page__aside-img {
  display: block;
  width: 300px;
  height: auto;
  border-radius: 10px;
}

.news-detail-page__aside-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.news-detail-page__aside-text {
  font-size: var(--font-size-base);
  color: var(--color-gray-400);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
}

@media (max-width: 1700px) {
  .news-detail-page__aside-img {
    display: block;
    width: 300px;
    height: auto;
    border-radius: 10px;
  }
}

@media (max-width: 1024px) {
  .news-detail-page__aside {
    display: none;
  }
}
