/* Directorio público — layout barra + sidebar + listado horizontal */

.tcsp-artists-directory {
	--tcsp-dir-purple: #6d28d9;
	--tcsp-dir-purple-dark: #5b21b6;
	--tcsp-dir-purple-soft: #ede9fe;
	--tcsp-dir-accent: #db2777;
	--tcsp-dir-text: #111827;
	--tcsp-dir-muted: #6b7280;
	--tcsp-dir-border: #e5e7eb;
	--tcsp-dir-radius: 14px;
	font-family: "Poppins", system-ui, -apple-system, sans-serif;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px 48px;
	color: var(--tcsp-dir-text);
}

.tcsp-dir-layout {
	display: block;
}

/* Barra superior */
.tcsp-dir-topbar {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 24px;
	padding: 14px 18px;
	background: #fff;
	border-radius: var(--tcsp-dir-radius);
	border: 1px solid var(--tcsp-dir-border);
	box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
}

.tcsp-dir-brand-ic {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--tcsp-dir-purple), #9333ea);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tcsp-dir-brand-svg {
	display: block;
	flex-shrink: 0;
}

.tcsp-dir-topbar-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.tcsp-dir-select-wrap {
	flex: 1 1 140px;
	min-width: 120px;
}

.tcsp-dir-select-wrap--side-full {
	flex: 1 1 100%;
	min-width: 0;
	width: 100%;
	margin-bottom: 4px;
}

/* Filtro de estrellas (valoración) */
.tcsp-dir-rating-picker-wrap {
	margin-bottom: 0;
}

.tcsp-dir-rating-stars {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
}

.tcsp-dir-rating-picker-hint {
	margin: 0 0 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #374151;
	min-height: 1.35em;
}

.tcsp-dir-rating-star {
	position: relative;
	width: 2.1rem;
	height: 2.1rem;
	flex-shrink: 0;
}

.tcsp-dir-rating-star-bg {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2rem;
	line-height: 1;
	pointer-events: none;
	user-select: none;
	color: #e5e7eb;
	z-index: 0;
	display: block;
}

.tcsp-dir-rating-star-fill {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 2rem;
	line-height: 1;
	pointer-events: none;
	user-select: none;
	color: #f59e0b;
	z-index: 1;
	width: 0;
	height: 1em;
	overflow: hidden;
	display: block;
	transition: width 0.15s ease;
}

.tcsp-dir-rating-star.is-full .tcsp-dir-rating-star-fill {
	width: 1em;
}

.tcsp-dir-rating-star.is-half .tcsp-dir-rating-star-fill {
	width: 0.5em;
}

.tcsp-dir-rating-star.is-off .tcsp-dir-rating-star-fill {
	width: 0;
}

.tcsp-dir-rating-half {
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	z-index: 2;
	margin: 0;
	padding: 0;
	border: none;
	-webkit-appearance: none;
	appearance: none;
	background: transparent !important;
	cursor: pointer;
	border-radius: 0;
	outline: none;
	box-shadow: none;
}

.tcsp-dir-rating-half:hover,
.tcsp-dir-rating-half:active,
.tcsp-dir-rating-half:focus {
	background: transparent !important;
	box-shadow: none;
}

/* Vista previa amarilla con forma de estrella (sin rectángulo del botón) */
.tcsp-dir-rating-star.is-off:has(.tcsp-dir-rating-half--l:hover) .tcsp-dir-rating-star-fill,
.tcsp-dir-rating-star.is-half:has(.tcsp-dir-rating-half--l:hover) .tcsp-dir-rating-star-fill {
	width: 0.5em;
	overflow: hidden;
}

.tcsp-dir-rating-star.is-off:has(.tcsp-dir-rating-half--r:hover) .tcsp-dir-rating-star-fill,
.tcsp-dir-rating-star.is-half:has(.tcsp-dir-rating-half--r:hover) .tcsp-dir-rating-star-fill {
	width: 1em;
	overflow: hidden;
}

.tcsp-dir-rating-star.is-full:has(.tcsp-dir-rating-half:hover) .tcsp-dir-rating-star-fill {
	filter: brightness(1.12);
}

.tcsp-dir-rating-half--l {
	left: 0;
}

.tcsp-dir-rating-half--r {
	right: 0;
}

.tcsp-dir-rating-half:focus-visible {
	outline: 2px solid var(--tcsp-dir-purple);
	outline-offset: 2px;
}

.tcsp-dir-rating-any-wrap {
	margin-top: 4px;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 14px;
	color: #374151;
}

/* Public artist profile (corporate social style) */
.tcsp-public-artist-page {
	max-width: 100%;
	width: 100%;
	margin: 0;
}

