/* TuJestPrawnik — panel zleceń kancelarii */

.tzp-panel {
	--tzp-green: #042B25;
	--tzp-green-hover: #063d35;
	--tzp-green-bg: #eef5f4;
	--tzp-gold: #C58E31;
	--tzp-gold-hover: #a87728;
	--tzp-gold-bg: #fdf8f0;
	max-width: 1200px;
	margin: 0 auto;
}

/* --- Układ 2 kolumny --- */
.tzp-panel-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: start;
}

.tzp-panel-layout__main {
	min-width: 0;
}

.tzp-panel-layout__sidebar {
	position: sticky;
	top: 24px;
}

.tzp-panel-layout__main .tzp-card:last-child {
	margin-bottom: 0;
}

.tzp-panel-layout__sidebar .tzp-card {
	margin-bottom: 0;
}
.tzp-panel .tzp-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	padding: 28px 30px;
	margin-bottom: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.tzp-panel .tzp-card:last-child {
	margin-bottom: 0;
}

/* --- Nagłówki kart --- */
.tzp-card-title {
	margin: 0 0 6px;
	font-size: 20px;
	font-weight: 700;
	color: #222;
	line-height: 1.3;
}

.tzp-card-sub {
	margin: 0;
	font-size: 14px;
	color: #888;
	line-height: 1.5;
}

.tzp-card-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 22px;
}

.tzp-card-head--simple {
	margin-bottom: 18px;
}

.tzp-section-title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* --- Status pills --- */
.tzp-status-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

.tzp-status-pill--on {
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
}

.tzp-status-pill--off {
	background: #fde8e8;
	color: #b91c1c;
	border: 1px solid #f5c2c2;
	font-weight: 700;
}

/* --- Sidebar programu --- */
.tzp-panel .tzp-card.tzp-program-sidebar {
	padding: 0;
}

.tzp-program-sidebar {
	padding: 0;
	overflow: hidden;
}

.tzp-program-toggle-box {
	padding: 22px 22px 20px;
	background: linear-gradient(180deg, var(--tzp-green-bg) 0%, #fff 100%);
	border-bottom: 1px solid rgba(4, 43, 37, 0.1);
}

.tzp-program-toggle-box__head {
	margin-bottom: 16px;
}

.tzp-program-sidebar__title {
	margin: 10px 0 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--tzp-green);
	line-height: 1.3;
}

.tzp-toggle-wrap--prominent {
	padding: 14px 16px;
	background: #fff;
	border: 2px solid var(--tzp-gold);
	border-radius: 8px;
}

.tzp-toggle-wrap--prominent .tzp-toggle-label {
	font-size: 15px;
	color: #333;
}

.tzp-access-explainer--sidebar {
	margin: 0;
	padding: 20px 22px;
	border: none;
	border-radius: 0;
	background: #fff;
}

.tzp-access-explainer--sidebar .tzp-access-explainer__list {
	font-size: 13px;
}

.tzp-access-explainer--sidebar .tzp-access-explainer__list li {
	margin-bottom: 12px;
}

.tzp-price-chips--sidebar {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 22px 20px;
}

.tzp-sidebar-prices-label {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #999;
}

.tzp-price-chip--compact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	text-align: left;
}

.tzp-price-chip--compact .tzp-price-chip__meta {
	flex: 1;
	min-width: 0;
}

.tzp-price-chip--compact .tzp-price-chip__chance {
	min-height: 0;
	margin: 2px 0 0;
	font-size: 11px;
}

.tzp-price-chip--compact strong {
	flex-shrink: 0;
	font-size: 16px;
	white-space: nowrap;
}

.tzp-sidebar-regulamin {
	margin: 0;
	padding: 0 22px 22px;
	text-align: center;
}

.tzp-program-sidebar .tzp-regulamin-check {
	margin-top: 14px;
}

.tzp-program-sidebar .tzp-program-msg {
	margin-top: 12px;
}

/* --- Program (legacy full-width) --- */
.tzp-program-top {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 22px;
	padding-bottom: 22px;
	border-bottom: 1px solid #eee;
}

