:root {
	--ls-color-bg: var(--e-global-color-bg, #f6f1e8);
	--ls-color-surface: var(--e-global-color-surface, #fffdf8);
	--ls-color-ink: var(--e-global-color-text, #1b2420);
	--ls-color-muted: var(--e-global-color-secondary, #4d5a54);
	--ls-color-primary: var(--e-global-color-primary, #0f5c4c);
	--ls-color-primary-hover: var(--e-global-color-primary-hover, #0a4338);
	--ls-color-accent: var(--e-global-color-accent, #e39b12);
	--ls-color-line: var(--e-global-color-line, #d8cfc0);
	--ls-color-success: var(--e-global-color-success, #1f7a4d);
	--ls-color-error: var(--e-global-color-error, #9b2c2c);
	--ls-radius: 18px;
	--ls-shadow: 0 10px 30px rgba(27, 36, 32, 0.08);
	--ls-font: var(--e-global-typography-text-font-family, "Source Sans 3"), "Segoe UI", sans-serif;
	--ls-display: var(--e-global-typography-primary-font-family, "Fraunces"), Georgia, serif;
}

body.lehrstelle-app {
	background: var(--ls-color-bg);
	color: var(--ls-color-ink);
	font-family: var(--ls-font);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

body.lehrstelle-app a {
	color: var(--ls-color-primary);
}

body.lehrstelle-app a.lehrstelle-button {
	color: #fff;
	text-decoration: none;
}

body.lehrstelle-app a.lehrstelle-button--ghost {
	color: var(--ls-color-primary);
}

body.lehrstelle-app #site-header,
body.lehrstelle-app .site-header {
	background: var(--ls-color-surface);
	border-bottom: 1px solid var(--ls-color-line);
	box-shadow: none;
	flex: 0 0 auto;
	width: 100%;
}

body.lehrstelle-app .site-header .header-inner {
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.75rem;
	max-width: 1120px;
}

body.lehrstelle-app .site-header .site-branding {
	min-width: 0;
	flex: 1 1 auto;
}

body.lehrstelle-app .site-header .site-navigation {
	flex: 0 1 auto;
	min-width: 0;
	align-self: center;
}

body.lehrstelle-app .site-header .site-title {
	font-size: clamp(1.2rem, 4.8vw, 1.65rem);
	line-height: 1.15;
}

body.lehrstelle-app .site-header .site-title a,
body.lehrstelle-app .site-header .site-title a:hover,
body.lehrstelle-app .site-header .site-logo + .site-title a {
	color: var(--ls-color-primary) !important;
	font-family: var(--ls-display);
	font-size: inherit;
	font-weight: 700;
	line-height: inherit;
	text-decoration: none;
}

body.lehrstelle-app .site-header .site-navigation a,
body.lehrstelle-app .site-header .site-navigation-toggle-icon {
	color: var(--ls-color-ink) !important;
}

body.lehrstelle-app .site-navigation-toggle {
	background: var(--ls-color-bg) !important;
	border: 1px solid var(--ls-color-line);
	border-radius: 12px;
	min-width: 44px;
	min-height: 44px;
}

body.lehrstelle-app #site-footer,
body.lehrstelle-app .site-footer {
	background: transparent;
	border-top: 1px solid var(--ls-color-line);
	color: var(--ls-color-muted);
	flex: 0 0 auto;
	width: 100%;
	margin-top: auto;
}

body.lehrstelle-app .site-footer .footer-inner {
	max-width: 1120px;
}

body.lehrstelle-app .site-main,
body.lehrstelle-app #content.site-main {
	flex: 1 0 auto;
	width: 100%;
}

body.lehrstelle-app .site-main,
body.lehrstelle-app .page-content,
body.lehrstelle-app .entry-content {
	background: transparent;
}

body.lehrstelle-app:not([class*='elementor-page-']) .site-main {
	max-width: 920px;
}

.lehrstelle-home,
.lehrstelle-auth,
.lehrstelle-dashboard,
.lehrstelle-form-page,
.lehrstelle-search,
.lehrstelle-onboarding,
.lehrstelle-profile,
.lehrstelle-legal {
	max-width: 860px;
	margin: 0 auto;
	padding: 1.25rem 1rem 4rem;
	font-family: var(--ls-font);
	color: var(--ls-color-ink);
}

.lehrstelle-home {
	display: grid;
	gap: 1.5rem;
}

.lehrstelle-hero,
.lehrstelle-company-pitch,
.lehrstelle-profile-card,
.lehrstelle-complete,
.lehrstelle-hero-mini,
.lehrstelle-auth,
.lehrstelle-search-form,
.lehrstelle-status-form {
	background: var(--ls-color-surface);
	border: 1px solid var(--ls-color-line);
	border-radius: var(--ls-radius);
	box-shadow: var(--ls-shadow);
	padding: 1.5rem;
}

.lehrstelle-hero h1,
.lehrstelle-auth h1,
.lehrstelle-dashboard h1,
.lehrstelle-search h1,
.lehrstelle-onboarding h1,
.lehrstelle-form-page h1,
.lehrstelle-profile h1,
.lehrstelle-legal h1 {
	font-family: var(--ls-display);
	font-size: clamp(2rem, 7vw, 3.4rem);
	line-height: 1.12;
	margin: 0 0 0.75rem;
}

.lehrstelle-legal h1 {
	font-size: clamp(1.8rem, 5vw, 2.4rem);
}

.lehrstelle-legal h2 {
	font-family: var(--ls-display);
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 1.75rem 0 0.6rem;
}

.lehrstelle-legal p,
.lehrstelle-legal li {
	line-height: 1.6;
	color: var(--ls-color-ink);
}

.lehrstelle-legal details {
	background: var(--ls-color-surface);
	border: 1px solid var(--ls-color-line);
	border-radius: var(--ls-radius);
	box-shadow: var(--ls-shadow);
	margin: 0.75rem 0;
	padding: 0;
}

.lehrstelle-legal summary {
	cursor: pointer;
	font-weight: 600;
	line-height: 1.4;
	list-style: none;
	min-height: 48px;
	padding: 0.9rem 1.1rem;
}

.lehrstelle-legal summary::-webkit-details-marker {
	display: none;
}

.lehrstelle-legal details p {
	margin: 0;
	padding: 0 1.1rem 1.1rem;
	color: var(--ls-color-muted);
}

body.lehrstelle-app .site-footer .site-navigation ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0.75rem 0;
}

body.lehrstelle-app .site-footer .site-navigation a {
	color: var(--ls-color-primary);
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	text-decoration: none;
}

body.lehrstelle-app .site-footer .site-navigation a:hover,
body.lehrstelle-app .site-footer .site-navigation a:focus {
	text-decoration: underline;
}

.lehrstelle-kicker {
	display: inline-block;
	margin: 0 0 0.75rem;
	color: var(--ls-color-primary);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.lehrstelle-lead,
.lehrstelle-flow,
.lehrstelle-status-hint {
	color: var(--ls-color-muted);
	line-height: 1.55;
}

.lehrstelle-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.lehrstelle-button,
.lehrstelle-form button.lehrstelle-button,
.lehrstelle-form button[type="submit"],
.lehrstelle-switch {
	appearance: none;
	border: 0;
	border-radius: 999px;
	background: var(--ls-color-primary);
	color: #fff;
	font: inherit;
	font-weight: 700;
	min-height: 48px;
	padding: 0.8rem 1.3rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.lehrstelle-button:hover,
.lehrstelle-form button[type="submit"]:hover {
	background: var(--ls-color-primary-hover);
	color: #fff;
}

.lehrstelle-button:focus-visible,
.lehrstelle-form input:focus-visible,
.lehrstelle-form select:focus-visible,
.lehrstelle-form textarea:focus-visible,
.lehrstelle-form button:focus-visible,
.lehrstelle-switch:focus-visible {
	outline: 3px solid var(--ls-color-accent);
	outline-offset: 2px;
}

.lehrstelle-button--ghost {
	background: transparent;
	color: var(--ls-color-primary);
	border: 2px solid var(--ls-color-primary);
}

.lehrstelle-button--ghost:hover {
	background: #eef6f3;
	color: var(--ls-color-primary-hover);
}

.lehrstelle-button--xl {
	min-height: 56px;
	width: 100%;
}

.lehrstelle-steps h2,
.lehrstelle-dashboard h2,
.lehrstelle-company-pitch h2 {
	font-family: var(--ls-display);
	font-size: 1.6rem;
	margin: 0 0 1rem;
}

.lehrstelle-steps ol,
.lehrstelle-stats,
.lehrstelle-list,
.lehrstelle-cards,
.lehrstelle-chips {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lehrstelle-steps ol {
	display: grid;
	gap: 0.85rem;
}

.lehrstelle-steps li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: start;
	background: var(--ls-color-surface);
	border-radius: var(--ls-radius);
	padding: 1rem 1.1rem;
	border: 1px solid var(--ls-color-line);
}

.lehrstelle-steps li strong,
.lehrstelle-steps li span:not(.lehrstelle-step-num) {
	display: block;
}

.lehrstelle-steps li span:not(.lehrstelle-step-num) {
	color: var(--ls-color-muted);
	margin-top: 0.2rem;
}

.lehrstelle-step-num {
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: var(--ls-color-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.lehrstelle-form-page {
	display: grid;
	gap: 1.25rem;
}

.lehrstelle-form-page > .lehrstelle-hero-mini h1 {
	font-size: clamp(1.85rem, 5vw, 2.6rem);
}

.lehrstelle-edit .lehrstelle-form {
	gap: 1.25rem;
}

.lehrstelle-edit label > span:first-child {
	font-weight: 600;
}

.lehrstelle-form {
	display: grid;
	gap: 1rem;
}

.lehrstelle-form .lehrstelle-form-card,
.lehrstelle-form-card {
	display: grid;
	background: var(--ls-color-surface);
	border: 1px solid var(--ls-color-line);
	border-radius: var(--ls-radius);
	box-shadow: var(--ls-shadow);
	padding: 1.25rem 1.2rem 1.4rem;
	gap: 1rem;
}

.lehrstelle-form .lehrstelle-form-card legend,
.lehrstelle-form-card legend,
.lehrstelle-form-more > summary {
	font-family: var(--ls-display);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.lehrstelle-form-hint {
	margin: 0;
	color: var(--ls-color-muted);
	line-height: 1.5;
	font-size: 0.98rem;
}

.lehrstelle-form label .lehrstelle-form-hint {
	font-weight: 400;
}

.lehrstelle-photo {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 1rem;
	align-items: center;
}

.lehrstelle-photo-frame,
.lehrstelle-photo-fallback,
.lehrstelle-photo img {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.lehrstelle-photo-frame {
	border: 2px solid var(--ls-color-line);
	background: #eef6f3;
	overflow: hidden;
	flex: 0 0 auto;
}

.lehrstelle-photo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ls-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--ls-color-primary);
}

.lehrstelle-form input[type="file"] {
	padding: 0.55rem 0.7rem;
	background: var(--ls-color-bg);
	min-height: 48px;
}

.lehrstelle-choice-list {
	display: grid;
	gap: 0.5rem;
	max-height: 22rem;
	overflow: auto;
	padding: 0.15rem;
	scrollbar-color: var(--ls-color-line) transparent;
}

.lehrstelle-choice-list .lehrstelle-choice-card,
.lehrstelle-form-card .lehrstelle-choice-card {
	min-height: 48px;
	padding: 0.75rem 1rem;
}

.lehrstelle-form .lehrstelle-form-nested,
.lehrstelle-form-nested {
	border: 0;
	box-shadow: none;
	background: transparent;
	padding: 0;
	gap: 0.75rem;
}

.lehrstelle-form .lehrstelle-form-nested legend,
.lehrstelle-form-nested legend {
	font-family: var(--ls-font);
	font-size: 1rem;
	margin-bottom: 0;
}

.lehrstelle-form-more {
	display: grid;
	gap: 1rem;
}

.lehrstelle-form-more > summary {
	cursor: pointer;
	min-height: 48px;
	display: flex;
	align-items: center;
	list-style: none;
}

.lehrstelle-form-more > summary::-webkit-details-marker {
	display: none;
}

.lehrstelle-form-more > summary::after {
	content: "+";
	margin-left: auto;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #eef6f3;
	color: var(--ls-color-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ls-font);
	font-size: 1.3rem;
	font-weight: 700;
}

.lehrstelle-form-more[open] > summary::after {
	content: "–";
}

.lehrstelle-form-save {
	display: grid;
	gap: 0.6rem;
	justify-items: start;
}

.lehrstelle-complete-bar {
	height: 8px;
	background: var(--ls-color-line);
	border-radius: 999px;
	overflow: hidden;
	margin: 0.75rem 0;
}

.lehrstelle-complete-bar span {
	display: block;
	height: 100%;
	background: var(--ls-color-primary);
	border-radius: inherit;
}

.lehrstelle-complete p {
	margin: 0;
}

.lehrstelle-profile {
	display: grid;
	gap: 1.25rem;
}

.lehrstelle-profile-hero {
	display: grid;
	gap: 1.25rem;
	align-items: start;
}

.lehrstelle-profile-photo,
.lehrstelle-profile-photo img,
.lehrstelle-profile-photo .lehrstelle-photo-fallback {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}

.lehrstelle-profile-photo {
	border: 3px solid var(--ls-color-line);
	background: #eef6f3;
	overflow: hidden;
	flex: 0 0 auto;
}

.lehrstelle-profile-photo .lehrstelle-photo-fallback {
	display: flex;
}

.lehrstelle-profile-identity h1 {
	margin-bottom: 0.35rem;
}

.lehrstelle-profile-grid {
	display: grid;
	gap: 1rem;
}

.lehrstelle-profile-grid h2,
.lehrstelle-profile-contact h2 {
	font-family: var(--ls-display);
	font-size: 1.45rem;
	margin: 0 0 0.55rem;
}

.lehrstelle-profile-grid p {
	margin: 0;
	line-height: 1.55;
}

.lehrstelle-profile-contact {
	scroll-margin-top: 1.25rem;
}

.lehrstelle-actions form {
	margin: 0;
}

.lehrstelle-form label,
.lehrstelle-form fieldset {
	display: grid;
	gap: 0.4rem;
	border: 0;
	padding: 0;
	margin: 0;
}

.lehrstelle-form .lehrstelle-form-card > fieldset {
	gap: 1rem;
}

.lehrstelle-form .lehrstelle-form-card legend {
	font-family: var(--ls-display);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	padding: 0;
}

.lehrstelle-form legend {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.lehrstelle-form input,
.lehrstelle-form select,
.lehrstelle-form textarea {
	width: 100%;
	border: 1px solid var(--ls-color-line);
	border-radius: 12px;
	padding: 0.85rem 0.9rem;
	font: inherit;
	background: #fff;
	min-height: 48px;
}

.lehrstelle-grid {
	display: grid;
	gap: 0.8rem;
}

.lehrstelle-choice {
	display: grid;
	gap: 0.75rem;
}

.lehrstelle-form .lehrstelle-choice-card,
.lehrstelle-choice-card {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	border: 2px solid var(--ls-color-line);
	border-radius: 16px;
	padding: 1rem;
	background: #fff;
	min-height: 56px;
	cursor: pointer;
}

.lehrstelle-choice-card input {
	width: 1.2rem;
	height: 1.2rem;
	min-height: 0;
	accent-color: var(--ls-color-primary);
	flex: 0 0 auto;
}

.lehrstelle-choice-card:has(input:checked) {
	border-color: var(--ls-color-primary);
	background: #eef6f3;
}

.lehrstelle-hp {
	position: absolute;
	left: -9999px;
}

.lehrstelle-check {
	grid-template-columns: auto 1fr;
	align-items: start;
}

.lehrstelle-check input {
	width: 1.2rem;
	min-height: 1.2rem;
	margin-top: 0.2rem;
}

.lehrstelle-notice {
	border-radius: 12px;
	padding: 0.9rem 1rem;
	margin-bottom: 1rem;
}

.lehrstelle-notice--success { background: #e5f5ea; color: var(--ls-color-success); }
.lehrstelle-notice--error { background: #fdecec; color: var(--ls-color-error); }
.lehrstelle-notice--info { background: #eef4f2; color: var(--ls-color-muted); }

.lehrstelle-status-form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 1rem 0;
}

.lehrstelle-status-form p {
	margin: 0;
}

.lehrstelle-switch {
	position: relative;
	min-width: 92px;
	background: #8a8376;
	padding-inline: 1rem;
}

.lehrstelle-switch.is-on {
	background: var(--ls-color-success);
}

.lehrstelle-results,
.lehrstelle-cards,
.lehrstelle-stats,
.lehrstelle-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

.lehrstelle-card-head h2 {
	font-family: var(--ls-display);
	font-size: 1.7rem;
	margin: 0 0 0.2rem;
}

.lehrstelle-card-place,
.lehrstelle-card-wish {
	margin: 0 0 0.4rem;
}

.lehrstelle-card-wish {
	font-weight: 700;
}

.lehrstelle-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	margin: 0.4rem 0 0.8rem;
}

.lehrstelle-card-meta dt {
	font-size: 0.8rem;
	color: var(--ls-color-muted);
}

.lehrstelle-card-meta dd {
	margin: 0;
	font-weight: 600;
}

.lehrstelle-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 0.5rem;
}

.lehrstelle-chips li {
	background: #eef6f3;
	color: var(--ls-color-primary);
	border-radius: 999px;
	padding: 0.25rem 0.7rem;
	font-size: 0.9rem;
}

.lehrstelle-more-filters {
	border-top: 1px solid var(--ls-color-line);
	padding-top: 0.75rem;
}

.lehrstelle-more-filters summary {
	cursor: pointer;
	font-weight: 700;
	min-height: 44px;
	display: flex;
	align-items: center;
}

.lehrstelle-account-nav {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	align-items: center;
}

.lehrstelle-account-status {
	color: var(--ls-color-muted);
	font-weight: 600;
	line-height: 1.2;
}

/* Match Hello Elementor menu link padding so status sits on the same axis. */
body.lehrstelle-app .site-header .site-navigation ul.menu {
	align-items: center;
	gap: 0;
}

body.lehrstelle-app .site-header .site-navigation ul.menu > li {
	align-items: center;
}

body.lehrstelle-app .site-header .site-navigation .menu-item--account-status {
	display: flex;
	align-items: center;
}

body.lehrstelle-app .site-header .site-navigation .lehrstelle-account-status {
	display: block;
	box-sizing: border-box;
	padding: 8px 15px;
	max-width: 14rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--ls-color-muted);
	font-size: inherit;
	font-weight: 600;
	line-height: inherit;
}

body.lehrstelle-app .site-header .site-navigation-dropdown .lehrstelle-account-status {
	display: block;
	padding: 20px;
	max-width: none;
	white-space: normal;
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.102);
	color: var(--ls-color-muted);
	font-weight: 600;
}

.lehrstelle-dashboard section {
	margin-top: 1.75rem;
}

.lehrstelle-dashboard--company {
	display: grid;
	gap: 1.5rem;
}

.lehrstelle-dashboard--company > .lehrstelle-notice,
.lehrstelle-dashboard--company > .lehrstelle-actions {
	margin: 0;
}

.lehrstelle-dash-head h1 {
	margin-bottom: 0.35rem;
}

.lehrstelle-dash-head .lehrstelle-lead {
	margin: 0;
}

.lehrstelle-dash-cta {
	display: grid;
	gap: 0.75rem;
	background:
		linear-gradient(145deg, rgba(15, 92, 76, 0.08), transparent 55%),
		var(--ls-color-surface);
}

.lehrstelle-dash-cta h2,
.lehrstelle-dash-cta .lehrstelle-lead,
.lehrstelle-dash-cta .lehrstelle-kicker {
	margin: 0;
}

.lehrstelle-dash-cta .lehrstelle-button {
	margin-top: 0.35rem;
	justify-self: start;
}

.lehrstelle-dash-section {
	margin-top: 0;
}

.lehrstelle-dash-section h2 {
	margin-bottom: 0.85rem;
}

.lehrstelle-stats--tiles {
	display: grid;
	gap: 0.85rem;
}

.lehrstelle-stat {
	display: grid;
	gap: 0.25rem;
	align-content: center;
	min-height: 96px;
	padding: 1.1rem 1.2rem;
	background: var(--ls-color-surface);
	border: 1px solid var(--ls-color-line);
	border-radius: var(--ls-radius);
	box-shadow: var(--ls-shadow);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

a.lehrstelle-stat:hover,
a.lehrstelle-stat:focus-visible {
	border-color: var(--ls-color-primary);
	transform: translateY(-1px);
	outline: none;
}

.lehrstelle-stat-value {
	font-family: var(--ls-display);
	font-size: clamp(1.8rem, 5vw, 2.35rem);
	font-weight: 700;
	line-height: 1;
	color: var(--ls-color-primary);
}

.lehrstelle-stat-label {
	color: var(--ls-color-muted);
	font-size: 0.95rem;
	line-height: 1.35;
}

.lehrstelle-stat--static.has-signal {
	border-color: var(--ls-color-accent);
}

.lehrstelle-stat--static.has-signal .lehrstelle-stat-value {
	color: var(--ls-color-accent);
}

.lehrstelle-empty {
	background: var(--ls-color-surface);
	border: 1px dashed var(--ls-color-line);
	border-radius: var(--ls-radius);
	padding: 1.25rem 1.2rem;
}

.lehrstelle-empty p {
	margin: 0 0 0.35rem;
}

.lehrstelle-empty .lehrstelle-lead {
	margin: 0;
}

.lehrstelle-list--appointments {
	display: grid;
	gap: 0.65rem;
}

.lehrstelle-list--appointments li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.35rem 1rem;
	padding: 0.95rem 1.1rem;
	background: var(--ls-color-surface);
	border: 1px solid var(--ls-color-line);
	border-radius: var(--ls-radius);
}

.lehrstelle-list--appointments span {
	color: var(--ls-color-muted);
}

.lehrstelle-auth--gate {
	display: grid;
	gap: 0.85rem;
	align-content: start;
}

.lehrstelle-auth--gate h1,
.lehrstelle-auth--gate .lehrstelle-lead,
.lehrstelle-auth--gate .lehrstelle-kicker {
	margin: 0;
}

.lehrstelle-auth--gate .lehrstelle-actions {
	margin-top: 0.5rem;
}

@media (min-width: 720px) {
	.lehrstelle-stats--tiles {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 720px) {
	.lehrstelle-button--xl { width: auto; }
	.lehrstelle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lehrstelle-choice { grid-template-columns: 1fr 1fr; }
	.lehrstelle-choice-list { grid-template-columns: 1fr 1fr; }
	.lehrstelle-profile-hero { grid-template-columns: 160px 1fr; }
	.lehrstelle-profile-photo,
	.lehrstelle-profile-photo img,
	.lehrstelle-profile-photo .lehrstelle-photo-fallback {
		width: 160px;
		height: 160px;
	}
	.lehrstelle-profile-grid { grid-template-columns: 1fr 1fr; }
	.lehrstelle-profile-section--wide { grid-column: 1 / -1; }
	.lehrstelle-profile-contact .lehrstelle-choice { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lehrstelle-steps ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lehrstelle-steps li { grid-template-columns: 1fr; }
	.lehrstelle-stats--tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lehrstelle-home,
	.lehrstelle-auth,
	.lehrstelle-dashboard,
	.lehrstelle-form-page,
	.lehrstelle-search,
	.lehrstelle-onboarding,
	.lehrstelle-profile,
	.lehrstelle-legal {
		padding-top: 2rem;
	}
}

@media (min-width: 900px) {
	.lehrstelle-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
