.yichen_news_read {
  padding: var(--component-gap) 0;
}

.yichen_news_read_wrapper {
  display: flex;
  gap: 30px;
  margin: 0;
}

.yichen_news_read_main {
  flex: 1;
}

.yichen_news_read_sidebar {
  width: 38.6%;
}

/* Breadcrumb */
.yichen_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yichen_breadcrumb .breadcrumb_icon {
  width:18px;
  height:18px;
}

.yichen_breadcrumb .breadcrumb_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yichen_breadcrumb .breadcrumb_text, 
.yichen_breadcrumb .breadcrumb_text a{
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* Article Header */
.yichen_article_header {
  margin-top: 40px;
}

.yichen_article_header h3 {
  font-size: var(--title-size-h3);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
}

.yichen_article_header .article_meta {
  margin-top: 5px;
}

.yichen_article_header .reading_volume {
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* Article Content */
.yichen_article_content {
  margin-top: 30px;
}

.yichen_article_content .article_text {
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.yichen_article_content .article_text p{
  min-height: 1em;
}

.yichen_article_content .article_text img{
  border-radius: 24px;
}

/* Divider */
.yichen_news_read_main .article_divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  margin: 40px 0;
}

/* Article Navigation */
.yichen_article_navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yichen_article_navigation .nav_previous,
.yichen_article_navigation .nav_next {
  max-width: 49%;
}

.yichen_article_navigation .nav_link {
  display: flex;
  gap: 8px;
}

.yichen_article_navigation .nav_image {
  width: 15px;
  height: 10px;
  margin-top: 6px;
}

.yichen_article_navigation .nav_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yichen_article_navigation .nav_content{
  flex: 1;
}

.yichen_article_navigation .nav_label {
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.yichen_article_navigation .nav_content p {
  color: var(--color-primary);
  font-size: var(--text-size);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 8px;
}

.yichen_article_navigation .nav_next .nav_link{
  flex-direction: row-reverse;
  text-align: right;
}

.yichen_article_navigation .nav_next .nav_image img{
  transform: rotate(180deg);
}

/* Sidebar */
.yichen_news_read_sidebar .sidebar_header {
  display: flex;
  align-items: center;
  gap: 21px;
}

.yichen_news_read_sidebar .sidebar_decoration {
  width: 4px;
  height: 36px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.yichen_news_read_sidebar .sidebar_header p {
  font-size: var(--text-flag-size);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.yichen_news_read_sidebar .sidebar_news_list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.yichen_news_read_sidebar .sidebar_news_item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.yichen_news_read_sidebar .news_image {
  width: 35%;
  aspect-ratio: 35/22;
  border-radius: 16px;
  overflow: hidden;
}

.yichen_news_read_sidebar .news_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yichen_news_read_sidebar .news_content {
  flex: 1;
}

.yichen_news_read_sidebar .news_content p {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yichen_news_read_sidebar .news_date {
  display: block;
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  margin-top: 32px;
}


@media screen and (max-width: 1200px) {
  .yichen_article_navigation .nav_image {
    margin-top: 7px;
  }

  .yichen_news_read_sidebar .news_date{
    margin-top: 24px;
  }
}

@media screen and (max-width: 992px) {


  .yichen_article_header {
    margin-top: 32px;
  }

  .yichen_article_content {
    margin-top: 24px;
  }

  .yichen_article_navigation .nav_image {
    margin-top: 6px;
  }

  .yichen_news_read_main .article_divider{
    margin: 32px 0;
  }

  .yichen_news_read_sidebar {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .yichen_article_header {
    margin-top: 24px;
  }

  .yichen_article_content {
    margin-top: 16px;
  }

  .yichen_news_read_main .article_divider{
    margin: 24px 0;
  }

  .yichen_article_navigation .nav_image{
    display: none;
  }

  .yichen_article_navigation {
    flex-direction: column;
    gap: 12px;
    align-items: initial;
    justify-content: initial;
  }
  .yichen_article_navigation .nav_next .nav_link {
    flex-direction: row;
    text-align: left;
  }

  .yichen_article_navigation .nav_previous, .yichen_article_navigation .nav_next{
    max-width: 100%;
  }
  .yichen_article_navigation .nav_content p{
    margin-top: 4px;
  }
}