/* Tauchschule Portal – Frontend-Styling (BEM) */

:root {
	--tsp-primary: #0d7377;
	--tsp-primary-hover: #095456;
	--tsp-sidebar-bg: #1a1f2e;
	--tsp-sidebar-text: #e8eaed;
	--tsp-sidebar-hover: #2d3548;
	--tsp-border: #e0e0e0;
	--tsp-radius: 8px;
	--tsp-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.tsp {
	margin: 0;
	padding: 0;
}

.tsp-message {
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 4px;
}

.tsp-message--error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.tsp-message--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	border-left-width: 4px;
	border-left-color: #28a745;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.tsp-message--success::before {
	content: '✓';
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #28a745;
	color: #fff;
	border-radius: 50%;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
}

.tsp-message--success .tsp-message__inner {
	flex: 1;
}

.tsp-message--success h3 {
	margin: 0 0 0.35em;
	font-size: 1rem;
}

.tsp-message--info {
	background: #d1ecf1;
	color: #0c5460;
	border: 1px solid #bee5eb;
}

.tsp-message ul {
	margin: 0;
	padding-left: 1.2rem;
}

.tsp-form__row {
	margin-bottom: 1rem;
}

.tsp-form__row label {
	display: block;
	margin-bottom: 0.3rem;
	font-weight: 500;
}

