/* Container */
.ct-table { display:flex; flex-direction:column; gap:18px; }
.ct-row { display:grid; grid-template-columns: 1.2fr 1fr; gap:20px; padding:18px; border-radius:12px; background:#f1f5f9; border:1px solid #e2e8f0; }
@media (max-width:960px){ .ct-row { grid-template-columns: 1fr; } }

/* Left Block */
.ct-left { display:flex; flex-direction:column; }
.ct-rank { width:36px; height:36px; border-radius:999px; background:#e2e8f0; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:10px; }
.ct-logo-name { display:flex; gap:14px; align-items:center; }
.ct-logo { width:72px; height:72px; object-fit:contain; border-radius:50%; background:#fff; border:1px solid #e5e7eb; }
.ct-name-rating { display:flex; flex-direction:column; gap:6px; }
.ct-name { font-size:20px; font-weight:700; color:#0f172a; }
.ct-rating { display:flex; align-items:center; gap:8px; color:#0f172a; }
.ct-rating-number { font-weight:600; }
.ct-stars { display:inline-flex; gap:3px; vertical-align:middle; }
.ct-star { width:16px; height:16px; fill:#fbbf24; }
.ct-star-empty { fill:#e5e7eb; }

/* Features */
.ct-features { margin:12px 0 0; padding:0; list-style:none; display:flex; flex-direction:column; gap:6px; color:#475569; }
.ct-features li::before { content:""; }

/* Terms line (light grey small line under left block) */
.ct-terms { margin-top:12px; font-size:12px; color:#94a3b8; }

/* Right Block */
.ct-right { display:flex; flex-direction:column; align-items:flex-start; gap:14px; justify-content:center; }
.ct-main-bonus { font-size:22px; font-weight:700; color:#2563eb; line-height:1.3; }
.ct-btn { display:inline-flex; align-items:center; justify-content:center; padding:14px 24px; border-radius:999px; background:#22c55e; color:#fff; font-weight:700; text-decoration:none; }
.ct-btn:hover { filter:brightness(0.95); }
.ct-btn-disabled { background:#94a3b8; cursor:not-allowed; }
.ct-review { color:#334155; text-decoration:underline; font-size:14px; }