/* =========================================================
   CASINO COMPARATOR v2 - Estilos públicos
   Diseño inspirado en comparadores profesionales de casino
   ========================================================= */

:root {
	--cc-primary: #0b3d2e;
	--cc-primary-light: #145c44;
	--cc-accent: #ffb400;
	--cc-accent-dark: #e0a000;
	--cc-bg-soft: #f7f8f6;
	--cc-border: #e3e5e0;
	--cc-text: #23282d;
	--cc-text-light: #6b7280;
	--cc-green: #1e8e3e;
	--cc-green-bg: #eafaf0;
	--cc-green-border: #bfe8cd;
	--cc-red: #d93025;
	--cc-red-bg: #fdecea;
	--cc-red-border: #f3c3bd;
	--cc-radius: 10px;
}

.cc-ficha-casino, .cc-comparativa-wrap { max-width: 980px; margin: 0 auto; color: var(--cc-text); font-family: inherit; }

/* ---------- BARRA RESUMEN ---------- */

.cc-summary-bar {
	display: grid;
	grid-template-columns: 110px 1fr 1.2fr auto;
	gap: 20px;
	align-items: center;
	background: var(--cc-bg-soft);
	border: 1px solid var(--cc-border);
	border-radius: 16px;
	padding: 24px 28px;
	margin-bottom: 6px;
	box-shadow: 0 4px 16px rgba(11,61,46,.06);
}
.cc-summary-logo img { width: 100%; height: auto; border-radius: 8px; background: #fff; padding: 6px; }
.cc-summary-title { margin: 0 0 6px; font-size: 22px; }
.cc-summary-rating { margin-bottom: 6px; }
.cc-rating-number { font-size: 26px; font-weight: 800; color: var(--cc-primary); }
.cc-rating-max { color: var(--cc-text-light); font-size: 14px; }
.cc-summary-bono { margin: 0; font-weight: 700; color: var(--cc-primary-light); font-size: 14px; }
.cc-summary-conditions ul { list-style: none; margin: 0; padding: 0; font-size: 13px; }
.cc-summary-conditions li { padding: 3px 0; }
.cc-summary-cta { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.cc-summary-legal { font-size: 11px; color: var(--cc-text-light); margin: 6px 0 24px; }

.cc-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--cc-accent);
	color: #1a1a1a !important;
	font-weight: 700;
	padding: 12px 26px;
	border-radius: 999px;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background .15s ease, transform .1s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,.12);
	text-align: center;
	box-sizing: border-box;
}
.cc-cta-button:hover { background: var(--cc-accent-dark); transform: translateY(-1px); }
.cc-cta-large { padding: 16px 36px; font-size: 17px; }
.cc-cta-small { padding: 8px 18px; font-size: 13px; }
.cc-cta-secondary { font-size: 12px; color: var(--cc-primary); text-decoration: underline; }

.cc-content-original { margin: 24px 0; line-height: 1.7; }

/* ---------- PUNTUACIÓN DESGLOSADA ---------- */

.cc-score-breakdown { margin-bottom: 28px; }
.cc-score-breakdown h3 { font-size: 20px; margin-bottom: 14px; }
.cc-score-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.cc-score-group { background: #fff; border: 1px solid var(--cc-border); border-radius: 14px; padding: 20px 22px; box-shadow: 0 2px 10px rgba(11,61,46,.04); }
.cc-score-group-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cc-score-group-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--cc-bg-soft);
	font-size: 18px;
	flex-shrink: 0;
}
.cc-score-group h4 { margin: 0; font-size: 14px; color: var(--cc-primary); text-transform: uppercase; letter-spacing: .02em; }
.cc-score-row { display: grid; grid-template-columns: 1fr 2fr auto; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; }
.cc-score-bar { background: var(--cc-border); border-radius: 999px; height: 8px; overflow: hidden; }
.cc-score-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--cc-accent), var(--cc-accent-dark)); border-radius: 999px; }
.cc-score-value { font-weight: 700; color: var(--cc-primary); white-space: nowrap; }

/* ---------- PROS Y CONTRAS ---------- */