.tzp-program-info {
	flex: 1 1 280px;
	min-width: 0;
}

.tzp-program-info .tzp-card-desc {
	margin: 0 0 10px;
	font-size: 14px;
	color: #666;
	line-height: 1.65;
}

.tzp-link {
	font-size: 14px;
	font-weight: 600;
	color: var(--tzp-gold);
	text-decoration: none;
}

.tzp-link:hover {
	color: var(--tzp-gold-hover);
	text-decoration: underline;
}

.tzp-price-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: stretch;
}

.tzp-price-chip {
	flex: 1 1 90px;
	min-width: 90px;
	padding: 12px 14px;
	background: #fafafa;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
	text-align: center;
}

.tzp-price-chip strong {
	display: block;
	font-size: 18px;
	color: #222;
	margin-top: 4px;
}

.tzp-price-chip__label {
	display: block;
	font-size: 11px;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.tzp-price-chip.is-next {
	border-color: var(--tzp-gold);
	background: var(--tzp-gold-bg);
}

.tzp-price-chip.is-next strong {
	color: var(--tzp-gold);
}

.tzp-price-chip.is-taken {
	opacity: 0.45;
}

.tzp-price-chips--inline {
	margin-bottom: 18px;
}

.tzp-price-chip__chance {
	display: block;
	font-size: 11px;
	color: #888;
	line-height: 1.35;
	margin: 4px 0 6px;
	min-height: 2.6em;
}

.tzp-access-explainer {
	margin-bottom: 22px;
	padding: 20px 22px;
	background: var(--tzp-green-bg);
	border: 1px solid rgba(4, 43, 37, 0.12);
	border-radius: 8px;
}

.tzp-access-explainer__title {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	color: var(--tzp-green);
}

.tzp-access-explainer__list {
	margin: 0;
	padding-left: 1.2em;
	font-size: 14px;
	color: #555;
	line-height: 1.65;
}

.tzp-access-explainer__list li {
	margin-bottom: 10px;
}

.tzp-access-explainer__list li:last-child {
	margin-bottom: 0;
}

.tzp-access-explainer__list strong {
	color: var(--tzp-green);
}

.tzp-pricing-intro {
	margin: 0 0 12px;
	font-size: 14px;
	color: #555;
	line-height: 1.65;
}

.tzp-pricing-why {
	margin: 0 0 16px;
	padding: 12px 14px;
	background: var(--tzp-gold-bg);
	border-left: 3px solid var(--tzp-gold);
	border-radius: 0 4px 4px 0;
	font-size: 14px;
	color: #666;
	line-height: 1.55;
}

.tzp-program-bottom {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tzp-toggle-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
}

.tzp-toggle-label {
	font-size: 14px;
	font-weight: 600;
	color: #444;
}

/* Toggle switch */
.tzp-toggle {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 28px;
	flex-shrink: 0;
	cursor: pointer;
}

.tzp-toggle input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.tzp-toggle-track {
	position: absolute;
	inset: 0;
	background: #ccc;
	border-radius: 28px;
	transition: background 0.25s;
}

.tzp-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	transition: transform 0.25s;
}

.tzp-toggle input:checked + .tzp-toggle-track {
	background: var(--tzp-gold);
}

.tzp-toggle input:checked + .tzp-toggle-track .tzp-toggle-thumb {
	transform: translateX(24px);
}

.tzp-toggle input:focus + .tzp-toggle-track {
	box-shadow: 0 0 0 3px rgba(197, 142, 49, 0.25);
}

.tzp-regulamin-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	cursor: pointer;
	max-width: 100%;
}

.tzp-regulamin-check input[type="checkbox"] {
	-webkit-appearance: checkbox;
	appearance: auto;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px;
	max-width: 18px;
	margin: 2px 0 0 !important;
	padding: 0 !important;
	flex-shrink: 0;
	display: inline-block !important;
	box-shadow: none !important;
	border: 1px solid #ccc !important;
	border-radius: 3px;
	background: #fff !important;
	line-height: normal !important;
	opacity: 1;
	accent-color: var(--tzp-gold);
	cursor: pointer;
}