.tcsp-public-artist-hero {
	background: #fff;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
	margin-bottom: 18px;
}

.tcsp-public-artist-cover {
	height: 280px;
	background: #0f172a;
}

.tcsp-public-artist-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcsp-public-artist-head {
	padding: 0 24px 20px;
	display: flex;
	gap: 18px;
	align-items: flex-end;
	margin-top: -46px;
}

.tcsp-public-artist-avatar {
	width: 112px;
	height: 112px;
	border-radius: 999px;
	border: 4px solid #fff;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22);
	background: #fff;
}

.tcsp-public-artist-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcsp-public-artist-meta {
	min-width: 0;
	padding-bottom: 2px;
}

.tcsp-public-artist-name {
	margin: 0;
	font-size: 34px;
	line-height: 1.12;
	font-weight: 700;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.tcsp-public-artist-verified {
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tcsp-public-artist-city {
	margin: 6px 0 0;
	font-size: 16px;
	color: #475569;
}

.tcsp-public-artist-genres {
	margin: 5px 0 0;
	font-size: 15px;
	color: #64748b;
}

.tcsp-public-artist-stats {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #334155;
}

.tcsp-public-artist-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 12px 0 14px;
}

.tcsp-public-tab {
	border: 1px solid #dbe3ff;
	background: #f7f9ff;
	color: #2d3a69;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.tcsp-public-tab.is-active {
	background: linear-gradient(90deg, #2643e9, #3d67ff);
	color: #fff;
	border-color: #2643e9;
	box-shadow: 0 6px 16px rgba(39, 67, 233, 0.25);
}

.tcsp-public-artist-section {
	background: #fff;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 14px;
	padding: 16px;
	margin-bottom: 14px;
}

.tcsp-public-artist-section-title {
	margin: 0 0 14px;
	font-size: 20px;
	line-height: 1.2;
	color: #0f172a;
}

.tcsp-public-artist-subtitle {
	margin: 16px 0 10px;
	font-size: 17px;
	color: #1e2a56;
}

.tcsp-public-artist-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.tcsp-public-artist-summary-item {
	border: 1px solid #e3e8ff;
	background: #f9fbff;
	border-radius: 12px;
	padding: 12px;
}

.tcsp-public-artist-summary-label {
	display: block;
	color: #64748b;
	font-size: 12px;
	margin-bottom: 6px;
}

.tcsp-public-artist-summary-item strong {
	font-size: 18px;
	color: #13213d;
}

.tcsp-public-review-summary {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	background: #f7f9ff;
	border: 1px solid #dbe3ff;
	border-radius: 999px;
	padding: 8px 14px;
	margin-bottom: 10px;
}

.tcsp-public-review-summary strong {
	font-size: 26px;
	line-height: 1;
	color: #1e2a56;
}

.tcsp-public-empty {
	margin: 8px 0 0;
	color: #64748b;
}

.tcsp-public-artist-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}

.tcsp-public-artist-gallery img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 12px;
	display: block;
}

/* Conversion profile redesign */
.tcsp-conv-profile {
	--conv-bg: transparent;
	--conv-card: #ffffff;
	--conv-line: #e2e8f0;
	--conv-primary: #7c3aed;
	--conv-primary-2: #3b82f6;
	background: var(--conv-bg);
	color: #0f172a;
	padding: 16px;
	border-radius: 16px;
}

.tcsp-conv-hero {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 0;
	background: #ffffff;
	border: 0;
	border-radius: 16px;
	overflow: hidden;
}

.tcsp-conv-hero-copy {
	padding: 28px;
	background: #05070d;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.tcsp-conv-badge {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(124, 58, 237, 0.25);
	border: 1px solid rgba(196, 181, 253, 0.7);
	font-size: 12px;
	font-weight: 600;
	color: #ffffff;
}

.tcsp-conv-hero-copy h1 {
	margin: 10px 0 8px;
	font-size: 44px;
	line-height: 1.05;
}

