.ltc-wrap{
  margin: 18px 0;
}

.ltc-intro{
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.9;
  opacity: .9;
}

.ltc-grid{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ltc-card{
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ❌ هیچ تکون/hover transform نمی‌خوایم */
.ltc-card:hover{
  transform: none;
  box-shadow: none;
  border-color: rgba(0,0,0,.08);
}

.ltc-media{
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  background: rgb(255, 255, 255);
}

.ltc-imglink{
  display: block;
  width: 100%;
  height: 100%;
}

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

.ltc-media-fallback{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}

.ltc-body{
  flex: 1 1 auto;
  min-width: 0;
}

.ltc-title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.ltc-link{
  color: #0a57ff;
  text-decoration: none;
}

.ltc-link:hover{
  text-decoration: underline;
}

/* 2 cards => desktop 50/50 */
@media (min-width: 900px){
  .ltc-wrap.ltc-count-2 .ltc-card{
    width: calc(50% - 7px);
  }
}

/* mobile tweaks */
@media (max-width: 520px){
  .ltc-media{
    width: 84px;
    height: 84px;
    border-radius: 14px;
  }
  .ltc-title{
    font-size: 15px;
  }
}