.tzp-regulamin-check span {
	flex: 1;
	min-width: 0;
}

.tzp-panel input[type="checkbox"] {
	width: auto !important;
	height: auto !important;
	min-height: 0;
	max-width: none;
	display: inline-block !important;
	box-shadow: none !important;
	padding: 0 !important;
	line-height: normal !important;
}

.tzp-panel .tzp-toggle input[type="checkbox"] {
	position: absolute !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	display: block !important;
	box-shadow: none !important;
}

.tzp-program-msg {
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 14px;
}

.tzp-program-msg.tzp-success {
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
}

.tzp-program-msg.tzp-error {
	background: #fff0f2;
	color: #a61e34;
}

/* --- Tabs --- */
.tzp-tabs {
	display: flex;
	gap: 4px;
	background: #f4f4f4;
	padding: 4px;
	border-radius: 6px;
}

.tzp-tab {
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #666;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.tzp-tab:hover {
	color: #333;
	background: rgba(255, 255, 255, 0.6);
}

.tzp-tab.is-active {
	background: #fff;
	color: var(--tzp-gold);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* --- Filtry listy zleceń --- */
.tzp-leads-filters {
	margin-bottom: 20px;
	padding: 16px;
	background: var(--tzp-green-bg);
	border: 1px solid #dce8e6;
	border-radius: 6px;
}

.tzp-leads-filters__row {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
}

.tzp-leads-filters__field input[type="search"],
.tzp-leads-filters__field select {
	width: 100%;
	height: 40px;
	padding: 8px 12px;
	border: 1px solid #d5d5d5;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	background: #fff;
	box-sizing: border-box;
}

.tzp-leads-filters__field input[type="search"]:focus,
.tzp-leads-filters__field select:focus {
	border-color: var(--tzp-gold);
	outline: none;
	box-shadow: 0 0 0 2px rgba(197, 142, 49, 0.15);
}

.tzp-leads-filters__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}

.tzp-leads-filters__actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	min-height: 40px;
	padding: 0 18px !important;
	margin: 0;
	line-height: 1.2 !important;
	font-size: 14px;
	box-sizing: border-box;
	white-space: nowrap;
}

.tzp-leads-filters__actions .button.tzp-btn-primary {
	background: var(--tzp-green) !important;
	border: 2px solid var(--tzp-green) !important;
	color: #fff !important;
}

.tzp-leads-filters__actions .button.tzp-btn-outline {
	padding: 0 16px !important;
	line-height: 1.2 !important;
	border-width: 1px !important;
}

.tzp-leads-results-count {
	margin: 0 0 14px;
	font-size: 13px;
	color: #777;
}

.tzp-pagination {
	margin-top: 20px;
	text-align: center;
}

.tzp-pagination .page-numbers {
	display: inline-block;
	min-width: 36px;
	padding: 8px 12px;
	margin: 0 2px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	text-decoration: none;
	color: #555;
	font-size: 14px;
}

.tzp-pagination .page-numbers.current {
	background: var(--tzp-green);
	border-color: var(--tzp-green);
	color: #fff;
}

.tzp-pagination .page-numbers:hover:not(.current) {
	border-color: var(--tzp-gold);
	color: var(--tzp-gold);
}

/* --- Empty state --- */
.tzp-empty {
	text-align: center;
	padding: 40px 20px;
}

.tzp-empty--compact {
	padding: 28px 16px;
}

.tzp-empty-icon {
	color: #ccc;
	margin-bottom: 14px;
}

.tzp-empty-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 600;
	color: #444;
}

.tzp-empty-text {
	margin: 0 auto;
	max-width: 420px;
	font-size: 14px;
	color: #888;
	line-height: 1.6;
}

/* --- Lead cards --- */
.tzp-leads-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tzp-lead-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid #eee;
	border-radius: 6px;
	background: #fafafa;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.tzp-lead-item:hover {
	border-color: #ddd;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tzp-lead-item.is-archived {
	opacity: 0.75;
}

.tzp-lead-item__main {
	flex: 1 1 280px;
	min-width: 0;
}