.tcsp-conv-subtitle { margin: 0 0 10px; color: #cbd5e1; }
.tcsp-conv-proof { display:flex; gap:12px; flex-wrap:wrap; font-size:14px; color:#e2e8f0; }
.tcsp-conv-proof--three {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px 12px;
	margin-top: 10px;
}

.tcsp-conv-proof--three span {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(226, 232, 240, 0.22);
	border-radius: 10px;
	padding: 8px 10px;
	font-size: 13px;
}
.tcsp-conv-cta-row { margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }

.tcsp-conv-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 10px;
	padding: 10px 14px;
	font-weight: 600;
}

.tcsp-conv-btn--primary { background: linear-gradient(90deg,var(--conv-primary),var(--conv-primary-2)); color:#fff; }
.tcsp-conv-btn--ghost { background: transparent; color:#ffffff; border:1px solid rgba(226, 232, 240, 0.6); }
.tcsp-conv-btn--mini { margin-top:10px; background: #7c3aed; color:#fff; width:100%; padding:8px 12px; font-size:14px; }

.tcsp-conv-hero-media { aspect-ratio: 16 / 9; min-height: 420px; max-height: none; }
.tcsp-conv-hero-media {
	position: relative;
}

.tcsp-conv-hero-media::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 100%;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(5, 7, 13, 0.95) 0%, rgba(5, 7, 13, 0.65) 35%, rgba(5, 7, 13, 0) 100%);
	z-index: 1;
}

.tcsp-conv-hero-media img { width:100%; height:100%; object-fit:contain; object-position: center center; display:block; }

.tcsp-conv-section {
	margin-top: 18px;
	background: #ffffff;
	border: 1px solid var(--conv-line);
	border-radius: 14px;
	padding: 14px;
}

.tcsp-conv-section h2 {
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.1;
	color: #0f172a;
}

.tcsp-conv-price-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 10px;
}

.tcsp-conv-price-card {
	background: var(--conv-card);
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px;
}

.tcsp-conv-card-title { display:block; font-size:14px; color:#334155; }
.tcsp-conv-card-price { margin:6px 0 2px; font-size:32px; font-weight:700; color:#0f172a; }
.tcsp-conv-card-meta { margin:0; font-size:13px; color:#64748b; }

.tcsp-conv-services-grid {
	display:grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap:10px;
}

.tcsp-conv-service-card { background: var(--conv-card); border:1px solid #e2e8f0; border-radius:12px; overflow:hidden; box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06); }
.tcsp-conv-service-body { padding:14px; }
.tcsp-conv-service-price { font-size:30px; font-weight:800; line-height:1; color:#111827; margin-bottom:12px; }
.tcsp-conv-service-list { list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.tcsp-conv-service-list li { font-size:14px; line-height:1.4; color:#374151; }
.tcsp-conv-service-list strong { color:#111827; }
.tcsp-conv-service-foot { margin-top:12px; display:flex; justify-content:flex-end; align-items:center; gap:8px; font-size:13px; }
.tcsp-conv-service-foot a { color:#fff; background:#7c3aed; border-radius:8px; padding:6px 12px; text-decoration:none; font-weight:600; }

.tcsp-conv-repertoire {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 14px;
}
.tcsp-conv-repertoire-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}
.tcsp-conv-repertoire-list li {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 8px 10px;
	font-size: 14px;
	color: #334155;
}

.tcsp-conv-video-layout { display:grid; grid-template-columns: 2fr 1fr; gap:10px; }
.tcsp-conv-video-main iframe { width:100%; min-height:300px; border:0; border-radius:10px; }
.tcsp-conv-video-strip { display:grid; gap:8px; align-content:start; }
.tcsp-conv-video-strip a { background: var(--conv-card); border:1px solid #e2e8f0; border-radius:10px; padding:10px; color:#334155; text-decoration:none; }

.tcsp-conv-reviews-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:10px; }
.tcsp-conv-reviews-grid article { background: var(--conv-card); border:1px solid #e2e8f0; border-radius:10px; padding:12px; }
.tcsp-conv-reviews-grid p { margin:0 0 8px; color:#475569; font-size:14px; line-height:1.45; }
.tcsp-conv-reviews-grid strong { font-size:13px; color:#0f172a; }

.tcsp-conv-about { display:grid; grid-template-columns: 220px 1fr; gap:14px; align-items:center; }
.tcsp-conv-about-media img { width:100%; border-radius:12px; object-fit:cover; aspect-ratio:1/1; }
.tcsp-conv-about-copy h2 { margin:0 0 8px; }
.tcsp-conv-about-copy p { margin:0; color:#475569; }

.tcsp-conv-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	gap: 10px;
}

.tcsp-conv-gallery-grid a {
	display: block;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
}

.tcsp-conv-gallery-grid img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.tcsp-conv-gallery-videos {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 10px;
}

.tcsp-conv-gallery-video-item iframe {
	width: 100%;
	min-height: 180px;
	border: 0;
	border-radius: 10px;
}

@media (max-width: 768px) {
	.tcsp-public-artist-cover {
		height: 180px;
	}

	.tcsp-public-artist-head {
		padding: 0 14px 14px;
		margin-top: -32px;
		gap: 12px;
	}

	.tcsp-public-artist-avatar {
		width: 84px;
		height: 84px;
		border-width: 3px;
	}

	.tcsp-public-artist-name {
		font-size: 24px;
	}

	.tcsp-public-artist-city,
	.tcsp-public-artist-genres {
		font-size: 14px;
	}

	.tcsp-public-artist-stats {
		font-size: 12px;
		gap: 6px 10px;
	}

	.tcsp-public-artist-tabs {
		gap: 6px;
	}

	.tcsp-public-tab {
		padding: 7px 12px;
		font-size: 13px;
	}

	.tcsp-public-artist-section {
		padding: 12px;
	}

	.tcsp-public-artist-section-title {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.tcsp-public-artist-summary {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.tcsp-public-artist-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.tcsp-conv-hero { grid-template-columns: 1fr; }
	.tcsp-conv-hero-copy h1 { font-size: 34px; }
	.tcsp-conv-hero-media { aspect-ratio: 1 / 1; max-height: none; }
	.tcsp-conv-proof--three { grid-template-columns: 1fr; }
	.tcsp-conv-section h2 { font-size: 24px; }
	.tcsp-conv-price-grid,
	.tcsp-conv-services-grid,
	.tcsp-conv-reviews-grid,
	.tcsp-conv-video-layout,
	.tcsp-conv-about,
	.tcsp-conv-repertoire-list { grid-template-columns: 1fr; }
	.tcsp-conv-gallery-videos { grid-template-columns: 1fr; }
	.tcsp-conv-service-body p { min-height: 0; }
}

.tcsp-dir-select {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 12px;
	font-size: 14px;
	background: #fafafa;
	box-sizing: border-box;
	color: var(--tcsp-dir-text);
}

.tcsp-dir-select:focus {
	outline: 2px solid var(--tcsp-dir-purple);
	outline-offset: 1px;
	border-color: var(--tcsp-dir-purple);
}

input.tcsp-dir-date.tcsp-dir-select,
input[type="date"].tcsp-dir-select.tcsp-dir-date {
	min-height: 44px;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 12px;
	background: #fafafa;
	color: var(--tcsp-dir-text);
	font-family: inherit;
	font-size: 14px;
	box-sizing: border-box;
	color-scheme: light;
	-webkit-appearance: none;
	appearance: none;
}

input.tcsp-dir-date.tcsp-dir-select::-webkit-calendar-picker-indicator {
	cursor: pointer;
	opacity: 0.55;
}

input.tcsp-dir-date.tcsp-dir-select:focus {
	outline: 2px solid var(--tcsp-dir-purple);
	outline-offset: 1px;
	border-color: var(--tcsp-dir-purple);
}

.tcsp-dir-clear-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	border: none;
	color: var(--tcsp-dir-muted);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 10px 16px;
	white-space: nowrap;
	border-radius: 999px;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tcsp-dir-clear-link:hover {
	background: var(--tcsp-dir-purple);
	color: #fff;
	box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
}

.tcsp-dir-clear-link:hover .tcsp-dir-clear-ic {
	opacity: 1;
	filter: brightness(0) invert(1);
}

.tcsp-dir-clear-ic {
	font-size: 1rem;
}

/* Cuerpo: sidebar + principal */
.tcsp-dir-body {
	display: grid;
	grid-template-columns: minmax(240px, 280px) 1fr;
	gap: 28px;
	align-items: start;
}

.tcsp-artists-directory.tcsp-dir-no-sidebar .tcsp-dir-body {
	grid-template-columns: 1fr;
}

.tcsp-artists-directory.tcsp-dir-no-topbar .tcsp-dir-topbar,
.tcsp-artists-directory.tcsp-dir-no-sidebar .tcsp-dir-sidebar,
.tcsp-artists-directory.tcsp-dir-no-sort .tcsp-dir-sort-field,
.tcsp-artists-directory.tcsp-dir-no-view-toggle .tcsp-dir-view-toggle,
.tcsp-artists-directory.tcsp-dir-no-pagination .tcsp-dir-pagination-wrap {
	display: none !important;
}

@media (max-width: 900px) {
	.tcsp-dir-body {
		grid-template-columns: 1fr;
	}
}

.tcsp-dir-sidebar {
	background: #fff;
	border-radius: var(--tcsp-dir-radius);
	border: 1px solid var(--tcsp-dir-border);
	padding: 22px 20px;
	box-shadow: 0 4px 20px rgba(17, 24, 39, 0.05);
}

.tcsp-dir-side-block + .tcsp-dir-side-block {
	margin-top: 8px;
	padding-top: 26px;
	border-top: 1px solid var(--tcsp-dir-border);
}

.tcsp-dir-side-title {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	color: var(--tcsp-dir-text);
}

.tcsp-dir-side-hint {
	margin: 0 0 12px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--tcsp-dir-muted);
}

/* Precio: un solo track con dos thumbs */
.tcsp-dir-dual-range-wrap {
	--tcsp-dir-range-h: 6px;
	--tcsp-dir-thumb: 20px;
	--tcsp-dir-range-wrap-h: 40px;
	position: relative;
	height: var(--tcsp-dir-range-wrap-h);
	margin: 0 0 12px;
}

.tcsp-dir-dual-range-track {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: var(--tcsp-dir-range-h);
	border-radius: 999px;
	background: #e5e7eb;
	pointer-events: none;
	z-index: 0;
}

.tcsp-dir-dual-range {
	position: absolute;
	left: 0;
	width: 100%;
	height: var(--tcsp-dir-range-wrap-h);
	top: 0;
	margin: 0;
	padding: 0;
	background: none;
	-webkit-appearance: none;
	appearance: none;
	pointer-events: none;
	z-index: 1;
}

.tcsp-dir-dual-range::-webkit-slider-runnable-track {
	height: var(--tcsp-dir-range-h);
	background: transparent;
	border: none;
}

.tcsp-dir-dual-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: var(--tcsp-dir-thumb);
	height: var(--tcsp-dir-thumb);
	margin-top: calc((var(--tcsp-dir-range-h) - var(--tcsp-dir-thumb)) / 2);
	border-radius: 50%;
	background: var(--tcsp-dir-purple);
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(109, 40, 217, 0.35);
	cursor: pointer;
	pointer-events: auto;
}

.tcsp-dir-dual-range::-moz-range-track {
	height: var(--tcsp-dir-range-h);
	background: transparent;
	border: none;
}

.tcsp-dir-dual-range::-moz-range-thumb {
	width: var(--tcsp-dir-thumb);
	height: var(--tcsp-dir-thumb);
	border-radius: 50%;
	background: var(--tcsp-dir-purple);
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(109, 40, 217, 0.35);
	cursor: pointer;
	pointer-events: auto;
}

.tcsp-dir-dual-range:focus {
	outline: none;
}

.tcsp-dir-dual-range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px var(--tcsp-dir-purple-soft), 0 2px 8px rgba(109, 40, 217, 0.35);
}

.tcsp-dir-price-labels {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	font-weight: 600;
	color: var(--tcsp-dir-purple);
	margin-top: 0;
	margin-bottom: 14px;
}

.tcsp-dir-pagination-wrap {
	margin-top: 20px;
}

.tcsp-dir-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	background: #fafafa;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 12px;
	font-size: 14px;
}

.tcsp-dir-pagination--meta-only {
	justify-content: flex-start;
}

.tcsp-dir-pagination-meta {
	color: var(--tcsp-dir-muted);
	font-weight: 600;
}

.tcsp-dir-pagination-btns {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.tcsp-dir-page-btn {
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid var(--tcsp-dir-border);
	background: #fff;
	font-size: 18px;
	font-weight: 700;
	color: var(--tcsp-dir-text);
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.tcsp-dir-page-btn:hover:not(:disabled) {
	background: var(--tcsp-dir-purple-soft);
	border-color: #ddd6fe;
	color: var(--tcsp-dir-purple-dark);
}

.tcsp-dir-page-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.tcsp-dir-pagination-current {
	font-weight: 700;
	color: var(--tcsp-dir-text);
	min-width: 3.5em;
	text-align: center;
}

.tcsp-dir-check-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.tcsp-dir-check-list li {
	margin-bottom: 12px;
}

.tcsp-dir-check-list li:last-child {
	margin-bottom: 0;
}

.tcsp-dir-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	cursor: pointer;
	color: #374151;
}

.tcsp-dir-check input {
	margin-top: 3px;
	accent-color: var(--tcsp-dir-purple);
}

.tcsp-dir-check--solo {
	margin-top: 14px;
	margin-bottom: 0;
	font-weight: 600;
}

.tcsp-dir-check--solo + .tcsp-dir-side-title {
	margin-top: 10px;
}

.tcsp-dir-side-clear {
	width: 100%;
	padding: 12px 16px;
	margin-top: 20px;
	background: var(--tcsp-dir-purple);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: background 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
}

.tcsp-dir-side-clear:hover {
	background: var(--tcsp-dir-purple-dark);
	color: #fff;
	border-radius: 999px;
	box-shadow: 0 4px 16px rgba(109, 40, 217, 0.35);
}

/* Principal */
.tcsp-dir-main-head {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	width: 100%;
}

.tcsp-dir-main-head .tcsp-dir-toolbar-compact {
	order: 2;
	margin-left: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px 18px;
	flex-wrap: wrap;
	flex-shrink: 0;
}

.tcsp-dir-sort-field {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	min-width: 0;
}

.tcsp-dir-sort-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--tcsp-dir-text);
	white-space: nowrap;
	margin: 0;
	cursor: pointer;
}

.tcsp-dir-select.tcsp-dir-sort-select {
	width: auto;
	min-width: 168px;
	max-width: 240px;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 10px;
}

.tcsp-dir-main-head .tcsp-dir-page-title--single {
	order: 1;
}

/* Lista ↔ cuadrícula */
.tcsp-dir-page-title--single {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
}

.tcsp-dir-view-toggle {
	display: inline-flex;
	gap: 0;
	padding: 4px;
	border-radius: 12px;
	background: #f3f4f6;
	border: 1px solid var(--tcsp-dir-border);
}

.tcsp-dir-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: none;
	border-radius: 10px;
	background: transparent;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--tcsp-dir-muted);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tcsp-dir-view-btn-ic {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: inherit;
}

.tcsp-dir-view-btn-ic svg {
	display: block;
}

.tcsp-dir-view-btn-ic svg path {
	fill: currentColor;
}

.tcsp-dir-view-btn:hover {
	color: #fff;
	background: var(--tcsp-dir-purple);
}

.tcsp-dir-view-btn:hover .tcsp-dir-view-btn-ic {
	color: #fff;
}

.tcsp-dir-view-btn.is-active {
	background: #fff;
	color: var(--tcsp-dir-purple);
	box-shadow: 0 1px 5px rgba(17, 24, 39, 0.08);
}

.tcsp-dir-view-btn.is-active:hover {
	color: #fff;
	background: var(--tcsp-dir-purple-dark);
}

.tcsp-dir-view-btn.is-active:hover .tcsp-dir-view-btn-ic {
	color: #fff;
}

@media (max-width: 480px) {
	.tcsp-dir-view-btn-txt {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.tcsp-dir-view-btn {
		padding: 10px 12px;
		position: relative;
	}
}

.tcsp-dir-page-title {
	margin: 0;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 800;
	line-height: 1.2;
}

.tcsp-dir-page-title-base {
	color: var(--tcsp-dir-text);
}

.tcsp-dir-page-title-accent {
	color: var(--tcsp-dir-accent);
	font-weight: 800;
}

.tcsp-dir-see-all {
	background: none;
	border: none;
	color: var(--tcsp-dir-purple);
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
	padding: 4px 0;
}

.tcsp-dir-see-all:hover {
	color: var(--tcsp-dir-purple-dark);
}

.tcsp-dir-list-view[hidden] {
	display: none !important;
}

.tcsp-dir-list-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.tcsp-dir-empty {
	text-align: center;
	color: var(--tcsp-dir-muted);
	padding: 36px 16px;
	margin: 0;
	background: #fafafa;
	border-radius: var(--tcsp-dir-radius);
	border: 1px dashed var(--tcsp-dir-border);
}

/* Tarjeta fila */
.tcsp-dir-card--row {
	display: grid;
	grid-template-columns: 136px 1fr minmax(0, max-content);
	gap: 12px 14px;
	align-items: center;
	background: #fff;
	border-radius: var(--tcsp-dir-radius);
	border: 1px solid var(--tcsp-dir-border);
	padding: 10px 12px;
	box-shadow: 0 6px 22px rgba(17, 24, 39, 0.06);
	cursor: pointer;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
	text-align: left;
}

.tcsp-dir-card--featured {
	border-color: #c4b5fd;
	box-shadow: 0 8px 28px rgba(109, 40, 217, 0.14);
}

@media (max-width: 640px) {
	.tcsp-dir-card--row {
		grid-template-columns: 96px 1fr;
	}
	.tcsp-dir-card-aside {
		grid-column: 1 / -1;
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-start;
		padding-top: 4px;
	}
}

.tcsp-dir-card--row:hover {
	box-shadow: 0 10px 32px rgba(109, 40, 217, 0.12);
	border-color: #ddd6fe;
}

.tcsp-dir-card--row:focus {
	outline: 2px solid var(--tcsp-dir-purple);
	outline-offset: 2px;
}

.tcsp-dir-card-media {
	position: relative;
	width: 136px;
	height: 136px;
	border-radius: 12px;
	overflow: visible;
	background: #f3f4f6;
	flex-shrink: 0;
}

.tcsp-dir-card-media-inner {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
}

@media (max-width: 640px) {
	.tcsp-dir-card-media {
		width: 96px;
		height: 96px;
	}
}

.tcsp-dir-card-media .tcsp-dir-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

/* Cinta “Top artista” (esquina; un artista por página según criterio en PHP) */
.tcsp-dir-ribbon-top {
	position: absolute;
	top: 0;
	right: 0;
	width: 88px;
	height: 88px;
	overflow: hidden;
	pointer-events: none;
	z-index: 4;
}

.tcsp-dir-ribbon-top__text {
	position: absolute;
	top: 16px;
	right: -30px;
	display: block;
	width: 130px;
	padding: 6px 0;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-align: center;
	color: #1f2937;
	background: linear-gradient(120deg, #fde68a, #f59e0b);
	transform: rotate(45deg);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	line-height: 1.15;
}

.tcsp-dir-card-main {
	min-width: 0;
}

.tcsp-dir-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.tcsp-dir-card-name {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--tcsp-dir-text);
	line-height: 1.25;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}

.tcsp-dir-verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #2563eb;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.tcsp-dir-fav {
	background: #f9fafb;
	border: 1px solid var(--tcsp-dir-border);
	width: 38px;
	height: 38px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.tcsp-dir-fav:hover {
	color: #009fe3;
	background: rgba(0, 159, 227, 0.08);
	border-color: #009fe3;
}

.tcsp-dir-fav--on {
	background: #fdf2f8;
	border-color: #f9a8d4;
	color: var(--tcsp-dir-accent);
}

.tcsp-dir-fav-icon {
	font-size: 1.1rem;
	line-height: 1;
}

.tcsp-dir-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.tcsp-dir-tag {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--tcsp-dir-purple-soft);
	color: var(--tcsp-dir-purple-dark);
}

.tcsp-dir-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	font-size: 13px;
	color: var(--tcsp-dir-muted);
	margin-bottom: 8px;
}

.tcsp-dir-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.tcsp-dir-meta-ic {
	font-size: 14px;
	line-height: 1;
}

.tcsp-dir-card-price {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
}

.tcsp-dir-price-from {
	font-weight: 500;
	font-size: 0.82em;
	color: #333333;
	margin-right: 4px;
}

.tcsp-dir-price-num {
	font-weight: 700;
	font-size: 1.05em;
	color: #009fe3;
}

.tcsp-dir-card-price--muted {
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--tcsp-dir-muted);
}

.tcsp-dir-card-aside {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
	padding-right: 4px;
	min-width: 0;
	max-width: 100%;
}

.tcsp-dir-card-aside .tcsp-dir-fav,
.tcsp-dir-card-aside .tcsp-dir-card-rating-lg,
.tcsp-dir-card-aside .tcsp-dir-profile-btn {
	flex-shrink: 0;
}

.tcsp-dir-profile-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 22px;
	background: var(--tcsp-dir-purple);
	color: #fff !important;
	text-decoration: none !important;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s ease;
	font-family: inherit;
}

.tcsp-dir-profile-btn:hover {
	background: var(--tcsp-dir-purple-dark);
	color: #fff !important;
}

.tcsp-dir-card-rating-lg {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--tcsp-dir-text);
}

.tcsp-dir-card-rating-lg .tcsp-dir-star {
	color: #f59e0b;
}

/* Detalle en página */
.tcsp-dir-detail-view[hidden] {
	display: none !important;
}

.tcsp-dir-back-btn {
	display: inline-flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 10px 18px;
	background: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #111;
	cursor: pointer;
	transition: background 0.2s ease;
}

.tcsp-dir-back-btn:hover {
	background: #eaeaea;
}

.tcsp-dir-detail-panel {
	background: #fff;
	border-radius: 16px;
	padding: 28px 28px 36px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid #eee;
	max-width: 900px;
	margin: 0 auto;
}

.tcsp-dir-loading {
	margin: 0;
	font-size: 15px;
	color: #666;
}

.tcsp-dir-detail-profile {
	text-align: center;
	margin-bottom: 28px;
}

.tcsp-dir-detail-profile-img-wrap {
	width: 200px;
	height: 200px;
	margin: 0 auto 16px;
	border-radius: 50%;
	overflow: hidden;
	background: #f0f0f0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tcsp-dir-detail-profile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcsp-dir-detail-title {
	margin: 0 0 8px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #111;
}

.tcsp-dir-detail-city {
	margin: 0 0 6px;
	font-size: 16px;
	color: #555;
}

.tcsp-dir-detail-genres {
	margin: 0;
	font-size: 15px;
	color: #444;
	line-height: 1.45;
}

.tcsp-dir-detail-section {
	margin-bottom: 22px;
}

.tcsp-dir-detail-section h3 {
	margin: 0 0 10px;
	font-size: 1rem;
	font-weight: 700;
	color: #111;
}

.tcsp-dir-detail-text {
	font-size: 15px;
	line-height: 1.55;
	color: #444;
}

.tcsp-dir-detail-list {
	margin: 0;
	padding-left: 1.2em;
	font-size: 15px;
	color: #444;
}

.tcsp-dir-detail-plans {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tcsp-dir-plan-row {
	padding: 18px 0;
	border-bottom: 1px solid #eee;
	font-size: 15px;
}

.tcsp-dir-plan-row:last-child {
	border-bottom: none;
}

.tcsp-dir-plan-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px 12px;
	margin-bottom: 8px;
}

.tcsp-dir-plan-price {
	font-weight: 700;
	color: #111;
}

.tcsp-dir-plan-dur {
	color: #666;
	font-size: 14px;
}

.tcsp-dir-plan-desc {
	margin-top: 8px;
	font-size: 14px;
	color: #555;
}

.tcsp-dir-plan-actions {
	margin-top: 14px;
}

.tcsp-dir-hire-plan-btn {
	display: inline-block;
	padding: 10px 22px;
	background: #006cff;
	color: #fff !important;
	text-decoration: none !important;
	border: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.tcsp-dir-hire-plan-btn:hover {
	background: #0056cc;
	color: #fff !important;
}

.tcsp-dir-hire-plan-btn--disabled {
	display: inline-block;
	padding: 10px 22px;
	background: #e0e0e0;
	color: #888 !important;
	border-radius: 10px;
	font-weight: 600;
	font-size: 14px;
	cursor: not-allowed;
}

.tcsp-dir-detail-videos .tcsp-dir-video-embed {
	margin-bottom: 16px;
}

.tcsp-dir-detail-videos .tcsp-dir-video-embed iframe {
	max-width: 100%;
	border-radius: 10px;
}

.tcsp-dir-detail-section--plans {
	margin-top: 8px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Compat.: resultados de búsqueda que aún usan grilla de tarjetas clásica */
.tcsp-dir-grid-inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 22px;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) {
	background: #fff;
	border-radius: var(--tcsp-dir-radius);
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
	cursor: pointer;
	transition: box-shadow 0.25s ease, transform 0.2s ease;
	text-align: left;
}

.tcsp-dir-card:not(.tcsp-dir-card--row):hover {
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-image-wrap {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f5f5f5;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: var(--tcsp-dir-radius) var(--tcsp-dir-radius) 0 0;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-body {
	padding: 16px 16px 18px;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 6px;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-name {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #111;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-card-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
}

.tcsp-dir-card:not(.tcsp-dir-card--row) .tcsp-dir-star {
	color: #e6b800;
}

/* Perfil en sustitución del listado */
.tcsp-dir-profile-wrap[hidden] {
	display: none !important;
}

.tcsp-dir-profile-wrap:not([hidden]) {
	display: block;
	animation: tcsp-dir-profile-in 0.28s ease;
}

@keyframes tcsp-dir-profile-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.tcsp-dir-back-profile {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	padding: 11px 20px;
	background: #f9fafb;
	border: 1px solid var(--tcsp-dir-border);
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--tcsp-dir-text);
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tcsp-dir-back-profile:hover {
	background: var(--tcsp-dir-purple-soft);
	border-color: #ddd6fe;
	color: var(--tcsp-dir-purple-dark);
}

.tcsp-dir-profile-body {
	background: #fff;
	border-radius: var(--tcsp-dir-radius);
	border: 1px solid var(--tcsp-dir-border);
	padding: 28px 24px 40px;
	box-shadow: 0 8px 36px rgba(17, 24, 39, 0.08);
	max-width: 920px;
	margin: 0 auto;
}

.tcsp-dir-public-profile {
	max-width: 100%;
	padding: 0;
	margin: 0 auto;
}

/* Vista cuadrícula: misma tarjeta, otro layout */
.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-list-inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
	align-items: stretch;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card--row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	padding: 0;
	overflow: visible;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-media {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 5;
	max-height: none;
	border-radius: 0;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-media-inner {
	height: 100%;
	border-radius: 0;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-media .tcsp-dir-card-image {
	border-radius: 0;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-main {
	padding: 14px 16px 8px;
	flex: 1 1 auto;
	min-height: 0;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-aside {
	padding: 0 16px 16px;
	margin-top: auto;
	width: 100%;
	align-items: flex-end;
	flex-direction: column;
	gap: 10px;
	grid-column: auto;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-rating-lg {
	display: flex;
}

.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-profile-btn {
	width: 100%;
	max-width: 100%;
	justify-content: center;
}

@media (max-width: 640px) {
	.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-list-inner {
		grid-template-columns: 1fr;
	}

	.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card--row {
		flex-direction: column;
	}

	.tcsp-dir-grid.tcsp-dir-view--grid .tcsp-dir-card-aside {
		flex-direction: column;
		justify-content: flex-start;
	}
}