.tsp-form__row input[type="text"],
.tsp-form__row input[type="email"],
.tsp-form__row input[type="password"] {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.tsp-form__row--remember label {
	display: inline;
	font-weight: normal;
}

.tsp-form__row--submit {
	margin-top: 1.5rem;
}

.tsp-btn {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
}

.tsp-btn--primary {
	background: var(--tsp-primary);
	color: #fff;
	border: none;
	transition: background .2s;
}

.tsp-btn--primary:hover {
	background: var(--tsp-primary-hover);
}

.tsp-btn--secondary {
	background: #ffffff;
	color: var(--tsp-primary);
	border: 1px solid var(--tsp-primary);
	transition: background .2s, color .2s, border-color .2s;
}

.tsp-btn--secondary:hover {
	background: var(--tsp-primary);
	color: #ffffff;
	border-color: var(--tsp-primary-hover);
}

.tsp-btn--danger {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.tsp-btn--danger:hover {
	background: #dc3545;
	color: #ffffff;
	border-color: #dc3545;
}

.tsp-used-market {
	max-width: 960px;
	margin: 0 auto;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: var(--tsp-radius);
	box-shadow: var(--tsp-shadow);
}

.tsp-used-market__title {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.tsp-used-market__intro {
	margin-top: 0;
	margin-bottom: 1.5rem;
	color: #555;
}

.tsp-used-market__nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1.5rem;
	padding: 0;
}

.tsp-used-market__nav a {
	display: inline-block;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	color: #555;
	background: #f5f5f5;
	font-size: 0.9rem;
}

.tsp-used-market__nav a.is-active {
	background: var(--tsp-primary);
	color: #ffffff;
	border-color: var(--tsp-primary);
}

.tsp-used-market__section {
	margin-top: 1rem;
}

.tsp-used-market__section-title {
	margin-top: 0;
	margin-bottom: 1rem;
}

.tsp-used-market__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tsp-used-market__toolbar-label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.tsp-used-market__toolbar-label select {
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	border: 1px solid var(--tsp-border);
	background: #fff;
}

.tsp-used-market__toolbar-apply {
	font-size: 0.85rem;
	padding-inline: 0.9rem;
}

.tsp-used-market__form--card {
	padding: 1.25rem;
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
	background: #fafafa;
}

.tsp-used-market__hint,
.tsp-used-market__hint-inline {
	font-size: 0.8rem;
	color: #666;
}

.tsp-used-market__hint-inline {
	margin-left: 0.35rem;
}

.tsp-used-market__submit-hint {
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #666;
}

.tsp-used-market__empty {
	color: #666;
}

.tsp-used-market__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.tsp-used-market__list--grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tsp-used-market__item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem;
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.tsp-used-market__item-media {
	margin-bottom: 0.5rem;
	position: relative;
}

.tsp-used-market__item-image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
}

.tsp-used-market__item-image a {
	display: block;
	position: relative;
}

.tsp-used-market__item-placeholder {
	width: 100%;
	height: 180px;
	border-radius: 6px;
	border: 1px dashed var(--tsp-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 0.85rem;
	background: #fafafa;
}

.tsp-used-market__item-title {
	margin: 0;
	font-size: 1.05rem;
}

.tsp-used-market__item-meta {
	margin: 0;
	font-size: 0.85rem;
	color: #777;
}

.tsp-used-market__item-price {
	margin: 0.15rem 0;
	font-weight: 700;
	font-size: 1rem;
}

.tsp-used-market__item-desc {
	margin: 0.15rem 0 0.5rem;
	font-size: 0.9rem;
}

.tsp-used-market__item-actions {
	margin-top: auto;
}

.tsp-used-market__item-actions .tsp-btn {
	font-size: 0.85rem;
}

.tsp-used-market__inline-form {
	display: inline-block;
	margin-left: 0.5rem;
}

.tsp-used-market__inline-form--danger .tsp-btn {
	font-size: 0.8rem;
}

.tsp-used-market__image-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.tsp-used-market__image-preview-item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 4px;
}

.tsp-used-market__image-count {
	position: absolute;
	right: 0.5rem;
	bottom: 0.5rem;
	min-width: 2rem;
	padding: 0.1rem 0.4rem;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 0.8rem;
	text-align: center;
}

.tsp-used-market__item-badges {
	margin: 0.2rem 0;
}

.tsp-used-market__badge {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	font-size: 0.75rem;
	line-height: 1.3;
}

.tsp-used-market__badge--condition {
	background: #e3f2fd;
	color: #0d47a1;
}

.tsp-used-market__badge--condition-wie_neu {
	background: #e6f4ea;
	color: #1e7e34;
}

.tsp-used-market__badge--condition-sehr_gut {
	background: #fff3cd;
	color: #856404;
}

.tsp-used-market__badge--condition-gebraucht {
	background: #f8d7da;
	color: #721c24;
}

@media (max-width: 600px) {
	.tsp-used-market {
		padding: 1rem;
	}

	.tsp-used-market__form--card {
		padding: 1rem;
	}
}

.tsp-login__register,
.tsp-register__login,
.tsp-verify__login {
	margin-top: 1.5rem;
	text-align: center;
}

/* Dashboard – Layout mit Sidebar, Full-Width */
/* Elementor: Container soll Dashboard nicht begrenzen */
.elementor-widget-shortcode .elementor-widget-container:has(#tsp-dashboard) {
	max-width: none !important;
	width: 100% !important;
}

/* Hohe Spezifität gegen Theme/Elementor – Full-Width, keine seitliche Begrenzung */
#tsp-dashboard.tsp-dashboard--layout,
.tsp.tsp-dashboard.tsp-dashboard--layout {
	display: flex !important;
	flex-direction: row;
	min-height: 400px;
	width: 100% !important;
	max-width: none !important;
	margin: 0 auto !important;
	background: #fff;
	border-radius: 0;
	box-shadow: none;
	overflow: hidden;
}

.tsp-dashboard__sidebar {
	flex-shrink: 0;
	width: 260px;
	min-width: 260px;
	background: var(--tsp-sidebar-bg) !important;
	color: var(--tsp-sidebar-text) !important;
	padding: 1.5rem 0 !important;
}

.tsp-dashboard__sidebar-header {
	padding: 0 1.25rem 1.25rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
	margin-bottom: 1rem;
}

.tsp-dashboard__greeting {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.tsp-dashboard__logout {
	display: inline-block;
	font-size: 0.85rem;
	color: rgba(255,255,255,.7);
	text-decoration: none;
	transition: color .2s;
}

.tsp-dashboard__logout:hover {
	color: #fff;
}

.tsp-dashboard__nav-list {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.tsp-dashboard__nav-list li {
	list-style: none !important;
}

.tsp-dashboard__nav-item {
	margin: 0;
}

.tsp-dashboard__nav-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	color: var(--tsp-sidebar-text);
	text-decoration: none;
	font-size: 0.95rem;
	transition: background .2s, color .2s;
}

.tsp-dashboard__nav-link:hover {
	background: var(--tsp-sidebar-hover);
	color: #fff;
}

.tsp-dashboard__nav-link--active {
	background: var(--tsp-primary);
	color: #fff;
}

.tsp-dashboard__nav-link--locked {
	opacity: 0.6;
	cursor: default;
}

.tsp-dashboard__nav-link--locked:hover {
	background: transparent;
}

.tsp-dashboard__nav-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.95;
}

.tsp-dashboard__nav-icon--user {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 4-6 8-6s8 2 8 6'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--module {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7' rx='1'/%3E%3Crect x='14' y='3' width='7' height='7' rx='1'/%3E%3Crect x='3' y='14' width='7' height='7' rx='1'/%3E%3Crect x='14' y='14' width='7' height='7' rx='1'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--locked {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e5e7eb' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--calculator {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Crect x='8' y='6' width='8' height='3'/%3E%3Cpath d='M8 12h2m4 0h2M8 15h2m4 0h2M8 18h2m4 0h2'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--calendar {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 10h18'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--market {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 7l2-3h12l2 3v3a6 6 0 01-6 6H8a4 4 0 01-4-4V7z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--buddies {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='9' cy='8' r='3.5'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M4 19c0-3 2.5-5 5-5s5 2 5 5'/%3E%3Cpath d='M14.5 18.5c.4-1.8 1.7-3 3.5-3s3.1 1.2 3.5 3'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--shop {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16l-1 11H5L4 7z'/%3E%3Cpath d='M9 7V5a3 3 0 016 0v2'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--star {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l2.4 4.9 5.4.8-3.9 3.8.9 5.4L12 15.8 7.2 18.9l.9-5.4L4.2 8.7l5.4-.8L12 3z'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--skills {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M5 19l3-7-3-7'/%3E%3Cpath d='M12 5l2 3-2 3-2-3 2-3z'/%3E%3Cpath d='M15 19l3-7-3-7'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--cert {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M7 14h10l-2.5 7-2.5-3-2.5 3L7 14z'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--logbook {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 4h11a2 2 0 012 2v14H8a2 2 0 01-2-2V4z'/%3E%3Cpath d='M6 8h13M10 12h5M10 16h3'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--snorkel {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='4' y='8' width='10' height='6' rx='2'/%3E%3Cpath d='M14 10h3a2 2 0 012 2v4a3 3 0 01-3 3h-1'/%3E%3Cpath d='M7 5h6a2 2 0 012 2v1'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-icon--tank {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23e5e7eb' stroke-width='2' viewBox='0 0 24 24'%3E%3Crect x='8' y='5' width='8' height='14' rx='2'/%3E%3Cpath d='M10 5V3h4v2'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.tsp-dashboard__nav-badge {
	font-size: 0.7rem;
	opacity: 0.8;
	margin-left: auto;
}

.tsp-dashboard__main {
	flex: 1 1 auto;
	min-width: 0;
	padding: 2rem !important;
	background: #fafafa !important;
}

.tsp-dashboard__content {
	max-width: none;
	width: 100%;
}

/* Mobile: Hamburger-Menü + ausklappbare Sidebar */
.tsp-dashboard__mobile-header {
	display: none;
}

.tsp-dashboard__sidebar-backdrop {
	display: none;
}

@media (max-width: 768px) {
	.tsp-dashboard--layout {
		flex-direction: column;
		position: relative;
	}

	.tsp-dashboard__mobile-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
		padding: 0.75rem 1rem;
		background: var(--tsp-sidebar-bg);
		color: var(--tsp-sidebar-text);
		gap: 1rem;
	}

	.tsp-dashboard__mobile-greeting {
		margin: 0;
		font-size: 0.95rem;
		font-weight: 600;
	}

	.tsp-dashboard__menu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0;
		border: none;
		background: transparent;
		color: inherit;
		cursor: pointer;
		border-radius: var(--tsp-radius);
		transition: background 0.2s;
	}

	.tsp-dashboard__menu-toggle:hover,
	.tsp-dashboard__menu-toggle:focus {
		background: var(--tsp-sidebar-hover);
	}

	.tsp-dashboard__menu-toggle-icon {
		width: 22px;
		height: 18px;
		position: relative;
	}

	.tsp-dashboard__menu-toggle-icon::before,
	.tsp-dashboard__menu-toggle-icon::after,
	.tsp-dashboard__menu-toggle-icon {
		display: block;
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: currentColor;
		border-radius: 1px;
	}

	.tsp-dashboard__menu-toggle-icon::before {
		top: 0;
	}

	.tsp-dashboard__menu-toggle-icon {
		top: 50%;
		margin-top: -1px;
	}

	.tsp-dashboard__menu-toggle-icon::after {
		bottom: 0;
		top: auto;
	}

	.tsp-dashboard--nav-open .tsp-dashboard__menu-toggle-icon::before {
		transform: translateY(8px) rotate(45deg);
	}

	.tsp-dashboard--nav-open .tsp-dashboard__menu-toggle-icon::after {
		transform: translateY(-8px) rotate(-45deg);
	}

	.tsp-dashboard--nav-open .tsp-dashboard__menu-toggle-icon {
		background: transparent;
	}

	.tsp-dashboard__sidebar-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 99998;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s, visibility 0.2s;
	}

	.tsp-dashboard--nav-open .tsp-dashboard__sidebar-backdrop {
		opacity: 1;
		visibility: visible;
	}

	.tsp-dashboard__sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 280px;
		max-width: 85vw;
		z-index: 99999;
		transform: translateX(-100%);
		transition: transform 0.25s ease-out;
		overflow-y: auto;
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
	}

	.tsp-dashboard--nav-open .tsp-dashboard__sidebar {
		transform: translateX(0);
	}

	.tsp-dashboard__nav-link {
		padding: 0.75rem 1.25rem;
	}

	.tsp-dashboard__mobile-header {
		order: -1;
	}

	.tsp-dashboard__main {
		padding: 1rem;
	}
}

@media (min-width: 769px) {
	.tsp-dashboard__mobile-header {
		display: none !important;
	}
}

/* Dashboard Einstellungen (Profil-Tab) */
.tsp-dashboard__settings {
	padding: 0;
}

/* Willkommensbereich + Schnellzugriff */
.tsp-dashboard__welcome {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: linear-gradient(135deg, rgba(13, 115, 119, 0.08) 0%, rgba(13, 115, 119, 0.02) 100%);
	border: 1px solid rgba(13, 115, 119, 0.2);
	border-radius: var(--tsp-radius);
}

.tsp-dashboard__welcome-title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	color: #1a1a1a;
}

.tsp-dashboard__welcome-text {
	margin: 0 0 1rem;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
}

.tsp-dashboard__quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tsp-dashboard__quick-links li {
	margin: 0;
}

.tsp-dashboard__quick-link {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--tsp-primary);
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: background 0.2s, transform 0.15s;
}

.tsp-dashboard__quick-link:hover {
	background: var(--tsp-primary-hover);
	color: #fff;
	transform: translateY(-1px);
}

.tsp-dashboard__section-title {
	margin: 0 0 1.5rem;
	font-size: 1.35rem;
	color: #1a1a1a;
}

.tsp-settings__block {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #fff;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-dashboard__settings .tsp-settings__block:last-of-type {
	margin-bottom: 0;
}

.tsp-settings__block h3 {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	color: #333;
}

.tsp-settings__profile-image {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.tsp-settings__avatar {
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	background: #f0f0f0;
}

/* Primera Skills – Demo-Skill-Refresher */
.tsp-primera-skills {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-primera-skills__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.tsp-primera-skills__intro {
	margin: 0 0 1.5rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-primera-skills__section-title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	color: #1a1a1a;
}

.tsp-primera-skills__level-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.tsp-primera-skills__level-card {
	display: block;
	padding: 1rem 1.1rem;
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	background: #fafafa;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
	transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s, background 0.15s;
}

.tsp-primera-skills__level-card:hover {
	border-color: var(--tsp-primary);
	box-shadow: 0 2px 6px rgba(0,0,0,.08);
	transform: translateY(-1px);
}

.tsp-primera-skills__level-card.is-active {
	border-color: var(--tsp-primary);
	background: linear-gradient(135deg, rgba(13, 115, 119, 0.08), #ffffff);
}

.tsp-primera-skills__level-title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 600;
}

.tsp-primera-skills__level-desc {
	margin: 0 0 0.75rem;
	color: #555;
	font-size: 0.9rem;
}

.tsp-primera-skills__level-cta {
	display: inline-block;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: var(--tsp-primary);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 500;
}

.tsp-primera-skills__level-card.is-active .tsp-primera-skills__level-cta {
	background: #0b5f62;
}

.tsp-primera-skills__lesson-layout {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.tsp-primera-skills__media {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.tsp-primera-skills__image-placeholder,
.tsp-primera-skills__video-placeholder {
	min-height: 140px;
	border-radius: var(--tsp-radius);
	border: 1px dashed #c8c8c8;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #777;
	font-size: 0.9rem;
	background: #fafafa;
}

.tsp-primera-skills__video-icon {
	font-size: 1.4rem;
	margin-bottom: 0.25rem;
}

.tsp-primera-skills__questions {
	background: #fafafa;
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	padding: 1rem 1.25rem;
}

.tsp-primera-skills__question-list {
	margin: 0 0 1rem;
	padding-left: 1.1rem;
}

.tsp-primera-skills__question-item {
	margin: 0 0 0.75rem;
}

.tsp-primera-skills__question-item h4 {
	margin: 0 0 0.25rem;
	font-size: 0.98rem;
}

.tsp-primera-skills__question-item p {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
	color: #555;
}

.tsp-primera-skills__answers label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 0.25rem;
	font-size: 0.9rem;
}

.tsp-primera-skills__actions {
	margin-bottom: 0.75rem;
}

.tsp-primera-skills__btn-finish {
	font-size: 0.9rem;
	padding: 0.5rem 1rem;
}

.tsp-primera-skills__result-title {
	margin: 0 0 0.25rem;
	font-size: 0.95rem;
}

.tsp-primera-skills__result-text {
	margin: 0;
	color: #555;
	font-size: 0.9rem;
}

/* DeepDive Premium – Modul */
.tsp-deepdive-premium {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-deepdive-premium__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.tsp-deepdive-premium__intro {
	margin: 0 0 1.25rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-deepdive-premium__empty {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
}

.tsp-deepdive-premium__list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tsp-deepdive-premium__item {
	padding: 1rem 1.25rem;
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	background: #fafafa;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.tsp-deepdive-premium__item-inner {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tsp-deepdive-premium__item-main {
	flex: 1 1 auto;
}

.tsp-deepdive-premium__item-thumb {
	flex: 0 0 auto;
	max-width: 180px;
	align-self: flex-end;
}

.tsp-deepdive-premium__item-thumb-img img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: calc(var(--tsp-radius) - 2px);
	object-fit: cover;
}

.tsp-deepdive-premium__item-thumb-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	border-radius: calc(var(--tsp-radius) - 2px);
	background: linear-gradient(135deg, rgba(13,115,119,0.1), rgba(13,115,119,0.03));
	color: #0d7377;
	font-weight: 600;
	font-size: 0.9rem;
}

.tsp-deepdive-premium__item-title {
	margin: 0 0 0.15rem;
	font-size: 1rem;
	font-weight: 600;
}

.tsp-deepdive-premium__item-meta {
	margin: 0 0 0.5rem;
	color: #777;
	font-size: 0.85rem;
}

.tsp-deepdive-premium__item-excerpt {
	font-size: 0.95rem;
	color: #444;
}

.tsp-deepdive-premium__item-hint {
	margin: 0.75rem 0 0;
	font-size: 0.85rem;
	color: #777;
}

.tsp-deepdive-premium__item-actions {
	margin: 0.65rem 0 0;
}

.tsp-deepdive-premium__item-link {
	font-size: 0.9rem;
	padding: 0.45rem 0.9rem;
}

@media (min-width: 768px) {
	.tsp-deepdive-premium__item-inner {
		flex-direction: row;
		align-items: stretch;
	}

	.tsp-deepdive-premium__item-main {
		padding-right: 1rem;
	}
}

/* Shop (Demo) – Modul */
.tsp-shop-demo {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-shop-demo__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.tsp-shop-demo__intro {
	margin: 0 0 1.25rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-shop-demo__back {
	display: inline-block;
	margin-bottom: 1rem;
}

.tsp-shop-demo__cat-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.tsp-shop-demo__cat-link {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	border: 1px solid #e3e3e3;
	background: #fafafa;
	font-size: 0.9rem;
	text-decoration: none;
	color: #333;
}

.tsp-shop-demo__cat-link.is-active {
	border-color: var(--tsp-primary);
	background: rgba(13, 115, 119, 0.1);
	color: #0d7377;
	font-weight: 600;
}

.tsp-shop-demo__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.tsp-shop-demo__product-card {
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	background: #fafafa;
	padding: 0.9rem 1rem 1rem;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.tsp-shop-demo__product-thumb {
	min-height: 120px;
	border-radius: calc(var(--tsp-radius) - 2px);
	background: linear-gradient(135deg, rgba(13, 115, 119, 0.08), rgba(13, 115, 119, 0.03));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d7377;
	font-weight: 600;
	font-size: 0.9rem;
}

.tsp-shop-demo__product-name {
	margin: 0 0 0.2rem;
	font-size: 0.98rem;
	font-weight: 600;
}

.tsp-shop-demo__product-price {
	margin: 0;
	font-size: 0.95rem;
	color: #222;
	font-weight: 600;
}

.tsp-shop-demo__product-badge {
	display: inline-block;
	margin-top: 0.3rem;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: #0d7377;
	color: #fff;
	font-size: 0.8rem;
}

.tsp-shop-demo__product-actions {
	margin: 0.4rem 0 0;
}

.tsp-shop-demo__product-link {
	font-size: 0.9rem;
	padding: 0.45rem 0.9rem;
}

.tsp-shop-demo__product-detail {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.tsp-shop-demo__product-media {
	flex: 1;
}

.tsp-shop-demo__product-image {
	min-height: 220px;
	border-radius: var(--tsp-radius);
	border: 1px dashed #c8c8c8;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fafafa;
	color: #777;
	font-size: 0.95rem;
}

.tsp-shop-demo__product-info {
	flex: 1;
}

.tsp-shop-demo__product-title {
	margin: 0 0 0.4rem;
	font-size: 1.15rem;
}

.tsp-shop-demo__product-price {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #0d7377;
}

.tsp-shop-demo__product-desc {
	margin: 0 0 0.75rem;
	color: #555;
	font-size: 0.95rem;
}

.tsp-shop-demo__product-actions {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.tsp-shop-demo__cart-hint {
	margin: 0;
	color: #777;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.tsp-shop-demo__product-detail {
		flex-direction: row;
		align-items: flex-start;
	}

	.tsp-shop-demo__product-media {
		max-width: 320px;
	}
}

/* Gebrauchtmarkt – Modul */
.tsp-used-market {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-used-market__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.tsp-used-market__intro {
	margin: 0 0 1.25rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-used-market__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

.tsp-used-market__nav a {
	display: inline-block;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid #e3e3e3;
	background: #fafafa;
	font-size: 0.9rem;
	color: #333;
}

.tsp-used-market__nav a.is-active {
	border-color: var(--tsp-primary);
	background: rgba(13, 115, 119, 0.08);
	color: #0d7377;
	font-weight: 600;
}

.tsp-used-market__section-title {
	margin: 0 0 0.75rem;
	font-size: 1.05rem;
	color: #1a1a1a;
}

.tsp-used-market__empty {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
}

.tsp-used-market__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tsp-used-market__item {
	padding: 0.9rem 1rem;
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	background: #fafafa;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.tsp-used-market__item-title {
	margin: 0 0 0.2rem;
	font-size: 1rem;
	font-weight: 600;
}

.tsp-used-market__item-meta {
	margin: 0 0 0.35rem;
	color: #777;
	font-size: 0.85rem;
}

.tsp-used-market__item-price {
	margin: 0 0 0.35rem;
	color: #0d7377;
	font-weight: 600;
	font-size: 0.95rem;
}

.tsp-used-market__item-desc {
	margin: 0;
	color: #444;
	font-size: 0.93rem;
}

.tsp-used-market__submit-hint {
	margin: 0 0 0.5rem;
	color: #777;
	font-size: 0.85rem;
}

@media (min-width: 768px) {
	.tsp-primera-skills__lesson-layout {
		flex-direction: row;
		align-items: flex-start;
	}

	.tsp-primera-skills__media {
		grid-template-columns: 1fr;
		flex: 1.2;
	}

	.tsp-primera-skills__questions {
		flex: 1.8;
	}
}

.tsp-settings__avatar--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
}

.tsp-settings__avatar--placeholder .tsp-avatar-placeholder {
	font-size: 2.5rem;
	font-weight: 300;
	color: #999;
	line-height: 96px;
}

.tsp-settings__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tsp-settings__upload input[type="file"] {
	display: block;
	margin-bottom: 0.25rem;
}

.tsp-settings__remove {
	display: block;
	margin-top: 0.5rem;
	font-weight: normal;
}

.tsp-settings__privacy-desc {
	margin: 0 0 0.75rem;
	color: #666;
	font-size: 0.9rem;
}

.tsp-settings__privacy {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.tsp-settings__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: normal;
	cursor: pointer;
}

.tsp-settings__checkbox input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.tsp-settings__submit {
	margin-top: 1.5rem;
}

.tsp-settings__submit .tsp-btn {
	font-size: 0.95rem;
	padding: 0.65rem 1.4rem;
}

.tsp-settings__onboarding-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem 1.5rem;
	margin-top: 0.5rem;
}

/* Modul-Inhalt im Hauptbereich */
.tsp-dashboard__content .tsp-btn {
	transition: background .2s, color .2s;
}

.tsp-dashboard__content .tsp-module-card,
.tsp-dashboard__content > .tsp-tauchberechnung,
.tsp-dashboard__content > .tsp-tauchgang-loggen {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* Tauchberechnung – responsives Grid (1 Spalte schmal, 2 mittel, 3 breit) */
.tsp-tauchberechnung__grid {
	display: grid;
	gap: 1.5rem;
}
@media (max-width: 639px) {
	.tsp-tauchberechnung__grid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 640px) and (max-width: 899px) {
	.tsp-tauchberechnung__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.tsp-tauchberechnung__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Tauchberechnung – Karten & Buttons im Dashboard-Stil */
.tsp-tauchberechnung__block {
	background: #f9fafb;
	border-radius: var(--tsp-radius);
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--tsp-border);
}

.tsp-tauchberechnung__block h3 {
	margin-top: 0;
	margin-bottom: 0.75rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #111827;
}

.tsp-tauchberechnung__block label {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
}

.tsp-tauchberechnung__block input[type="number"] {
	width: 100%;
	padding: 0.45rem 0.65rem;
	border-radius: 4px;
	border: 1px solid var(--tsp-border);
	font-size: 0.95rem;
}

.tsp-tauchberechnung__block p {
	margin: 0.2rem 0;
	font-size: 0.95rem;
}

.tsp-tauchberechnung .tsp-warning {
	color: #b91c1c;
	font-weight: 600;
}

.tsp-tauchberechnung__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.tsp-tauchberechnung__block--profile {
	grid-column: 1 / -1;
}

.tsp-tauchberechnung canvas {
	width: 100%;
	max-height: 320px;
}

.tsp-tauchberechnung__notice {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: #7c2d12;
	font-size: 0.9rem;
}

.tsp-tauchberechnung__notice strong {
	font-weight: 700;
}

.tsp-tauchberechnung__profile-chart {
	position: relative;
	min-height: 240px;
}

.tsp-tauchberechnung__block--profile {
	background: radial-gradient(circle at top left, #020617 0, #020617 40%, #020617 100%);
	color: #e5e7eb;
	border-color: #020617;
}

.tsp-dashboard__content .tsp-tauchberechnung__block--profile h3 {
	color: #f9fafb;
}

.tsp-tauchberechnung__profile-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 0.75rem;
	font-size: 0.85rem;
}

.tsp-tauchberechnung__profile-meta-item {
	display: flex;
	flex-direction: column;
	min-width: 120px;
}

.tsp-tauchberechnung__profile-label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem;
	color: #9ca3af;
}

.tsp-tauchberechnung__profile-value {
	font-weight: 600;
	color: #f9fafb;
}

.tsp-tauchberechnung__diver {
	position: absolute;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	pointer-events: none;
	will-change: transform;
	text-shadow: 0 0 6px rgba(15,23,42,0.9);
}

.tsp-tauchberechnung__profile-phases {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.85rem;
}

.tsp-tauchberechnung__phase {
	display: flex;
	flex-direction: column;
	min-width: 120px;
}

.tsp-tauchberechnung__phase-label {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.7rem;
	color: #9ca3af;
}

.tsp-tauchberechnung__phase-value {
	font-weight: 600;
	color: #f9fafb;
}

/* Buddyfinder – Kartenlayout ähnlich Gebrauchtmarkt (Demo) */
.tsp-buddyfinder {
	max-width: 960px;
	margin: 0 auto;
}

.tsp-buddyfinder__title {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.tsp-buddyfinder__intro {
	margin-top: 0;
	margin-bottom: 1.25rem;
	color: #555;
	font-size: 0.95rem;
}

.tsp-buddyfinder__filter {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0.75rem 1.5rem;
	margin-bottom: 1.25rem;
}

.tsp-buddyfinder__filter-group {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.tsp-buddyfinder__filter-label {
	font-size: 0.85rem;
	font-weight: 500;
}

.tsp-buddyfinder__filter select {
	min-width: 180px;
	padding: 0.35rem 0.6rem;
	border-radius: 4px;
	border: 1px solid var(--tsp-border);
	background: #fff;
}

.tsp-buddyfinder__filter-hint {
	font-size: 0.8rem;
	color: #777;
}

.tsp-buddyfinder__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}

.tsp-buddyfinder__card {
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
	background: #ffffff;
	padding: 1.1rem 1.2rem;
	box-shadow: var(--tsp-shadow);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.tsp-buddyfinder__card-header {
	margin-bottom: 0.25rem;
}

.tsp-buddyfinder__name {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 600;
}

.tsp-buddyfinder__location {
	margin: 0.15rem 0 0;
	font-size: 0.9rem;
	color: #555;
}

.tsp-buddyfinder__cert-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0;
	margin: 0.15rem 0 0.4rem;
}

.tsp-buddyfinder__cert-badge {
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
	background: #e0f2fe;
	color: #0369a1;
	font-size: 0.78rem;
}

.tsp-buddyfinder__body {
	font-size: 0.9rem;
	color: #333;
}

.tsp-buddyfinder__meta {
	margin: 0.1rem 0;
}

.tsp-buddyfinder__text {
	margin: 0.2rem 0;
}

.tsp-buddyfinder__footer {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.tsp-buddyfinder__contact-btn {
	align-self: flex-start;
	font-size: 0.7rem;
	padding: 0.3rem 0.6rem;
	white-space: normal;
	line-height: 1.3;
	max-width: 220px;
}

.tsp-buddyfinder__contact-btn[disabled] {
	opacity: 0.7;
	cursor: not-allowed;
}

.tsp-buddyfinder__demo-hint {
	margin: 0;
	font-size: 0.78rem;
	color: #777;
}

/* Flaschenfüllen – Demo-Modul */
.tsp-flaschenfuellen__title {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.tsp-flaschenfuellen__intro {
	margin-top: 0;
	margin-bottom: 1.25rem;
	color: #555;
	font-size: 0.95rem;
}

.tsp-flaschenfuellen__steps {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin: 0 0 1.25rem;
	padding: 0;
	font-size: 0.85rem;
}

.tsp-flaschenfuellen__step {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #6b7280;
}

.tsp-flaschenfuellen__step.is-active {
	color: #0d7377;
}

.tsp-flaschenfuellen__step-number {
	width: 20px;
	height: 20px;
	border-radius: 999px;
	border: 1px solid currentColor;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
}

.tsp-flaschenfuellen__section {
	margin-bottom: 1.5rem;
}

.tsp-flaschenfuellen__section-title {
	margin: 0 0 0.75rem;
	font-size: 1rem;
}

.tsp-flaschenfuellen__grid {
	display: grid;
	gap: 1.25rem;
}

.tsp-flaschenfuellen__grid--two {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tsp-flaschenfuellen__block {
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
	background: #fff;
	padding: 1rem 1.25rem;
}

.tsp-flaschenfuellen__block-title {
	margin: 0 0 0.6rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.tsp-flaschenfuellen__option {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
}

.tsp-flaschenfuellen__hint {
	margin: 0.4rem 0 0;
	font-size: 0.8rem;
	color: #6b7280;
}

.tsp-flaschenfuellen__section--submit {
	text-align: right;
}

.tsp-flaschenfuellen__section--result {
	border-top: 1px dashed #e5e7eb;
	padding-top: 1rem;
}

.tsp-flaschenfuellen__result {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
	align-items: flex-start;
}

.tsp-flaschenfuellen__result-code {
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
	background: #fff;
	padding: 1rem 1.25rem;
}

.tsp-flaschenfuellen__result-label {
	margin: 0 0 0.4rem;
	font-size: 0.85rem;
	color: #4b5563;
}

.tsp-flaschenfuellen__result-value {
	margin: 0 0 0.4rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.tsp-flaschenfuellen__result-qr {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.tsp-flaschenfuellen__qr-box {
	border-radius: var(--tsp-radius);
	border: 1px dashed #cbd5f5;
	background: #f9fafb;
	padding: 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
}

.tsp-flaschenfuellen__qr-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
}

.tsp-flaschenfuellen__qr-code {
	display: inline-block;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	background: #111827;
	color: #e5e7eb;
	font-size: 0.85rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Tauchgang loggen – Formular + Tabelle */
.tsp-tauchgang-loggen__title {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
	color: #1a1a1a;
}

.tsp-tauchgang-loggen__intro {
	margin: 0 0 1.5rem;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.5;
}

.tsp-tauchgang-loggen__grid {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (max-width: 639px) {
	.tsp-tauchgang-loggen__grid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 640px) and (max-width: 899px) {
	.tsp-tauchgang-loggen__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.tsp-tauchgang-loggen__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.tsp-tauchgang-loggen__block {
	background: #f8f9fa;
	padding: 1.25rem;
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
}

.tsp-tauchgang-loggen__block h3 {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	color: #333;
	border-bottom: 1px solid var(--tsp-border);
	padding-bottom: 0.5rem;
}

.tsp-tauchgang-loggen__form .tsp-label {
	display: block;
	margin-bottom: 0.25rem;
	font-size: 0.9rem;
	color: #555;
}

.tsp-tauchgang-loggen__form .tsp-label .required {
	color: #c00;
}

.tsp-tauchgang-loggen__form input[type="text"],
.tsp-tauchgang-loggen__form input[type="number"],
.tsp-tauchgang-loggen__form input[type="date"],
.tsp-tauchgang-loggen__form input[type="time"],
.tsp-tauchgang-loggen__form select,
.tsp-tauchgang-loggen__form textarea {
	width: 100%;
	padding: 0.5rem 0.6rem;
	border: 1px solid var(--tsp-border);
	border-radius: 4px;
	font-size: 0.95rem;
}

.tsp-tauchgang-loggen__form textarea {
	resize: vertical;
	min-height: 80px;
}

.tsp-tauchgang-loggen__submit {
	margin: 0 0 2rem;
}

.tsp-tauchgang-loggen__list-section {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--tsp-border);
}

.tsp-tauchgang-loggen__list-title {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	color: #1a1a1a;
}

.tsp-tauchgang-loggen__empty {
	margin: 0;
	color: #666;
}

.tsp-tauchgang-loggen__table-wrap {
	overflow-x: auto;
}

.tsp-tauchgang-loggen__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.tsp-tauchgang-loggen__table th,
.tsp-tauchgang-loggen__table td {
	padding: 0.6rem 0.75rem;
	text-align: left;
	border-bottom: 1px solid var(--tsp-border);
}

.tsp-tauchgang-loggen__table th {
	background: #f0f0f0;
	font-weight: 600;
	color: #333;
}

.tsp-tauchgang-loggen__table tbody tr:hover {
	background: #fafafa;
}

.tsp-tauchgang-loggen__notes-row td {
	font-size: 0.85rem;
	color: #555;
	background: #f8f9fa;
	padding-left: 1.5rem;
}

.tsp-tauchgang-loggen__notes-label {
	font-weight: 600;
	margin-right: 0.5rem;
}

@media (max-width: 639px) {
	.tsp-tauchgang-loggen__table th,
	.tsp-tauchgang-loggen__table td {
		padding: 0.5rem;
		font-size: 0.85rem;
	}
}

/* Schnuppertauchen – Multistep-Formular */
.tsp-schnuppertauchen {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-schnuppertauchen__progress {
	position: relative;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.tsp-schnuppertauchen__progress-bar {
	height: 100%;
	background: var(--tsp-primary);
	border-radius: 3px;
	transition: width .3s;
}

.tsp-schnuppertauchen__progress-text {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #666;
}

.tsp-schnuppertauchen__step {
	display: block;
}

.tsp-schnuppertauchen__step--hidden {
	display: none !important;
}

.tsp-schnuppertauchen__step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}

.tsp-schnuppertauchen__intro {
	margin: 0 0 1.5rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-schnuppertauchen__step .tsp-form__row {
	margin-bottom: 1rem;
}

.tsp-schnuppertauchen__step textarea {
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-family: inherit;
	resize: vertical;
}

.tsp-schnuppertauchen__nav {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.tsp-schnuppertauchen__video-placeholder {
	background: #1a1f2e;
	border-radius: var(--tsp-radius);
	aspect-ratio: 16/9;
	margin: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.7);
}

.tsp-schnuppertauchen__video-inner {
	text-align: center;
}

.tsp-schnuppertauchen__video-icon {
	display: block;
	font-size: 3rem;
	margin-bottom: 0.5rem;
	opacity: 0.8;
}

.tsp-schnuppertauchen__video-hint {
	font-size: 0.85rem;
	opacity: 0.7;
}

.tsp-schnuppertauchen__submit-text {
	margin: 1rem 0;
	font-weight: 500;
}

.tsp-schnuppertauchen--success .tsp-message {
	padding: 2rem;
}

.tsp-schnuppertauchen--success .tsp-message h3 {
	margin: 0 0 0.5rem;
}

/* Tauchgang buchen – Kalender/Demo */
.tsp-tauchgang-buchen {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-tauchgang-buchen__progress {
	position: relative;
	height: 6px;
	background: #e0e0e0;
	border-radius: 3px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.tsp-tauchgang-buchen__progress-bar {
	height: 100%;
	background: var(--tsp-primary);
	border-radius: 3px;
	transition: width .3s;
}

.tsp-tauchgang-buchen__progress-text {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.85rem;
	color: #666;
}

.tsp-tauchgang-buchen__step {
	display: block;
}

.tsp-tauchgang-buchen__step--hidden {
	display: none !important;
}

.tsp-tauchgang-buchen__step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}

.tsp-tauchgang-buchen__intro {
	margin: 0 0 1.5rem;
	color: #666;
	font-size: 0.95rem;
}

.tsp-tauchgang-buchen__calendar {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.tsp-tauchgang-buchen__date {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1rem;
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius);
	background: #fff;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	transition: border-color .2s, background .2s, box-shadow .2s;
}

.tsp-tauchgang-buchen__date:hover {
	border-color: var(--tsp-primary);
	background: rgba(13, 115, 119, 0.04);
}

.tsp-tauchgang-buchen__date--selected {
	border-color: var(--tsp-primary);
	background: rgba(13, 115, 119, 0.08);
	box-shadow: 0 0 0 2px rgba(13, 115, 119, 0.2);
}

.tsp-tauchgang-buchen__date-label {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.tsp-tauchgang-buchen__date-time {
	font-size: 0.85rem;
	color: #666;
}

.tsp-tauchgang-buchen__date-places {
	font-size: 0.8rem;
	color: #888;
	margin-top: 0.25rem;
}

.tsp-tauchgang-buchen__summary {
	background: #f8f9fa;
	padding: 1.25rem;
	border-radius: var(--tsp-radius);
	margin-bottom: 1.5rem;
}

.tsp-tauchgang-buchen__summary-term,
.tsp-tauchgang-buchen__summary-course {
	margin: 0 0 0.5rem;
}

.tsp-tauchgang-buchen__summary-course:last-of-type {
	margin-bottom: 0;
}

.tsp-tauchgang-buchen__nav {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.tsp-tauchgang-buchen__checkout-placeholder {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	margin-bottom: 1.5rem;
}

.tsp-tauchgang-buchen__checkout-row {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.tsp-tauchgang-buchen__checkout-row:last-of-type {
	border-bottom: none;
}

.tsp-tauchgang-buchen__checkout-row--total {
	margin-top: 0.5rem;
	padding-top: 1rem;
	border-top: 2px solid var(--tsp-border);
	font-size: 1.1rem;
}

.tsp-tauchgang-buchen__checkout-notice {
	margin-top: 1.5rem;
	padding: 1rem;
	background: rgba(13, 115, 119, 0.1);
	border-radius: 4px;
	font-size: 0.9rem;
	color: #0d7377;
}

.tsp-tauchgang-buchen__checkout-notice p {
	margin: 0;
}

/* Tauchkurs buchen – Jahreskalender + Kurse pro Datum */
.tsp-tauchkurs-buchen {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-tauchkurs-buchen__top {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.tsp-tauchkurs-buchen__card {
	background: #fafafa;
	border-radius: var(--tsp-radius);
	border: 1px solid #e3e3e3;
	padding: 1rem 1.25rem;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.tsp-tauchkurs-buchen__card--course {
	flex: 2;
}

.tsp-tauchkurs-buchen__card--instructor {
	flex: 1.2;
}

.tsp-tauchkurs-buchen__card-title {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	font-weight: 600;
	color: #1a1a1a;
}

.tsp-tauchkurs-buchen__card-main {
	margin: 0 0 0.25rem;
	color: #222;
}

.tsp-tauchkurs-buchen__card-meta {
	margin: 0 0 0.4rem;
	color: #555;
	font-size: 0.9rem;
}

.tsp-tauchkurs-buchen__card-hint {
	margin: 0;
	color: #777;
	font-size: 0.85rem;
}

.tsp-tauchkurs-buchen__card-actions {
	margin: 0.75rem 0 0;
}

.tsp-tauchkurs-buchen__card-link {
	font-size: 0.9rem;
	padding: 0.45rem 0.9rem;
}

.tsp-tauchkurs-buchen__instructor {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin: 0.25rem 0 0.5rem;
}

.tsp-tauchkurs-buchen__instructor-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 20%, #ffffff, var(--tsp-primary));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.tsp-tauchkurs-buchen__instructor-avatar span {
	transform: translateY(1px);
}

.tsp-tauchkurs-buchen__instructor-name {
	margin: 0;
	color: #222;
}

.tsp-tauchkurs-buchen__instructor-role {
	margin: 0.1rem 0 0;
	color: #555;
	font-size: 0.9rem;
}

.tsp-tauchkurs-buchen__title {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.tsp-tauchkurs-buchen__steps {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.tsp-tauchkurs-buchen__step-item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	color: #888;
}

.tsp-tauchkurs-buchen__step-number {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
	font-size: 0.8rem;
}

.tsp-tauchkurs-buchen__step-item.is-active {
	color: #111;
	font-weight: 600;
}

.tsp-tauchkurs-buchen__step-item.is-active .tsp-tauchkurs-buchen__step-number {
	border-color: var(--tsp-primary);
	background: var(--tsp-primary);
	color: #fff;
}

.tsp-tauchkurs-buchen__step-label {
	white-space: nowrap;
}

.tsp-tauchkurs-buchen__intro {
	margin: 0 0 1.5rem;
	color: #666;
	font-size: 0.95rem;
}

@media (min-width: 768px) {
	.tsp-tauchkurs-buchen__top {
		flex-direction: row;
		align-items: stretch;
	}
}

.tsp-tauchkurs-buchen__month-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.tsp-tauchkurs-buchen__month-btn {
	font-size: 0.9rem;
	color: var(--tsp-primary);
	text-decoration: none;
}

.tsp-tauchkurs-buchen__month-btn:hover {
	text-decoration: underline;
}

.tsp-tauchkurs-buchen__month-current {
	font-weight: 600;
	font-size: 1rem;
}

.tsp-tauchkurs-buchen__empty {
	margin: 0;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: var(--tsp-radius);
	color: #666;
}

.tsp-tauchkurs-buchen__calendar-section {
	margin-bottom: 2rem;
}

.tsp-tauchkurs-buchen__calendar-title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.tsp-tauchkurs-buchen__calendar-grid {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.tsp-tauchkurs-buchen__calendar-grid th,
.tsp-tauchkurs-buchen__calendar-grid td {
	text-align: center;
	padding: 0.4rem;
	font-size: 0.85rem;
}

.tsp-tauchkurs-buchen__calendar-grid th {
	color: #666;
	font-weight: 600;
}

.tsp-tauchkurs-buchen__calendar-cell {
	height: 40px;
}

.tsp-tauchkurs-buchen__calendar-cell.is-empty {
	background: transparent;
}

.tsp-tauchkurs-buchen__calendar-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(13, 115, 119, 0.06);
	color: inherit;
	text-decoration: none;
	transition: background 0.2s, box-shadow 0.2s;
}

.tsp-tauchkurs-buchen__calendar-cell.has-courses .tsp-tauchkurs-buchen__calendar-link:hover {
	background: rgba(13, 115, 119, 0.18);
	box-shadow: 0 0 0 2px rgba(13, 115, 119, 0.25);
}

.tsp-tauchkurs-buchen__calendar-cell.is-selected .tsp-tauchkurs-buchen__calendar-link {
	background: var(--tsp-primary);
	color: #fff;
}

.tsp-tauchkurs-buchen__calendar-day {
	font-size: 0.9rem;
}

.tsp-tauchkurs-buchen__calendar-day.is-disabled {
	color: #ccc;
}

.tsp-tauchkurs-buchen__calendar-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--tsp-primary);
	margin-top: 2px;
}

.tsp-tauchkurs-buchen__courses-section {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--tsp-border);
}

.tsp-tauchkurs-buchen__courses-title {
	margin: 0 0 1rem;
	font-size: 1.1rem;
}

.tsp-tauchkurs-buchen__courses-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tsp-tauchkurs-buchen__course-card {
	padding: 1.25rem;
	border: 1px solid var(--tsp-border);
	border-radius: var(--tsp-radius);
	background: #fafafa;
}

.tsp-tauchkurs-buchen__course-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1rem;
	margin-bottom: 0.5rem;
}

.tsp-tauchkurs-buchen__course-name {
	font-size: 1.1rem;
}

.tsp-tauchkurs-buchen__course-time {
	font-size: 0.9rem;
	color: #666;
}

.tsp-tauchkurs-buchen__course-desc {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	color: #555;
}

.tsp-tauchkurs-buchen__course-places {
	margin: 0 0 0.75rem;
	font-size: 0.85rem;
	color: #666;
}

.tsp-tauchkurs-buchen__course-book {
	display: inline-block;
	margin-top: 0.5rem;
}

.tsp-tauchkurs-buchen__course-no-link {
	margin: 0.5rem 0 0;
	font-size: 0.9rem;
	color: #888;
}

.tsp-tauchkurs-buchen__course-detail {
	margin-top: 0.5rem;
	margin-bottom: 2rem;
}

.tsp-tauchkurs-buchen__course-detail-head {
	margin-bottom: 1rem;
}

.tsp-tauchkurs-buchen__course-detail-title {
	margin: 0 0 0.25rem;
	font-size: 1.4rem;
}

.tsp-tauchkurs-buchen__course-detail-meta {
	margin: 0;
	font-size: 0.95rem;
	color: #555;
}

.tsp-tauchkurs-buchen__course-detail-desc {
	margin: 0 0 0.75rem;
	color: #555;
}

.tsp-tauchkurs-buchen__course-detail-list {
	margin: 0 0 1rem 1.2rem;
	padding: 0;
	color: #555;
	font-size: 0.9rem;
}

.tsp-tauchkurs-buchen__booking-section {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--tsp-border);
}

.tsp-tauchkurs-buchen__booking-title {
	margin: 0 0 0.75rem;
	font-size: 1.1rem;
}

.tsp-tauchkurs-buchen__booking-intro {
	margin: 0 0 1rem;
	color: #666;
	font-size: 0.9rem;
}

.tsp-form__grid--two {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem 1.25rem;
	margin-bottom: 0.5rem;
}

.tsp-form__fieldset {
	border: 1px solid var(--tsp-border);
	border-radius: 6px;
	padding: 0.75rem 1rem 1rem;
	margin-bottom: 1rem;
}

.tsp-form__legend {
	font-size: 0.95rem;
	font-weight: 600;
	padding: 0 0.25rem;
}

.tsp-form__hint {
	margin: 0.25rem 0 0;
	font-size: 0.85rem;
	color: #666;
}

.tsp-tauchkurs-buchen__no-courses {
	margin: 0;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: var(--tsp-radius);
	color: #666;
}

/* Zertifizierungen – Meine Zertifikate + Nächste Empfehlungen */
.tsp-zertifizierungen {
	background: #fff;
	padding: 1.5rem;
	border-radius: var(--tsp-radius);
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.tsp-zertifizierungen__title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	color: #1a1a1a;
}

.tsp-zertifizierungen__mine {
	margin-bottom: 2rem;
}

.tsp-zertifizierungen__empty {
	color: #666;
	margin: 0;
}

.tsp-zertifizierungen__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
}

.tsp-zertifizierungen__list--next {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.tsp-zertifizierungen__item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem;
	background: #fafafa;
	border-radius: var(--tsp-radius);
	border: 1px solid var(--tsp-border);
}

.tsp-zertifizierungen__item--next {
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: linear-gradient(135deg, rgba(13, 115, 119, 0.06) 0%, rgba(13, 115, 119, 0.02) 100%);
	border-color: rgba(13, 115, 119, 0.2);
}

.tsp-zertifizierungen__thumb {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
}

.tsp-zertifizierungen__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.tsp-zertifizierungen__item--next .tsp-zertifizierungen__thumb {
	width: 100px;
	height: 100px;
}

.tsp-zertifizierungen__body {
	flex: 1;
	min-width: 0;
}

.tsp-zertifizierungen__name {
	margin: 0 0 0.25rem;
	font-size: 1.05rem;
	color: #1a1a1a;
}

.tsp-zertifizierungen__desc {
	margin: 0 0 0.25rem;
	font-size: 0.9rem;
	color: #555;
	line-height: 1.4;
}

.tsp-zertifizierungen__date {
	margin: 0;
	font-size: 0.85rem;
	color: #777;
}

.tsp-zertifizierungen__intro {
	margin: 0 0 1rem;
	color: #555;
	font-size: 0.95rem;
}

.tsp-dashboard__content > .tsp-zertifizierungen {
	padding: 1.5rem;
}

/* Login/Register behalten schmale Breite */
.tsp-login,
.tsp-register,
.tsp-verify {
	max-width: 400px;
	margin: 2rem auto;
	padding: 1.5rem;
}