.tzp-lead-item__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	font-size: 13px;
	color: #999;
}

.tzp-lead-item__excerpt {
	margin: 0 0 12px;
	font-size: 14px;
	color: #444;
	line-height: 1.55;
}

.tzp-tag {
	display: inline-block;
	padding: 2px 10px;
	background: #eee;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	color: #555;
}

.tzp-tag--muted {
	background: #f0f0f0;
	color: #888;
}

.tzp-tag--success {
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
}

.tzp-slots-bar {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tzp-slots-bar__track {
	flex: 1;
	max-width: 120px;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	overflow: hidden;
}

.tzp-slots-bar__fill {
	height: 100%;
	background: var(--tzp-gold);
	border-radius: 3px;
	transition: width 0.3s;
}

.tzp-slots-bar__label {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
}

/* --- Buttons --- */
.tzp-btn-outline {
	background: transparent !important;
	border: 2px solid #e0e0e0 !important;
	color: #333 !important;
	font-weight: 600;
	padding: 8px 18px !important;
	border-radius: 4px !important;
	transition: border-color 0.2s, color 0.2s !important;
}

.tzp-btn-outline:hover {
	border-color: var(--tzp-gold) !important;
	color: var(--tzp-gold) !important;
}

.tzp-btn-primary {
	background: var(--tzp-green) !important;
	border-color: var(--tzp-green) !important;
	color: #fff !important;
	font-weight: 600;
	padding: 14px 20px !important;
	border-radius: 4px !important;
}

.tzp-btn-primary:hover {
	background: var(--tzp-green-hover) !important;
	border-color: var(--tzp-green-hover) !important;
	color: #fff !important;
}

.tzp-btn-sm {
	padding: 6px 14px !important;
	font-size: 13px !important;
}

/* --- Table --- */
.tzp-table-wrap {
	overflow-x: auto;
}

.tzp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.tzp-table th {
	padding: 10px 14px;
	text-align: left;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #999;
	border-bottom: 2px solid #eee;
}

.tzp-table td {
	padding: 14px;
	border-bottom: 1px solid #f0f0f0;
	color: #444;
	vertical-align: middle;
}

.tzp-table tbody tr:hover td {
	background: #fafafa;
}

/* --- Detail view --- */
/* --- Widok szczegółów zlecenia --- */
.tzp-detail-hero {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 22px;
	margin-bottom: 24px;
	border-bottom: 1px solid #eee;
}

.tzp-detail-id {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
}

.tzp-detail-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tzp-detail-hero__slots {
	flex: 0 0 220px;
	text-align: right;
}

.tzp-detail-date {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: #999;
}

.tzp-slots-bar--lg .tzp-slots-bar__track {
	max-width: 100%;
	height: 8px;
}

.tzp-slots-bar__count {
	font-size: 18px;
	color: #333;
	margin-left: 8px;
}

.tzp-slots-bar--lg {
	justify-content: flex-end;
}

/* Zablokowane dane kontaktowe */
.tzp-contact-locked {
	text-align: center;
	padding: 32px 24px;
	background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
	border: 2px dashed #ddd;
	border-radius: 8px;
}

.tzp-contact-locked__icon {
	color: #bbb;
	margin-bottom: 12px;
}

.tzp-contact-locked__title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: #444;
}

.tzp-contact-locked__text {
	margin: 0 0 20px;
	font-size: 14px;
	color: #888;
	line-height: 1.6;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.tzp-contact-locked__preview {
	display: inline-grid;
	gap: 8px;
	text-align: left;
	padding: 16px 20px;
	background: #fff;
	border-radius: 6px;
	border: 1px solid #e8e8e8;
	font-size: 14px;
	color: #aaa;
	filter: blur(4px);
	user-select: none;
	pointer-events: none;
}

.tzp-contact-unlocked__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

.tzp-contact-link {
	color: var(--tzp-gold);
	font-weight: 600;
	text-decoration: none;
}

.tzp-contact-link:hover {
	text-decoration: underline;
}

.tzp-pricing-note {
	margin: 14px 0 0;
	font-size: 13px;
	color: #888;
	text-align: center;
}

.tzp-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #666;
	text-decoration: none;
}

