
/* Card */
.card {
  display: flex;
  background: #020617;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #1e293b;
  text-decoration: none;
  color: inherit;
}

/* Poster */
.poster {
  width: 82px;
  background-size: cover;
  background-position: center;
}
/* Content */
.content {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title */
.title-fa {
  font-size: 15px;
  font-weight: 700;
}

.title-en {
  font-size: 11px;
  opacity: 0.6;
}

/* Tags */
.tags {
  margin: 4px 0;
}

.tag {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 6px;
  background: #1e293b;
  margin-left: 4px;
}

/* Reason */
.reason {
  font-size: 12px;
  opacity: 0.85;
  margin: 4px 0;
  line-height: 1.6;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

/* User */
.user {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-size: cover;
}

.level {
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 10px;
  background: #1e293b;
}

.pro {
  background: #facc15;
  color: #000;
}

.pro-level {
  background: #22c55e;
}

.newbie {
  background: #64748b;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.rating i {
  color: #facc15;
}

.show-more-btn{
    color: #fdec8f;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  border: 0px;
  background: #0000;
  font-size: 11px;
}

.no-more-data{
    margin:30px auto;
    text-align:center;
    color:#facc15;
    font-weight:700;
    opacity:.85;
}


.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    direction: rtl; /* اگر متن فارسی است */
    text-align: right;
    line-height: 1.8;
    max-height: calc(1.8em * 3);
}

