/* Layout tuned to match reference */
.ct-table { display:flex; flex-direction:column; gap:16px; }
.ct-row { 
  display:grid; 
  grid-template-columns: 1.6fr 1.15fr 1.25fr; 
  gap:14px; 
  padding:20px; 
  border-radius:12px; 
  background:#f1f5f9; 
  border:1px solid #e2e8f0; 
  align-items:center; 
}
@media (max-width:1100px){ .ct-row { grid-template-columns: 1.2fr 1fr 1fr; } }
@media (max-width:900px){ .ct-row { grid-template-columns: 1fr; } }

/* Left column: number + logo + name/rating */
.ct-left { display:flex; align-items:center; }
.ct-left-inner { display:flex; align-items:center; gap:14px; }
.ct-rank { width:40px; height:40px; border-radius:999px; background:#e2e8f0; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:16px; }
.ct-logo { width:104px; height:104px; object-fit:contain; border-radius:50%; background:#fff; border:1px solid #e5e7eb; }
.ct-namebox { display:flex; flex-direction:column; gap:6px; }
.ct-badge { 
  display:inline-flex; align-items:center; gap:6px;
  color:#fff; font-size:12px; line-height:1; padding:7px 12px; border-radius:10px; 
  font-weight:700; text-transform:uppercase; letter-spacing:.02em; width:max-content;
}
.ct-badge::before{
  content:"+"; display:inline-flex; align-items:center; justify-content:center;
  width:18px; height:18px; border-radius:999px; background:rgba(255,255,255,.25); 
  font-size:12px; font-weight:800;
}
.ct-name { font-size:22px; font-weight:800; color:#0f172a; }
.ct-rating { display:flex; align-items:center; gap:8px; color:#0f172a; }
.ct-rating-number { font-weight:700; }
.ct-stars { display:inline-flex; gap:3px; vertical-align:middle; }
.ct-star { width:16px; height:16px; fill:#fbbf24; }
.ct-star-empty { fill:#e5e7eb; }

/* Middle: features list slightly closer to logo */
.ct-middle { display:flex; align-items:center; transform:translateX(-8px); }
.ct-features { margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:8px; color:#475569; font-size:15px; }
.ct-features li::before { content:""; }

/* Right: centered block with bonus, full-width button, centered review */
.ct-right { 
  background:#e3e8ef; border:1px solid #cfd8e3; border-radius:12px; padding:20px; 
  display:flex; flex-direction:column; align-items:center; gap:14px; justify-content:center; 
  text-align:center;
  min-height:140px;
}
.ct-main-bonus { font-size:24px; font-weight:800; color:#2563eb; line-height:1.3; }
.ct-btn { display:inline-flex; align-items:center; justify-content:center; padding:18px 22px; border-radius:999px; background:#22c55e; color:#fff; font-weight:900; text-decoration:none; font-size:16px; width:100%; }
.ct-btn:hover { filter:brightness(0.96); }
.ct-btn-disabled { background:#94a3b8; cursor:not-allowed; width:100%; }
.ct-review { color:#334155; text-decoration:underline; font-size:14px; }

/* Small polish */
.ct-table .ct-row + .ct-row { margin-top:2px; }