.tzp-back-link:hover {
	color: var(--tzp-gold);
}

.tzp-detail-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
}

.tzp-detail-title {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	color: #222;
}

.tzp-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
	padding: 18px;
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 6px;
}

.tzp-meta-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tzp-meta-label {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #aaa;
}

.tzp-meta-value {
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.tzp-detail-section {
	margin-bottom: 24px;
}

.tzp-opis-box {
	padding: 18px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.tzp-contact-grid {
	padding: 18px;
	border-radius: 6px;
	border: 1px solid #eee;
}

.tzp-contact-grid--open {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	background: #f8fff9;
	border-color: #c8e6d0;
}

.tzp-contact-grid--locked {
	background: #fafafa;
	position: relative;
}

.tzp-contact-item {
	margin-bottom: 12px;
}

.tzp-contact-item:last-of-type {
	margin-bottom: 0;
}

.tzp-contact-item span:not(.tzp-meta-label) {
	font-size: 15px;
	color: #333;
}

.tzp-contact-grid--locked .tzp-contact-item span:not(.tzp-meta-label) {
	filter: blur(3px);
	user-select: none;
}

/* legacy - replaced by tzp-contact-locked__preview */

.tzp-locked-hint {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px dashed #ddd;
	font-size: 13px;
	color: #888;
}

.tzp-pricing-box {
	padding: 22px;
	background: linear-gradient(135deg, var(--tzp-gold-bg) 0%, #fff 100%);
	border: 2px solid var(--tzp-gold);
	border-radius: 8px;
}

.tzp-pricing-next {
	margin: 0 0 14px;
	font-size: 15px;
	color: #444;
}

/* --- Alerts --- */
.tzp-alert {
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.5;
}

.tzp-alert--info {
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
	border: 1px solid rgba(4, 43, 37, 0.15);
}

.tzp-alert--success {
	background: var(--tzp-green-bg);
	color: var(--tzp-green);
	border: 1px solid #b8e6c1;
}

.tzp-notice {
	font-size: 15px;
	color: #666;
}

.tzp-notice a {
	color: var(--tzp-gold);
	font-weight: 600;
	text-decoration: underline;
}

.tzp-notice a:hover {
	color: var(--tzp-gold-hover);
}

/* --- Responsive --- */
@media (max-width: 992px) {
	.tzp-panel-layout {
		grid-template-columns: 1fr;
	}

	.tzp-panel-layout__sidebar {
		order: -1;
		position: static;
	}
}

@media (max-width: 768px) {
	.tzp-panel .tzp-card {
		padding: 20px 16px;
	}

	.tzp-detail-hero {
		flex-direction: column;
	}

	.tzp-detail-hero__slots {
		flex: 1 1 auto;
		text-align: left;
	}

	.tzp-slots-bar--lg {
		justify-content: flex-start;
	}

	.tzp-contact-locked {
		padding: 24px 16px;
	}

	.tzp-program-top {
		flex-direction: column;
	}

	.tzp-price-chips {
		width: 100%;
	}

	.tzp-card-head {
		flex-direction: column;
	}

	.tzp-tabs {
		width: 100%;
		justify-content: stretch;
	}

	.tzp-tab {
		flex: 1;
		text-align: center;
		padding: 8px 8px;
	}

	.tzp-leads-filters__row {
		grid-template-columns: 1fr;
	}

	.tzp-leads-filters__actions {
		width: 100%;
	}

	.tzp-leads-filters__actions .button {
		flex: 1;
	}

	.tzp-lead-item {
		flex-direction: column;
		align-items: stretch;
	}

	.tzp-lead-item__action .button {
		width: 100%;
		text-align: center;
	}

	.tzp-table thead {
		display: none;
	}

	.tzp-table tr {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid #eee;
	}

	.tzp-table td {
		display: flex;
		justify-content: space-between;
		padding: 6px 0;
		border: none;
	}

	.tzp-table td::before {
		content: attr(data-label);
		font-weight: 700;
		font-size: 12px;
		color: #999;
		text-transform: uppercase;
	}
}
