.review-item {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
  overflow: hidden;
}
.review-item-head {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  transition: color .2s;
}
a.review-item-head:hover{
  color: var(--c1);
}
.review-item-head:after {
  content: '';
  position: absolute;
  left: -30px;
  right: -30px;
  bottom: 0;
  height: 1px;
  background: #eee;
}
.review-item-head-media {
  flex-shrink: 0;
  width: 60px;
  height: 78px;
  border-radius: 6px;
  background: #000;
  overflow: hidden;
}
.review-item-head-media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
}
.review-item-head-body {
  align-self: center;
}
.review-item-head-name {
  font-weight: 500;
  line-height: 1.5;
}
.review-item-head-article {
  margin-top: 8px;
  color: #AAA;
  font-size: 14px;
}
.review-item-r1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.review-item-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-item-user-m {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #EEE;
  color: #000;
  font-size: 12px;
  font-weight: 500;
}
.review-item-user-name {
  font-weight: 500;
}
.review-item-rating {
  flex-shrink: 0;
  display: flex;
  gap: 4px;
  color: #eee;
}
.review-item-rating svg.in {
  color: #000;
}
.review-item-text {
  margin-top: 25px;
}
.review-item-text.wysiwyg {
  font-size: 14px;
}
.review-item-more{
  margin-top: 10px;
}
.review-item-more-link{
  font-size: 14px;
}
.review-item-media {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-item-media-item {
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 6px;
  background: #f8f8f8;
  overflow: hidden;
}
.review-item-media-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.review-item-media-item:hover img{
  opacity: .7;
}
.review-item-date {
  margin-top: auto;
  padding-top: 25px;
  color: #AAA;
  font-size: 14px;
}
.review-item .wrap-link-toggle {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 1060px) {
  .review-item {
    padding: 20px;
  }
  .review-item-text {
    margin-top: 20px;
  }
}.rhead h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}
.rhead .breadcrumbs {
  margin-bottom: 20px;
}
.rhead nav {
  position: relative;
  margin-bottom: 50px;
}
.rhead nav:after {
  content: '';
  position: absolute;
  left: -50vw;
  right: -50vw;
  bottom: 0;
  height: 1px;
  background: #e5e5e5;
}
.rhead nav:before{
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 1px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #fff 100%);
  pointer-events: none;
  z-index: 1;
}
.rhead .nav {
  position: relative;
  display: flex;
  gap: 40px;
  padding-right: 80px;
  overflow: auto;
}
.rhead .nav::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.rhead .nav-item {
  flex-shrink: 0;
}
.rhead .nav-link {
  white-space: nowrap;
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0 30px;
  transition: color .2s;
}
.rhead .nav-link.active,
.rhead .nav-link:hover {
  color: var(--c1);
}
.rhead .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: transparent;
  z-index: 1;
}
.rhead .nav-link.active:after {
  background: var(--c1);
}
@media (max-width: 1530px) {
  .rhead .nav {
    gap: 30px;
  }
}
@media (max-width: 1060px) {
  .rhead .breadcrumbs {
    margin-bottom: 10px;
  }
  .rhead h1{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .rhead nav {
    margin-bottom: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }
  .rhead nav:before{
    display: none;
  }
  .rhead .nav {
    gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .rhead .nav-link {
    padding: 0 0 15px;
  }
}.previews-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(250px, 1fr));
  gap: 20px;
}
@media (max-width: 1760px) {
  .previews-items {
    grid-template-columns: repeat(3, minmax(250px, 1fr));
  }
}
@media (max-width: 1260px) {
  .previews-items {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
  }
}
@media (max-width: 1060px) {
  .previews-items {
    grid-template-columns: 100%;
    gap: 10px;
  }
}