.news-read-sidebar {
  width: 100%;
}

.news-read-sidebar-header {
  margin-bottom: var(--grid-gap-medium);
}
.news-read-sidebar-title {
  font-weight: 600;
}
.news-read-sidebar.right .news-read-sidebar-title {
  padding-bottom: var(--grid-gap-medium);
  border-bottom: 1px solid var(--border-color);
}

.news-read-sidebar-item {
  display: flex;
  align-items: center;
  column-gap: var(--section-content-space-small);
}
.news-read-sidebar.right .news-read-sidebar-item + .news-read-sidebar-item {
  margin-top: var(--grid-gap-medium);
}
.news-read-sidebar.bottom .news-read-sidebar-item {
  height: auto;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.news-read-sidebar-item img {
  width: 25%;
  object-fit: cover;
}
.news-read-sidebar.right .news-read-sidebar-item img {
  max-width: 140px;
}
.news-read-sidebar.bottom .news-read-sidebar-item img {
  width: 100%;
  border-radius: 0;
}

.news-read-sidebar-item .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.news-read-sidebar.bottom .news-read-sidebar-item .text {
  flex: 1;
  padding: var(--card-space-medium);
}

.news-read-sidebar-item .title {
  margin: 0 !important;
  padding: 0 !important;
}
.news-read-sidebar-item .title > a,
.news-read-sidebar-item .desc {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
}
.news-read-sidebar-item .title > a {
  color: var(--title-text-color);
  font-weight: 600;
  -webkit-line-clamp: 2;
  text-decoration: none;
}
.news-read-sidebar-item .desc {
  -webkit-line-clamp: 3;
}

.news-read-sidebar.bottom .news-read-sidebar-header,
.news-read-sidebar.bottom .news-read-sidebar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-read-sidebar.bottom .news-read-sidebar-toolbar {
  flex-shrink: 0;
  /* column-gap: var(--grid-gap-medium); */
}
.news-read-sidebar.bottom .swiper-button-box {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.news-read-sidebar.bottom .swiper-button-prev,
.news-read-sidebar.bottom .swiper-button-next {
  position: static;
  margin: 0;
}
.news-read-sidebar.bottom .swiper-button-prev:not(.swiper-button-lock) {
  margin-left: var(--grid-gap-medium);
  margin-right: 0;
}
[dir="rtl"] .news-read-sidebar.bottom .swiper-button-prev:not(.swiper-button-lock) {
  margin-left: 0;
  margin-right: var(--grid-gap-medium);
}

@media (max-width: 767px) {
  .news-read-sidebar.bottom .swiper-button-box {
    display: none;
  }
}