/* Общая сетка */
.aitl-list { display: grid; gap: 16px; }
.aitl-row {
  display: grid;
  grid-template-columns: 64px 1.2fr 2fr 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
  border: 1px solid #ececec;
}
@media (max-width: 900px) {
  .aitl-row { grid-template-columns: 56px 1fr; grid-auto-rows: auto; }
  .aitl-col-desc, .aitl-col-rating, .aitl-col-actions { grid-column: 2 / -1; }
}

.aitl-col-number { text-align: center; }
.aitl-number {
  display: inline-flex; width: 32px; height: 32px; border-radius: 999px;
  align-items: center; justify-content: center; background: #ef4444; color: #fff;
  font-weight: 700;
}

.aitl-col-logo-title { display: grid; grid-template-columns: 48px auto; gap: 12px; align-items: center; }
.aitl-logo img { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.aitl-logo-placeholder {
  width: 48px; height: 48px; border-radius: 10px; background:#f1f1f1; display:flex; align-items:center; justify-content:center; color:#9ca3af; font-size:11px;
}

.aitl-title { font-size: 20px; font-weight: 700; }
.aitl-desc { color: #6b7280; }

.aitl-stars { display: flex; align-items: center; gap: 6px; }
.star { font-size: 16px; line-height: 1; }
.star.full { color: #e11d48; }
.star.half { color: #f43f5e; opacity: .7; }
.star.empty { color: #e5e7eb; }
.aitl-rating-number { padding: 2px 8px; border: 1px solid #e5e7eb; border-radius: 999px; font-weight: 700; color:#111827; }

.aitl-col-actions { display: flex; gap: 10px; justify-content: flex-start; }
.aitl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; text-decoration: none;
}
.aitl-btn-primary { background: #ef4444; color:#fff; }
.aitl-btn-primary:hover { filter: brightness(.95); }
.aitl-btn-secondary { background: #e5e7eb; color:#111827; }
.aitl-btn-secondary:hover { filter: brightness(.97); }

/* Админ мелочи */
.aitl-fields label { display:block; margin-bottom:6px; }
.aitl-fields p { margin-bottom:14px; }

/* Пусто */
.aitl-empty { padding: 16px; background:#fffaf0; border:1px solid #fde68a; border-radius:12px; }