.cc-pros-contras { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-bottom: 32px; }
.cc-pros, .cc-contras { border-radius: 14px; padding: 22px 26px; box-shadow: 0 2px 10px rgba(11,61,46,.04); }
.cc-pros { background: var(--cc-green-bg); border: 1px solid var(--cc-green-border); }
.cc-contras { background: var(--cc-red-bg); border: 1px solid var(--cc-red-border); }
.cc-pros h3 { color: var(--cc-green); margin-top: 0; font-size: 16px; }
.cc-contras h3 { color: var(--cc-red); margin-top: 0; font-size: 16px; }
.cc-pros ul, .cc-contras ul { margin: 0; padding-left: 20px; }
.cc-pros li, .cc-contras li { margin-bottom: 6px; font-size: 14px; }

.cc-inline-cta { margin-top: 18px; display: flex !important; justify-content: center !important; width: 100%; }
.cc-inline-cta .cc-cta-button {
	width: 100% !important;
	max-width: 320px;
	text-align: center;
	white-space: normal;
}

/* ---------- CAJAS DE INFO (métodos de pago, retiradas, RTP, atención) ---------- */

.cc-info-boxes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 32px; }

.cc-info-box {
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 16px;
	padding: 24px 26px;
	box-shadow: 0 4px 16px rgba(11,61,46,.06);
	transition: box-shadow .15s ease, transform .15s ease;
	border-top: 4px solid var(--cc-accent-box, var(--cc-accent));
	position: relative;
	overflow: hidden;
}
.cc-info-box:hover { box-shadow: 0 10px 26px rgba(11,61,46,.12); transform: translateY(-3px); }

.cc-info-box--pagos     { --cc-accent-box: #2f8f5b; }
.cc-info-box--retiradas { --cc-accent-box: #d99a1b; }
.cc-info-box--rtp       { --cc-accent-box: #1f7a8c; }
.cc-info-box--atencion  { --cc-accent-box: #7a5ac9; }

.cc-info-box-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; margin-bottom: 6px; }
.cc-info-box-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: var(--cc-bg-soft);
	background: color-mix(in srgb, var(--cc-accent-box) 14%, #fff);
	font-size: 30px;
	flex-shrink: 0;
	margin: 0 auto;
}
.cc-info-box h4 { margin: 0; font-size: 16px; font-weight: 800; color: var(--cc-primary); text-align: center; }

.cc-info-box-highlight {
	font-size: 30px;
	font-weight: 800;
	color: var(--cc-accent-box);
	margin: 10px 0 14px;
	line-height: 1;
}

.cc-info-box-rows { list-style: none; margin: 12px 0 0; padding: 0; }
.cc-info-box-rows li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding: 9px 0;
	border-bottom: 1px dashed var(--cc-border);
	font-size: 13.5px;
}
.cc-info-box-rows li:last-child { border-bottom: none; }
.cc-info-box-label { color: var(--cc-text-light); font-weight: 600; }
.cc-info-box-value { font-weight: 700; color: var(--cc-text); text-align: right; }

.cc-pill {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 800;
	padding: 3px 12px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.cc-pill-yes { background: var(--cc-green-bg); color: var(--cc-green); border: 1px solid var(--cc-green-border); }
.cc-pill-no  { background: var(--cc-red-bg); color: var(--cc-red); border: 1px solid var(--cc-red-border); }

/* ---------- ENCABEZADOS DE SECCIÓN ---------- */

.cc-ficha-casino h3, .cc-comparativa-wrap h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--cc-primary);
	margin: 0 0 18px;
	padding-left: 16px;
	border-left: 5px solid var(--cc-accent);
	line-height: 1.3;
}
.cc-ficha-casino h4, .cc-comparativa-wrap h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--cc-primary-light);
	margin: 24px 0 10px;
}

/* ---------- SECCIONES DE BONO / EMPRESA / APP (tablas tipo definición) ---------- */

.cc-bonos-section, .cc-app-section, .cc-company-section, .cc-games-section, .cc-payment-section { margin-bottom: 32px; }

.cc-bono-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	overflow: hidden;
	font-size: 14px;
	box-shadow: 0 2px 10px rgba(11,61,46,.04);
}
.cc-bono-table th {
	text-align: left;
	background: var(--cc-bg-soft);
	padding: 13px 18px;
	width: 34%;
	font-weight: 700;
	color: var(--cc-primary);
	border-top: 1px solid var(--cc-border);
}
.cc-bono-table td { padding: 13px 18px; border-top: 1px solid var(--cc-border); }
.cc-bono-table tr:first-child th, .cc-bono-table tr:first-child td { border-top: none; }
.cc-bono-table tr:hover td, .cc-bono-table tr:hover th { background: #fffaf0; }

.cc-otros-bonos-label { font-weight: 700; margin: 16px 0 8px; font-size: 14px; color: var(--cc-primary); }
.cc-otros-bonos { margin: 0; padding: 0; list-style: none; font-size: 14px; }
.cc-otros-bonos li {
	padding: 10px 16px;
	margin-bottom: 6px;
	background: var(--cc-bg-soft);
	border-radius: 8px;
	border-left: 3px solid var(--cc-accent);
}

/* ---------- TABLA DE PAGOS ---------- */

.cc-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }
.cc-payment-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	overflow: hidden;
	font-size: 13.5px;
	box-shadow: 0 2px 10px rgba(11,61,46,.04);
}
.cc-payment-table th { background: var(--cc-primary); color: #fff; text-align: left; padding: 13px 16px; white-space: nowrap; font-weight: 600; }
.cc-payment-table td { padding: 13px 16px; border-top: 1px solid var(--cc-border); }
.cc-payment-table tbody tr:nth-child(odd) { background: var(--cc-bg-soft); }
.cc-payment-table tbody tr:hover { background: #fff3d9; }
.cc-high-roller-note {
	margin-top: 14px;
	font-size: 13.5px;
	background: var(--cc-bg-soft);
	border-left: 4px solid var(--cc-primary);
	border-radius: 8px;
	padding: 14px 18px;
}

/* ---------- JUEGOS ---------- */

.cc-info-list { list-style: none; margin: 0 0 14px; padding: 0; background: #fff; border: 1px solid var(--cc-border); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(11,61,46,.04); }
.cc-info-list li { padding: 12px 18px; border-bottom: 1px solid var(--cc-border); font-size: 14px; display: flex; justify-content: space-between; gap: 12px; }
.cc-info-list li:last-child { border-bottom: none; }
.cc-info-list li:nth-child(odd) { background: var(--cc-bg-soft); }
.cc-info-label { color: var(--cc-text-light); font-weight: 600; }
.cc-info-value { font-weight: 700; color: var(--cc-text); text-align: right; }

.cc-exclusive-games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 14px; }
.cc-exclusive-game-card {
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 12px;
	padding: 16px 18px;
	font-size: 13.5px;
	box-shadow: 0 2px 10px rgba(11,61,46,.04);
	border-top: 4px solid var(--cc-accent);
}
.cc-exclusive-game-card strong { font-size: 15px; color: var(--cc-primary); }
.cc-exclusive-game-card ul { margin: 10px 0 0; padding-left: 0; list-style: none; }
.cc-exclusive-game-card li { padding: 4px 0; border-bottom: 1px dashed var(--cc-border); }
.cc-exclusive-game-card li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */

.cc-faq { margin-bottom: 32px; }
.cc-faq-item {
	border: 1px solid var(--cc-border);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 12px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(11,61,46,.04);
	transition: box-shadow .15s ease;
}
.cc-faq-item:hover { box-shadow: 0 6px 16px rgba(11,61,46,.08); }
.cc-faq-q { font-weight: 700; margin-bottom: 8px; color: var(--cc-primary); font-size: 15px; }
.cc-faq-q:before { content: "❓ "; }
.cc-faq-a { color: var(--cc-text); font-size: 14px; line-height: 1.6; padding-left: 22px; }

/* ---------- OPINIONES (comentarios nativos de WordPress) ---------- */

.cc-comments-wrap { margin: 40px 0 10px; padding-top: 30px; border-top: 2px solid var(--cc-border); }
.cc-comments-intro { color: var(--cc-text-light); font-size: 14px; margin-bottom: 20px; }

.cc-comments-wrap .comment-list { list-style: none; margin: 0; padding: 0; }
.cc-comments-wrap .comment-list .children { list-style: none; margin: 0; padding-left: 32px; border-left: 2px solid var(--cc-border); }
.cc-comments-wrap li.comment,
.cc-comments-wrap li.pingback {
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 14px;
	box-shadow: 0 2px 10px rgba(11,61,46,.04);
}
.cc-comments-wrap .comment-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cc-comments-wrap .comment-author img { border-radius: 50%; }
.cc-comments-wrap .comment-author .fn { font-weight: 700; color: var(--cc-primary); font-style: normal; }
.cc-comments-wrap .comment-metadata { font-size: 12px; color: var(--cc-text-light); margin-bottom: 10px; }
.cc-comments-wrap .comment-metadata a { color: var(--cc-text-light); text-decoration: none; }
.cc-comments-wrap .comment-content p { margin: 0 0 8px; font-size: 14px; line-height: 1.6; }
.cc-comments-wrap .reply a {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	color: var(--cc-primary);
	border: 1px solid var(--cc-primary);
	border-radius: 999px;
	padding: 4px 14px;
	text-decoration: none;
	margin-top: 6px;
}
.cc-comments-wrap .reply a:hover { background: var(--cc-primary); color: #fff; }
.cc-comments-wrap .bypostauthor > .comment-body { position: relative; }
.cc-comments-wrap .bypostauthor > .comment-body:before {
	content: "Respuesta del equipo";
	position: absolute;
	top: -10px;
	right: 0;
	background: var(--cc-accent);
	color: #1a1a1a;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
}

.cc-comments-wrap #respond,
.cc-comments-wrap .comment-respond {
	background: var(--cc-bg-soft);
	border: 1px solid var(--cc-border);
	border-radius: 14px;
	padding: 22px 26px;
	margin-top: 20px;
}
.cc-comments-wrap #reply-title { font-size: 18px; font-weight: 800; color: var(--cc-primary); margin: 0 0 14px; }
.cc-comments-wrap .comment-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--cc-text); }
.cc-comments-wrap .comment-form p { margin-bottom: 14px; }
.cc-comments-wrap .comment-form input[type="text"],
.cc-comments-wrap .comment-form input[type="email"],
.cc-comments-wrap .comment-form input[type="url"],
.cc-comments-wrap .comment-form textarea {
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--cc-border);
	border-radius: 8px;
	padding: 10px 14px;
	font-size: 14px;
	box-sizing: border-box;
}
.cc-comments-wrap .comment-form textarea { min-height: 110px; }
.cc-comments-wrap .form-submit input[type="submit"] {
	background: var(--cc-accent);
	color: #1a1a1a;
	font-weight: 700;
	border: none;
	border-radius: 999px;
	padding: 12px 30px;
	cursor: pointer;
	font-size: 14px;
}
.cc-comments-wrap .form-submit input[type="submit"]:hover { background: var(--cc-accent-dark); }
.cc-comments-wrap .no-comments { color: var(--cc-text-light); font-style: italic; }

/* ---------- FOOTER CTA ---------- */

.cc-ficha-footer-cta { text-align: center; padding: 30px 0 10px; }
.cc-disclaimer { font-size: 11px; color: var(--cc-text-light); margin-top: 12px; }

/* ---------- TOP 3 (comparativas) ---------- */

.cc-top3-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 36px; }
.cc-top3-card {
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 16px;
	padding: 26px 22px;
	text-align: center;
	position: relative;
	box-shadow: 0 4px 16px rgba(11,61,46,.06);
	transition: box-shadow .15s ease, transform .15s ease;
	border-top: 5px solid var(--cc-border);
}
.cc-top3-card:hover { box-shadow: 0 10px 28px rgba(11,61,46,.12); transform: translateY(-3px); }
.cc-top3-grid .cc-top3-card:nth-child(1) { border-top-color: #ffd54f; }
.cc-top3-grid .cc-top3-card:nth-child(2) { border-top-color: #c7c7c7; }
.cc-top3-grid .cc-top3-card:nth-child(3) { border-top-color: #d7924a; }
.cc-top3-medal { font-size: 32px; margin-bottom: 8px; }
.cc-top3-card img { max-width: 90px; margin: 0 auto 12px; display: block; border-radius: 8px; }
.cc-top3-card h4 { margin: 0 0 8px !important; font-size: 17px; }
.cc-top3-card h4 a { color: var(--cc-primary); text-decoration: none; }
.cc-top3-rating {
	display: inline-block;
	font-weight: 800;
	color: var(--cc-primary);
	background: var(--cc-bg-soft);
	border-radius: 999px;
	padding: 4px 16px;
	font-size: 14px;
	margin-bottom: 14px;
}
.cc-top3-pros { list-style: none; margin: 0 0 14px; padding: 0; text-align: left; font-size: 13px; }
.cc-top3-pros li { padding: 4px 0; }
.cc-top3-pros li:before { content: "✔ "; color: var(--cc-green); font-weight: 700; }
.cc-top3-bono {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cc-primary-light);
	background: var(--cc-green-bg);
	border-radius: 8px;
	padding: 8px 12px;
	margin: 0 0 14px;
}

/* ---------- TABLA DE RANKING (comparativas) ---------- */

.cc-ranking-table {
	width: 100%;
	min-width: 760px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 1px solid var(--cc-border);
	border-radius: 16px;
	font-size: 13.5px;
	box-shadow: 0 4px 16px rgba(11,61,46,.06);
}
.cc-ranking-table thead th { background: var(--cc-primary); color: #fff; text-align: left; padding: 14px 16px; font-weight: 600; white-space: nowrap; }
.cc-ranking-table tbody td { padding: 14px 16px; border-top: 1px solid var(--cc-border); vertical-align: middle; }
.cc-ranking-table tbody tr:nth-child(odd) { background: var(--cc-bg-soft); }
.cc-ranking-table tbody tr:hover { background: #fff3d9; }
.cc-ranking-table tbody tr:nth-child(1) .cc-col-pos { color: #c99400; }
.cc-ranking-table tbody tr:nth-child(2) .cc-col-pos { color: #8a8a8a; }
.cc-ranking-table tbody tr:nth-child(3) .cc-col-pos { color: #a85f22; }
.cc-col-pos { text-align: center; font-weight: 800; color: var(--cc-primary); width: 30px; font-size: 15px; }
.cc-tabla-casino-cell { display: flex; align-items: center; gap: 10px; }
.cc-tabla-logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; background: #fff; }
.cc-tabla-casino-cell a { font-weight: 700; color: var(--cc-primary); text-decoration: none; white-space: nowrap; }
.cc-col-cta { text-align: center; }

/* ---------- RESPONSIVE ---------- */

@media (max-width: 782px) {
	.cc-summary-bar { grid-template-columns: 1fr; text-align: center; }
	.cc-summary-conditions ul { text-align: left; display: inline-block; }
	.cc-score-row { grid-template-columns: 1fr; }
	.cc-info-boxes-grid { grid-template-columns: 1fr; }

	/* Tabla de ranking -> tarjetas apiladas, con etiqueta visible en cada dato */
	.cc-ranking-table thead { display: none; }
	.cc-ranking-table, .cc-ranking-table tbody { display: block; width: 100%; min-width: 0; }
	.cc-ranking-table tr {
		display: block;
		width: 100%;
		border: 1px solid var(--cc-border);
		border-top: 4px solid var(--cc-accent);
		border-radius: 14px;
		margin-bottom: 18px;
		padding: 4px 0 18px;
		box-shadow: 0 4px 14px rgba(11,61,46,.06);
		background: #fff !important;
		overflow: hidden;
	}
	.cc-ranking-table td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 10px;
		width: auto;
		border-top: none;
		border-bottom: 1px dashed var(--cc-border);
		padding: 10px 18px;
		text-align: right;
	}
	.cc-ranking-table td[data-label]:before {
		content: attr(data-label);
		font-weight: 700;
		font-size: 11.5px;
		text-transform: uppercase;
		letter-spacing: .02em;
		color: var(--cc-text-light);
		text-align: left;
		flex-shrink: 0;
	}
	.cc-ranking-table td.cc-col-pos {
		justify-content: center;
		background: var(--cc-bg-soft);
		border-bottom: 1px solid var(--cc-border);
		padding: 10px 18px;
	}
	.cc-ranking-table td.cc-col-pos:before { content: "Posición #"; }
	.cc-ranking-table td.cc-col-casino {
		justify-content: center;
		border-bottom: 1px solid var(--cc-border);
		padding: 16px 18px;
	}
	.cc-ranking-table td.cc-col-casino:before { display: none; }
	.cc-ranking-table td.cc-col-casino .cc-tabla-casino-cell { justify-content: center; }
	.cc-ranking-table td.cc-col-casino a { font-size: 17px; }
	.cc-ranking-table td.cc-col-cta { justify-content: center; border-bottom: none; padding: 16px 18px 4px; }
	.cc-ranking-table td.cc-col-cta:before { display: none; }
	.cc-ranking-table td.cc-col-cta .cc-cta-button { width: 100%; }
	.cc-ranking-table tr:last-child td:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
	.cc-inline-cta .cc-cta-button,
	.cc-ficha-footer-cta .cc-cta-button {
		max-width: 100% !important;
		width: 100% !important;
		font-size: 16px;
		padding: 15px 20px;
	}
}

/* ==========================================================================
   Tarjetas de comparativa (mismo diseño que la página de inicio)
   Usadas por [tabla_comparativa] en la sección "Ranking completo"
   ========================================================================== */
.ctc-wrap{max-width:1120px;margin:32px auto;font-family:inherit;color:#1f2937}
.ctc-filtro-titulo{font-size:20px;font-weight:800;color:#0b3d2e;margin-bottom:4px}
.ctc-filtro-contador{font-size:13px;color:#6b7280;margin-bottom:16px}
.ctc-list{display:flex;flex-direction:column;gap:14px}
.ctc-row{display:grid;grid-template-columns:56px 2fr 90px 1.6fr 1fr 1fr 1fr 150px;align-items:center;gap:14px;background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:16px 18px;box-shadow:0 1px 2px rgba(16,24,40,.04);transition:box-shadow .15s ease, transform .15s ease, border-color .15s ease}
.ctc-row:hover{box-shadow:0 8px 20px rgba(16,24,40,.08);border-color:#d8dce1;transform:translateY(-1px)}
.ctc-row--top1{border-color:#ffb400;background:linear-gradient(180deg,#fffdf6,#ffffff)}
.ctc-rank{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;color:#fff;background:#0b3d2e;justify-self:center}
.ctc-row--top1 .ctc-rank{background:#ffb400;color:#1a1a1a}
.ctc-casino{display:flex;align-items:center;gap:12px;min-width:0}
.ctc-logo{width:44px;height:44px;flex:0 0 44px;border-radius:10px;background:#f4f5f3;border:1px solid #ececec;display:flex;align-items:center;justify-content:center;overflow:hidden}
.ctc-logo img{width:100%;height:100%;object-fit:contain}
.ctc-nombre{min-width:0}
.ctc-nombre a{font-weight:700;font-size:15.5px;color:#0b3d2e;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.ctc-nombre a:hover{text-decoration:underline}
.ctc-nombre .ctc-sub{font-size:12.5px;color:#8a8f98;margin-top:2px}
.ctc-rating{justify-self:center;width:52px;height:52px;border-radius:50%;background:#0b3d2e;color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;font-weight:800;line-height:1}
.ctc-rating span{font-size:15px}
.ctc-rating small{font-size:9px;opacity:.75;font-weight:600;margin-top:2px}
.ctc-bono{background:#eafaf0;border:1px solid #bfe8cd;color:#0f5132;border-radius:10px;padding:8px 10px;font-size:13px;font-weight:600;line-height:1.35}
.ctc-meta{font-size:13px;color:#374151;line-height:1.4}
.ctc-cta{display:flex;flex-direction:column;align-items:stretch;gap:4px;justify-self:end;width:100%}
.ctc-cta-btn{display:inline-block;text-align:center;background:#ffb400;color:#1a1a1a!important;font-weight:700;font-size:13.5px;padding:10px 14px;border-radius:999px;text-decoration:none!important;transition:background .15s ease;white-space:nowrap}
.ctc-cta-btn:hover{background:#e0a000}
.ctc-cta-link{font-size:12px;text-align:center;color:#6b7280;text-decoration:none}
.ctc-cta-link:hover{text-decoration:underline}
.ctc-label{display:none}
.ctc-disclaimer{font-size:12px;color:#8a8f98;margin-top:14px;text-align:center}
.ctc-vacio{padding:24px;text-align:center;color:#6b7280;background:#f9fafb;border-radius:12px}

@media (max-width:980px){
	.ctc-row{grid-template-columns:44px 2fr 70px 1fr 130px}
	.ctc-row > .ctc-col-pagos,.ctc-row > .ctc-col-deposito,.ctc-row > .ctc-col-tiempo{display:none}
}
@media (max-width:680px){
	.ctc-row{grid-template-columns:1fr;gap:10px;padding:16px;position:relative}
	.ctc-rank{position:absolute;top:14px;right:14px;justify-self:auto}
	.ctc-casino{padding-right:40px}
	.ctc-rating{justify-self:start;width:auto;height:auto;flex-direction:row;gap:6px;background:none;color:#0b3d2e;border-radius:0;padding:0}
	.ctc-rating span{font-size:18px}
	.ctc-rating small{margin:0;font-size:11px;color:#6b7280;font-weight:600}
	.ctc-row > .ctc-col-pagos,.ctc-row > .ctc-col-deposito,.ctc-row > .ctc-col-tiempo{display:block}
	.ctc-label{display:block;font-size:10.5px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;color:#9aa1ab;margin-bottom:2px}
	.ctc-cta{justify-self:stretch}
	.ctc-cta-btn{padding:12px 14px;font-size:14px}
}
