:root {
	--color-blue: #1663d6;
	--color-blue-dark: #0f4392;
	--color-yellow: #ffd23f;
	--color-yellow-dark: #e6b800;
	--color-text: #14213d;
	--color-muted: #667085;
	--color-border: #e4e7ec;
	--color-bg: #f5f7fb;
	--color-white: #ffffff;
	--shadow-soft: 0 16px 40px rgba(20, 33, 61, 0.08);
	--radius: 18px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--color-white);
	color: var(--color-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

input,
select,
textarea,
button {
	font: inherit;
}

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 18px;
	width: 100%;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.site-header {
	backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--color-border);
	position: sticky;
	top: 0;
	z-index: 20;
}

.header-inner {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr auto;
	min-height: 72px;
}

.site-logo {
	align-items: center;
	display: inline-flex;
	gap: 10px;
	font-weight: 800;
}

.site-logo-mark {
	align-items: center;
	background: var(--color-blue);
	border-radius: 12px;
	color: var(--color-white);
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.site-logo-text {
	letter-spacing: 0;
}

.nav-toggle {
	align-items: center;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.nav-toggle span:not(.screen-reader-text) {
	background: var(--color-text);
	border-radius: 99px;
	display: block;
	height: 2px;
	width: 18px;
}

.primary-nav {
	display: none;
	grid-column: 1 / -1;
}

.primary-nav.is-open {
	display: block;
}

.menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu a {
	color: var(--color-muted);
	font-weight: 700;
}

.menu a:hover,
.text-link:hover {
	color: var(--color-blue);
}

.header-cta {
	display: none;
}

.button {
	align-items: center;
	border: 0;
	border-radius: 14px;
	cursor: pointer;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-1px);
}

.button-small {
	min-height: 42px;
	padding: 9px 15px;
}

.button-blue {
	background: var(--color-blue);
	color: var(--color-white);
}

.button-blue:hover {
	background: var(--color-blue-dark);
}

.button-yellow {
	background: var(--color-yellow);
	color: #2b2200;
}

.button-yellow:hover {
	background: var(--color-yellow-dark);
}

.hero,
.archive-hero {
	background: linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
	padding: 52px 0 34px;
}

.hero-grid {
	display: grid;
	gap: 28px;
}

.eyebrow {
	color: var(--color-blue);
	font-size: 0.82rem;
	font-weight: 900;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.hero h1,
.archive-hero h1,
.single-content h1 {
	font-size: clamp(2rem, 8vw, 4.35rem);
	line-height: 1.02;
	margin: 0 0 18px;
}

.hero-copy > p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 1.08rem;
	margin: 0 0 24px;
	max-width: 650px;
}

.hero-search {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
	display: grid;
	gap: 10px;
	padding: 10px;
}

.hero-search input,
.filters-panel input,
.filters-panel select,
.listing-form input,
.listing-form select,
.listing-form textarea {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 14px;
	color: var(--color-text);
	min-height: 48px;
	padding: 12px 14px;
	width: 100%;
}

.quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.quick-links a {
	background: #eaf2ff;
	border-radius: 999px;
	color: var(--color-blue-dark);
	font-weight: 800;
	padding: 8px 13px;
}

.hero-panel {
	background: var(--color-text);
	border-radius: 24px;
	box-shadow: var(--shadow-soft);
	color: var(--color-white);
	display: grid;
	gap: 14px;
	padding: 22px;
}

.hero-panel div {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 16px;
}

.hero-panel strong,
.hero-panel span {
	display: block;
}

.hero-panel span {
	color: rgba(255, 255, 255, 0.72);
	margin-top: 4px;
}

.section {
	padding: 46px 0;
}

.section-muted {
	background: var(--color-bg);
}

.section-heading {
	align-items: end;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin-bottom: 22px;
}

.section-heading h2 {
	font-size: clamp(1.55rem, 5vw, 2.45rem);
	line-height: 1.12;
	margin: 0;
}

.section-heading p {
	color: var(--color-muted);
	margin: 8px 0 0;
	max-width: 620px;
}

.text-link {
	color: var(--color-blue);
	font-weight: 900;
	white-space: nowrap;
}

.taxonomy-grid,
.listing-grid,
.steps-grid {
	display: grid;
	gap: 16px;
}

.taxonomy-card,
.listing-card,
.step-card,
.contact-card,
.entry-card,
.filters-panel,
.listing-form {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: 0 8px 28px rgba(20, 33, 61, 0.05);
}

.taxonomy-card {
	align-items: center;
	display: flex;
	gap: 14px;
	padding: 18px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.taxonomy-card:hover,
.listing-card:hover {
	box-shadow: var(--shadow-soft);
	transform: translateY(-2px);
}

.taxonomy-icon {
	align-items: center;
	background: #eaf2ff;
	border-radius: 14px;
	color: var(--color-blue);
	display: inline-flex;
	font-weight: 900;
	height: 46px;
	justify-content: center;
	width: 46px;
}

.pin-icon::before {
	background: var(--color-blue);
	border-radius: 50% 50% 50% 0;
	content: "";
	display: block;
	height: 18px;
	transform: rotate(-45deg);
	width: 18px;
}

.taxonomy-card strong,
.taxonomy-card small {
	display: block;
}

.taxonomy-card small {
	color: var(--color-muted);
}

.listing-card {
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-card-link {
	display: grid;
	height: 100%;
}

.listing-media {
	align-items: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #dfeeff, #fff5bf);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.listing-media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.listing-media span {
	color: var(--color-blue);
	font-size: 3rem;
	font-weight: 900;
}

.listing-body {
	padding: 18px;
}

.listing-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.listing-meta span {
	background: var(--color-bg);
	border-radius: 999px;
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 800;
	padding: 5px 10px;
}

.listing-body h3 {
	font-size: 1.13rem;
	line-height: 1.25;
	margin: 0 0 8px;
}

.listing-body p,
.step-card p,
.site-footer p,
.form-help {
	color: var(--color-muted);
	margin: 0;
}

.step-card {
	padding: 20px;
}

.step-card span {
	align-items: center;
	background: var(--color-yellow);
	border-radius: 12px;
	display: inline-flex;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	margin-bottom: 14px;
	width: 38px;
}

.step-card h3 {
	margin: 0 0 8px;
}

.cta-block {
	align-items: center;
	background: var(--color-blue);
	border-radius: 24px;
	color: var(--color-white);
	display: grid;
	gap: 18px;
	padding: 28px;
}

.cta-block h2,
.cta-block p {
	margin: 0;
}

.cta-block p {
	color: rgba(255, 255, 255, 0.8);
	margin-top: 6px;
}

.archive-layout,
.single-layout {
	display: grid;
	gap: 24px;
}

.filters-panel {
	padding: 18px;
}

.filters-panel form,
.listing-form {
	display: grid;
	gap: 13px;
}

.filters-panel label,
.listing-form label {
	font-weight: 850;
}

.reset-link {
	text-align: center;
}

.pagination {
	margin-top: 26px;
}

.pagination .page-numbers {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	display: inline-flex;
	font-weight: 800;
	margin: 4px;
	padding: 8px 12px;
}

.pagination .current {
	background: var(--color-blue);
	color: var(--color-white);
}

.single-content,
.contact-card {
	min-width: 0;
}

.single-media {
	border-radius: 20px;
	margin: 20px 0;
	overflow: hidden;
}

.entry-content {
	color: #26344d;
}

.contact-card {
	align-self: start;
	padding: 22px;
	position: sticky;
	top: 94px;
}

.contact-card h2 {
	margin: 0 0 16px;
}

.contact-card p {
	margin: 0 0 12px;
}

.contact-card .button {
	margin-top: 8px;
	width: 100%;
}

.form-layout,
.content-narrow {
	max-width: 780px;
}

.listing-form {
	padding: 22px;
}

.form-row {
	display: grid;
	gap: 13px;
}

.notice {
	border-radius: 14px;
	font-weight: 800;
	margin-bottom: 18px;
	padding: 14px 16px;
}

.notice-success {
	background: #eaf8ef;
	color: #17623b;
}

.notice-error {
	background: #fff1f0;
	color: #a12b24;
}

.empty-state {
	background: var(--color-bg);
	border-radius: 16px;
	color: var(--color-muted);
	padding: 18px;
}

.site-footer {
	background: #101828;
	color: var(--color-white);
	padding: 38px 0 22px;
}

.footer-grid {
	display: grid;
	gap: 24px;
}

.footer-logo {
	margin-bottom: 12px;
}

.footer-nav .menu a {
	color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 26px;
	padding-top: 18px;
}

@media (min-width: 640px) {
	.hero-search {
		grid-template-columns: 1fr auto;
	}

	.taxonomy-grid,
	.steps-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.listing-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.form-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.nav-toggle {
		display: none;
	}

	.primary-nav {
		display: block;
		grid-column: auto;
		justify-self: center;
	}

	.menu {
		align-items: center;
		flex-direction: row;
		gap: 24px;
	}

	.header-cta {
		display: inline-flex;
	}

	.hero {
		padding: 86px 0 58px;
	}

	.hero-grid {
		align-items: center;
		grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
	}

	.taxonomy-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.city-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.listing-grid,
	.steps-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cta-block {
		grid-template-columns: 1fr auto;
		padding: 34px;
	}

	.archive-layout {
		align-items: start;
		grid-template-columns: 280px 1fr;
	}

	.single-layout {
		align-items: start;
		grid-template-columns: minmax(0, 1fr) 330px;
	}

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

/* Frontend account and listing functionality */
.auth-section .form-layout,
.form-layout {
	max-width: 820px;
}

.auth-form {
	max-width: 560px;
}

.auth-cta-card,
.empty-state-large {
	background:
		radial-gradient(circle at 88% 10%, rgba(255, 215, 0, 0.12), transparent 18rem),
		linear-gradient(145deg, rgba(17, 26, 43, 0.98), rgba(11, 19, 32, 0.94));
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
	padding: 28px;
}

.auth-cta-card h2,
.empty-state-large h2 {
	color: #f8fafc;
	font-size: clamp(1.5rem, 5vw, 2.4rem);
	line-height: 1.1;
	margin: 0 0 10px;
}

.auth-cta-card p,
.empty-state-large p {
	color: var(--color-muted);
	margin: 0 0 20px;
}

.listing-form input[type="file"] {
	cursor: pointer;
	padding: 11px;
}

.listing-card-footer {
	align-items: center;
	border-top: 1px solid rgba(148, 163, 184, 0.14);
	display: flex;
	justify-content: space-between;
	margin-top: 16px;
	padding-top: 14px;
}

.listing-card-footer strong {
	color: #ffd700;
	font-size: 1rem;
}

.listing-card-footer span {
	color: #cbd5e1;
	font-weight: 800;
}

.listing-media {
	position: relative;
}

.listing-status {
	border-radius: 999px;
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 900;
	left: 12px;
	padding: 6px 10px;
	position: absolute;
	top: 12px;
}

.listing-status-publish {
	background: rgba(16, 185, 129, 0.92);
	color: #052e1b;
}

.listing-status-pending {
	background: rgba(255, 215, 0, 0.94);
	color: #2b2200;
}

.listing-status-draft {
	background: rgba(148, 163, 184, 0.92);
	color: #0f172a;
}

.page-heading-actions {
	align-items: end;
	display: grid;
	gap: 18px;
}

.my-listings-grid .listing-card-link {
	pointer-events: auto;
}

.listing-facts {
	display: grid;
	gap: 12px;
	margin: 22px 0;
}

.listing-facts div {
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 12px;
	padding: 14px;
}

.listing-facts span {
	color: var(--color-muted);
	display: block;
	font-size: 0.82rem;
	font-weight: 800;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.listing-facts strong {
	color: #f8fafc;
}

.notice {
	border: 1px solid transparent;
}

.notice-success {
	background: rgba(16, 185, 129, 0.12);
	border-color: rgba(16, 185, 129, 0.3);
	color: #8ff0bd;
}

.notice-error {
	background: rgba(244, 63, 94, 0.12);
	border-color: rgba(244, 63, 94, 0.3);
	color: #fda4af;
}

.contact-card a {
	color: #ffd700;
}

@media (min-width: 760px) {
	.page-heading-actions {
		grid-template-columns: 1fr auto;
	}

	.listing-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* Requested account/header refinements */
.header-controls {
	align-items: stretch;
}

.header-action-button,
.logout-button {
	flex: 0 0 auto;
	min-height: 48px;
	padding-left: 14px;
	padding-right: 14px;
	white-space: nowrap;
	width: auto;
}

.button-secondary {
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.32);
	color: #e6edf3;
}

.button-secondary:hover {
	background: rgba(148, 163, 184, 0.16);
	border-color: rgba(255, 215, 0, 0.38);
}

.taxonomy-icon-business {
	background: rgba(37, 99, 235, 0.18);
	color: #ffd700;
}

.taxonomy-icon-business::before {
	border: 2px solid currentColor;
	border-radius: 5px;
	height: 20px;
	width: 22px;
}

.taxonomy-icon-business::after {
	background: #1d4ed8;
	border-radius: 2px;
	box-shadow: 6px 0 0 #1d4ed8, 12px 0 0 #1d4ed8, 0 6px 0 #1d4ed8, 6px 6px 0 #1d4ed8, 12px 6px 0 #1d4ed8;
	height: 2px;
	left: 13px;
	top: 14px;
	width: 2px;
}

.social-login-box {
	background: linear-gradient(145deg, rgba(17, 26, 43, 0.96), rgba(11, 19, 32, 0.92));
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
	display: grid;
	gap: 16px;
	margin-bottom: 18px;
	max-width: 560px;
	padding: 22px;
}

.social-login-box h2 {
	color: #f8fafc;
	font-size: 1.35rem;
	line-height: 1.15;
	margin: 0;
}

.social-login-actions {
	display: grid;
	gap: 10px;
}

.social-login-button {
	align-items: center;
	background: rgba(8, 15, 28, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 12px;
	color: #e6edf3;
	cursor: default;
	display: flex;
	font-weight: 850;
	gap: 12px;
	justify-content: center;
	min-height: 50px;
	width: 100%;
}

.social-login-button span {
	align-items: center;
	background: #ffffff;
	border-radius: 50%;
	display: inline-flex;
	font-size: 1.05rem;
	font-weight: 950;
	height: 26px;
	justify-content: center;
	width: 26px;
}

.social-login-google span {
	color: #4285f4;
}

.social-login-facebook span {
	background: #1877f2;
	color: #ffffff;
	font-family: Arial, sans-serif;
	font-size: 1.25rem;
}

.social-login-shortcode {
	background: rgba(8, 15, 28, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 12px;
	min-height: 50px;
	overflow: hidden;
	padding: 6px;
}

.page-subtitle {
	color: var(--color-muted);
	font-size: 1.05rem;
	margin: 10px 0 0;
	max-width: 720px;
}

.complete-profile-layout {
	max-width: 980px;
}

.complete-profile-form {
	gap: 18px;
	padding: 26px;
}

.account-type-fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.account-type-fieldset legend {
	color: #f8fafc;
	font-weight: 850;
	margin-bottom: 10px;
}

.account-type-options {
	display: grid;
	gap: 10px;
}

.account-type-option {
	cursor: pointer;
	display: block;
}

.account-type-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.account-type-option span {
	background: rgba(8, 15, 28, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.26);
	border-radius: 12px;
	color: #e6edf3;
	display: block;
	font-weight: 850;
	padding: 14px 16px;
	text-align: center;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.account-type-option input:checked + span {
	background: rgba(255, 215, 0, 0.08);
	border-color: #ffd700;
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
	color: #ffd700;
}

.upload-zone {
	align-items: center;
	background: rgba(8, 15, 28, 0.52);
	border: 1px dashed rgba(255, 215, 0, 0.42);
	border-radius: 14px;
	color: var(--color-muted);
	display: grid;
	gap: 8px;
	min-height: 116px;
	padding: 18px;
	position: relative;
	text-align: center;
}

.upload-zone input {
	cursor: pointer;
	inset: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
}

.checkbox-grid {
	display: grid;
	gap: 10px;
}

.checkbox-grid label {
	align-items: center;
	background: rgba(8, 15, 28, 0.52);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 12px;
	color: #e6edf3;
	display: flex;
	gap: 10px;
	padding: 12px 14px;
}

.checkbox-grid input {
	accent-color: #ffd700;
	width: auto;
}

@media (max-width: 1039px) {
	.header-controls.is-open {
		align-items: stretch;
		grid-template-columns: 1fr;
	}

	.header-action-button,
	.logout-button {
		justify-self: start;
		width: auto;
	}
}

@media (min-width: 760px) {
	.account-type-options {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.checkbox-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1040px) {
	.header-shell {
		grid-template-columns: auto minmax(0, 1fr);
		padding: 10px 16px;
	}

	.header-controls {
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		grid-column: auto;
		justify-content: flex-end;
		min-width: 0;
	}

	.header-search {
		flex: 1 1 220px;
		max-width: 380px;
		min-width: 180px;
	}

	.header-city {
		flex: 0 0 170px;
	}

	.language-switcher {
		flex: 0 0 auto;
	}

	.language-switcher-mobile {
		display: none;
	}

	.header-controls .language-switcher-desktop {
		display: block;
	}

	.header-action-button {
		flex: 0 0 auto;
		min-width: 0;
		padding-left: 12px;
		padding-right: 12px;
	}

	.logout-button {
		min-width: 0;
		padding-left: 14px;
		padding-right: 14px;
	}
}

@media (min-width: 1040px) and (max-width: 1210px) {
	.site-logo.uahub-brand {
		padding-right: 12px;
	}

	.site-logo .uahub-brand__logo {
		height: 48px;
		width: 48px;
	}

	.uahub-brand__text {
		font-size: 1.12rem;
	}

	.header-city {
		flex-basis: 155px;
	}

	.language-switch {
		padding-left: 10px;
		padding-right: 10px;
	}

	.header-action-button {
		font-size: 0.92rem;
	}
}

/* UaHub image branding */
.uahub-brand {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	text-decoration: none;
}

.uahub-brand__logo {
	display: block;
	flex: 0 0 auto;
	height: 52px;
	object-fit: contain;
	width: 52px;
}

.uahub-brand__text {
	color: #2d91ff;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.28rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	text-shadow: 0 0 22px rgba(45, 145, 255, 0.22);
}

.site-logo.uahub-brand {
	background: rgba(9, 17, 31, 0.5);
	border: 1px solid rgba(45, 145, 255, 0.18);
	border-radius: 12px;
	min-height: 58px;
	padding: 8px 15px 8px 11px;
}

.site-logo .uahub-brand__logo {
	height: 38px;
	width: 38px;
}

.footer-logo-mark.uahub-brand {
	background: transparent;
	border: 0;
	margin-bottom: 16px;
	min-height: 0;
	padding: 0;
}

.footer-logo-mark .uahub-brand__logo {
	height: 34px;
	width: 34px;
}

.footer-logo-mark .uahub-brand__text {
	font-size: 1.28rem;
}

.auth-brand {
	background: rgba(9, 17, 31, 0.62);
	border: 1px solid rgba(37, 99, 235, 0.22);
	border-radius: 14px;
	margin-bottom: 18px;
	max-width: 560px;
	padding: 12px 14px;
}

.auth-brand .uahub-brand__logo {
	height: 42px;
	width: 42px;
}

.complete-profile-brand {
	max-width: 980px;
}

@media (max-width: 639px) {
	.uahub-brand {
		gap: 8px;
	}

	.uahub-brand__logo,
	.site-logo .uahub-brand__logo {
		height: 40px;
		width: 40px;
	}

	.uahub-brand__text {
		font-size: 1.08rem;
	}

	.site-logo.uahub-brand {
		min-height: 52px;
		padding: 5px 12px 5px 6px;
	}
}

/* Dark reference header and front-page hero */
body.home {
	background:
		radial-gradient(circle at 78% 4%, rgba(22, 99, 214, 0.2), transparent 30rem),
		linear-gradient(180deg, #0b1320 0, #07111f 34rem, #ffffff 34rem);
}

.site-header {
	background: transparent;
	border-bottom: 0;
	padding: 14px 0 0;
}

.header-shell {
	align-items: center;
	background: rgba(10, 21, 38, 0.86);
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 18px;
	box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr auto;
	min-height: 74px;
	padding: 10px;
}

.site-logo {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 12px;
	color: #132033;
	min-height: 48px;
	padding: 7px 13px 7px 8px;
}

.site-logo-mark {
	background: linear-gradient(180deg, #1f6df2 0 50%, #ffd700 50% 100%);
	border: 2px solid rgba(19, 32, 51, 0.18);
	border-radius: 50%;
	color: #ffffff;
	font-size: 0.78rem;
	height: 32px;
	width: 32px;
}

.site-logo-text {
	display: grid;
	line-height: 1.05;
}

.site-logo-text strong {
	color: #0f172a;
	font-size: 1.02rem;
	font-weight: 950;
}

.site-logo-text small {
	color: #475569;
	font-size: 0.62rem;
	font-weight: 800;
}

.nav-toggle {
	background: rgba(15, 26, 45, 0.92);
	border-color: rgba(148, 163, 184, 0.32);
}

.nav-toggle span:not(.screen-reader-text) {
	background: #e6edf3;
}

.header-controls {
	display: none;
	gap: 10px;
	grid-column: 1 / -1;
}

.header-controls.is-open {
	display: grid;
}

.header-search,
.header-city {
	min-width: 0;
	position: relative;
}

.header-search {
	display: grid;
}

.header-search input,
.header-city select {
	background: rgba(10, 21, 38, 0.88);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 12px;
	color: #e6edf3;
	height: 48px;
	outline: 0;
	width: 100%;
}

.header-search input {
	padding: 0 46px 0 46px;
}

.header-search input::placeholder {
	color: #8d9bb0;
}

.header-city select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #e6edf3 50%),
		linear-gradient(135deg, #e6edf3 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 21px,
		calc(100% - 12px) 21px;
	background-repeat: no-repeat;
	background-size: 6px 6px;
	font-weight: 800;
	padding: 0 38px 0 16px;
}

.search-icon {
	border: 2px solid #8d9bb0;
	border-radius: 50%;
	height: 15px;
	left: 18px;
	position: absolute;
	top: 50%;
	transform: translateY(-56%);
	width: 15px;
	z-index: 1;
}

.search-icon::after {
	background: #8d9bb0;
	border-radius: 2px;
	content: "";
	height: 7px;
	position: absolute;
	right: -5px;
	top: 10px;
	transform: rotate(-45deg);
	width: 2px;
}

.language-switch {
	align-items: center;
	background: rgba(10, 21, 38, 0.88);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 12px;
	color: #e6edf3;
	display: inline-flex;
	font-weight: 850;
	gap: 8px;
	height: 48px;
	justify-content: center;
	padding: 0 14px;
}

.language-switcher {
	position: relative;
}

.language-switcher-desktop {
	display: none;
}

.language-switch {
	cursor: pointer;
}

.language-menu {
	background: rgba(10, 21, 38, 0.98);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 12px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
	display: none;
	min-width: 84px;
	padding: 5px;
	position: absolute;
	left: 50%;
	right: auto;
	top: calc(100% + 6px);
	transform: translateX(-50%);
	z-index: 30;
}

.language-switcher.is-open .language-menu {
	display: grid;
}

.language-menu a {
	align-items: center;
	border-radius: 9px;
	color: #e6edf3;
	display: grid;
	gap: 8px;
	grid-template-columns: 22px 24px;
	font-weight: 800;
	padding: 8px 9px;
}

.language-menu a:hover,
.language-menu a.is-active {
	background: rgba(255, 215, 0, 0.1);
	color: #ffffff;
}

.language-code {
	color: #ffd700;
	font-size: 0.82rem;
	min-width: 24px;
}

.language-flag,
.ua-flag {
	background: linear-gradient(180deg, #1d75ff 0 50%, #ffd700 50% 100%);
	border-radius: 3px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
	height: 14px;
	width: 22px;
}

.language-flag-en {
	background:
		linear-gradient(33deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
		linear-gradient(147deg, transparent 42%, #ffffff 42% 48%, #c8102e 48% 54%, #ffffff 54% 60%, transparent 60%),
		linear-gradient(90deg, transparent 38%, #ffffff 38% 62%, transparent 62%),
		linear-gradient(180deg, transparent 30%, #ffffff 30% 70%, transparent 70%),
		linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
		linear-gradient(180deg, transparent 39%, #c8102e 39% 61%, transparent 61%),
		#012169;
}

.language-flag-sp {
	background: linear-gradient(180deg, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.login-button {
	box-shadow: 0 12px 28px rgba(255, 215, 0, 0.22);
	height: 48px;
	white-space: nowrap;
}

.dark-hero {
	background: transparent;
	padding: 22px 0 42px;
}

.hero-frame {
	background:
		linear-gradient(90deg, rgba(11, 19, 32, 0.92) 0%, rgba(11, 19, 32, 0.76) 42%, rgba(11, 19, 32, 0.38) 100%),
		linear-gradient(180deg, rgba(11, 19, 32, 0.08), rgba(11, 19, 32, 0.82)),
		url("../images/hero-coast-spain.png") center / cover no-repeat;
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 18px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
	min-height: 430px;
	overflow: hidden;
	padding: 48px 22px 22px;
	position: relative;
}

.hero-content {
	max-width: 640px;
	position: relative;
	z-index: 2;
}

.hero-illustration {
	filter: drop-shadow(0 28px 46px rgba(45, 145, 255, 0.18)) drop-shadow(0 0 34px rgba(255, 215, 0, 0.12));
	margin: 30px auto 8px;
	max-width: 520px;
	position: relative;
	z-index: 2;
}

.hero-illustration img {
	animation: uahub-hero-float 7s ease-in-out infinite;
	display: block;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	width: 100%;
}

@keyframes uahub-hero-float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

.hero-content h1 {
	color: #f8fafc;
	font-size: clamp(2.45rem, 8vw, 4.1rem);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 0 16px;
	text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.hero-content p {
	color: #e6edf3;
	font-size: clamp(1.04rem, 3vw, 1.35rem);
	line-height: 1.45;
	margin: 0 0 28px;
	max-width: 590px;
}

.hero-add-button {
	gap: 10px;
	min-width: 228px;
}

.hero-add-button span {
	font-size: 1.25rem;
	line-height: 1;
}

.hero-media-placeholder {
	align-items: center;
	background: rgba(148, 163, 184, 0.18);
	border-radius: 12px;
	display: none;
	height: 76px;
	justify-content: center;
	position: absolute;
	right: 30%;
	top: 49%;
	transform: translate(50%, -50%);
	width: 76px;
	z-index: 1;
}

.hero-media-placeholder span {
	border-bottom: 20px solid rgba(230, 237, 243, 0.28);
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	height: 0;
	position: relative;
	width: 48px;
}

.hero-media-placeholder span::before {
	background: rgba(230, 237, 243, 0.28);
	border-radius: 50%;
	content: "";
	height: 10px;
	position: absolute;
	right: 4px;
	top: -20px;
	width: 10px;
}

.hero-social {
	bottom: 22px;
	display: flex;
	gap: 12px;
	position: absolute;
	right: 22px;
	z-index: 2;
}

.social-link {
	align-items: center;
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	color: #ffffff;
	display: inline-flex;
	font-weight: 950;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.social-telegram {
	background: #28a8ea;
}

.social-instagram {
	background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
}

.social-facebook {
	background: #1877f2;
	font-size: 1.35rem;
}

@media (min-width: 760px) {
	.dark-hero {
		padding-top: 24px;
	}

	.hero-frame {
		align-items: center;
		display: grid;
		gap: 30px;
		grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
		min-height: 470px;
		padding: 64px 44px 34px;
	}

	.hero-media-placeholder {
		display: none;
	}

	.hero-illustration {
		justify-self: end;
		margin: 0;
		max-width: 560px;
	}

	.hero-illustration img {
		max-height: 430px;
	}
}

@media (min-width: 1100px) {
	.hero-frame {
		grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
		padding: 74px 58px 42px;
	}

	.hero-illustration {
		max-width: 650px;
	}

	.hero-illustration img {
		max-height: 500px;
	}
}

@media (max-width: 759px) {
	.hero-frame {
		padding-bottom: 76px;
	}

	.hero-illustration {
		max-width: 92%;
	}

	.hero-illustration img {
		max-height: 300px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-illustration img {
		animation: none;
	}
}

@media (min-width: 1040px) {
	.header-shell {
		grid-template-columns: auto minmax(260px, 1fr);
		padding: 10px 16px;
	}

	.nav-toggle {
		display: none;
	}

	.header-controls {
		align-items: center;
		display: grid;
		grid-column: auto;
		grid-template-columns: minmax(260px, 1fr) 190px auto;
	}
}

@media (max-width: 1039px) {
	.header-controls {
		padding-top: 4px;
	}
}

/* Final brand/header overrides */
.site-logo.uahub-brand {
	background: rgba(9, 17, 31, 0.38);
	border: 1px solid rgba(45, 145, 255, 0.22);
	border-radius: 14px;
	min-height: 64px;
	padding: 5px 16px 5px 7px;
}

.site-logo .uahub-brand__logo {
	height: 38px;
	width: 38px;
}

.footer-logo-mark .uahub-brand__logo {
	height: 34px;
	width: 34px;
}

@media (min-width: 1040px) {
	.header-shell {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.header-controls {
		align-items: center;
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		grid-column: auto;
		justify-content: flex-end;
		min-width: 0;
	}

	.header-search {
		flex: 1 1 220px;
		max-width: 380px;
		min-width: 180px;
	}

	.header-city {
		flex: 0 0 170px;
	}

	.header-action-button,
	.logout-button {
		flex: 0 0 auto;
		justify-self: auto;
		width: auto;
	}
}

@media (min-width: 1040px) and (max-width: 1210px) {
	.site-logo .uahub-brand__logo {
		height: 36px;
		width: 36px;
	}

	.header-city {
		flex-basis: 155px;
	}

	.header-action-button {
		font-size: 0.92rem;
		padding-left: 12px;
		padding-right: 12px;
	}
}

@media (max-width: 639px) {
	.site-logo .uahub-brand__logo {
		height: 34px;
		width: 34px;
	}

	.site-logo.uahub-brand {
		min-height: 52px;
		padding: 5px 12px 5px 6px;
	}
}

/* Search-first hero refinements */
.dark-hero {
	padding: 42px 0 64px;
}

.hero-frame {
	padding: 64px 28px 88px;
}

.hero-content {
	max-width: 680px;
}

.hero-content h1 {
	margin-bottom: 20px;
}

.hero-content p {
	color: rgba(226, 237, 248, 0.78);
	margin-bottom: 30px;
}

.hero-platform-search {
	background: rgba(8, 15, 28, 0.78);
	border: 1px solid rgba(148, 163, 184, 0.28);
	border-radius: 16px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26), 0 0 32px rgba(45, 145, 255, 0.1);
	display: grid;
	gap: 10px;
	margin-bottom: 14px;
	max-width: 640px;
	padding: 10px;
}

.hero-platform-search input {
	background: transparent;
	border: 0;
	color: #f8fafc;
	min-height: 52px;
	outline: 0;
	padding: 0 14px;
	width: 100%;
}

.hero-platform-search input::placeholder {
	color: rgba(203, 213, 225, 0.72);
}

.hero-platform-search .button {
	min-height: 52px;
}

.hero-add-button {
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.28);
	box-shadow: none;
	color: #e6edf3;
	gap: 9px;
	min-height: 44px;
	min-width: 0;
	padding: 10px 16px;
}

.hero-add-button:hover {
	background: rgba(148, 163, 184, 0.16);
	border-color: rgba(255, 215, 0, 0.38);
}

@media (min-width: 640px) {
	.hero-platform-search {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (min-width: 760px) {
	.dark-hero {
		padding: 52px 0 74px;
	}

	.hero-frame {
		gap: 42px;
		padding: 84px 52px 70px;
	}

	.hero-content p {
		margin-bottom: 34px;
	}
}

@media (min-width: 1100px) {
	.dark-hero {
		padding: 64px 0 88px;
	}

	.hero-frame {
		gap: 54px;
		grid-template-columns: minmax(560px, 1fr) minmax(360px, 0.85fr);
		min-height: 560px;
		padding: 96px 70px 82px;
	}

	.hero-content {
		max-width: 760px;
	}

	.hero-content h1 {
		font-size: clamp(3.35rem, 5.4vw, 4.55rem);
		white-space: nowrap;
	}
}

@media (max-width: 639px) {
	.dark-hero {
		padding: 32px 0 54px;
	}

	.hero-frame {
		padding: 48px 22px 82px;
	}

	.hero-platform-search,
	.hero-platform-search .button,
	.hero-add-button {
		width: 100%;
	}
}

/* Unified dark marketplace theme */
:root {
	--color-blue: #1d4ed8;
	--color-blue-dark: #2563eb;
	--color-yellow: #ffd700;
	--color-yellow-dark: #e8bd00;
	--color-text: #e6edf3;
	--color-muted: #9ca9bc;
	--color-border: rgba(148, 163, 184, 0.22);
	--color-bg: #0b1320;
	--color-card: #111a2b;
	--color-card-2: #0f1828;
	--shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
	--radius: 12px;
}

body,
body.home {
	background:
		radial-gradient(circle at 12% 0, rgba(37, 99, 235, 0.22), transparent 28rem),
		radial-gradient(circle at 92% 14%, rgba(14, 165, 233, 0.12), transparent 24rem),
		#0b1320;
	color: var(--color-text);
}

.site-main {
	background: transparent;
}

.site-header {
	background: transparent;
	border: 0;
	padding: 14px 0;
}

.header-shell,
.hero-frame,
.taxonomy-card,
.listing-card,
.step-card,
.contact-card,
.entry-card,
.filters-panel,
.listing-form,
.cta-block,
.footer-panel {
	background: linear-gradient(145deg, rgba(17, 26, 43, 0.94), rgba(11, 19, 32, 0.92));
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.site-logo,
.footer-logo-mark {
	background: rgba(9, 17, 31, 0.92);
	border: 1px solid rgba(37, 99, 235, 0.32);
	border-radius: 12px;
	color: #ffd700;
	font-weight: 950;
	letter-spacing: 0;
	min-height: 56px;
	padding: 0 22px;
}

.site-logo-text strong,
.footer-logo-mark {
	color: #ffd700;
	font-size: 1.35rem;
	line-height: 1;
}

.site-logo-text strong span,
.footer-logo-mark span {
	color: #1d4ed8;
}

.header-search input,
.header-city select,
.language-switch {
	background: rgba(8, 15, 28, 0.78);
	border-color: rgba(148, 163, 184, 0.25);
}

.section,
.section-muted {
	background: transparent;
}

.archive-hero {
	background: transparent;
	padding: 42px 0 18px;
}

.archive-hero h1,
.section-heading h2,
.single-content h1,
.entry-card h1,
.step-card h3,
.listing-body h3,
.contact-card h2 {
	color: #f8fafc;
}

.section-heading p,
.listing-body p,
.step-card p,
.site-footer p,
.form-help,
.taxonomy-card small,
.empty-state {
	color: var(--color-muted);
}

.taxonomy-grid {
	background: rgba(8, 15, 28, 0.28);
	border: 1px solid rgba(148, 163, 184, 0.16);
	border-radius: 16px;
	gap: 12px;
	padding: 12px;
}

.taxonomy-card {
	align-items: center;
	border-radius: 10px;
	box-shadow: none;
	min-height: 78px;
	padding: 14px;
}

.taxonomy-card:hover,
.listing-card:hover {
	border-color: rgba(255, 215, 0, 0.34);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.taxonomy-card strong {
	color: #f8fafc;
}

.taxonomy-icon {
	background: rgba(29, 78, 216, 0.18);
	border-radius: 10px;
	color: #7db0ff;
	height: 42px;
	position: relative;
	width: 42px;
}

.taxonomy-icon::before,
.taxonomy-icon::after {
	content: "";
	position: absolute;
}

.taxonomy-icon-briefcase::before {
	border: 2px solid currentColor;
	border-radius: 5px;
	height: 16px;
	width: 20px;
}

.taxonomy-icon-briefcase::after {
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 5px 5px 0 0;
	height: 6px;
	top: 10px;
	width: 10px;
}

.taxonomy-icon-home {
	background: rgba(16, 185, 129, 0.16);
	color: #34d399;
}

.taxonomy-icon-home::before {
	border-bottom: 12px solid currentColor;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	top: 10px;
}

.taxonomy-icon-home::after {
	background: currentColor;
	border-radius: 3px;
	height: 13px;
	top: 22px;
	width: 18px;
}

.taxonomy-icon-car,
.taxonomy-icon-calendar {
	background: rgba(245, 158, 11, 0.16);
	color: #fbbf24;
}

.taxonomy-icon-car::before {
	border: 2px solid currentColor;
	border-radius: 6px;
	height: 13px;
	width: 24px;
}

.taxonomy-icon-car::after {
	border: 3px solid currentColor;
	border-left-color: transparent;
	border-right-color: transparent;
	bottom: 11px;
	height: 4px;
	width: 27px;
}

.taxonomy-icon-service {
	background: rgba(139, 92, 246, 0.18);
	color: #a78bfa;
}

.taxonomy-icon-service::before {
	background: currentColor;
	border-radius: 5px;
	height: 4px;
	left: 12px;
	top: 23px;
	transform: rotate(-45deg);
	transform-origin: center;
	width: 18px;
}

.taxonomy-icon-service::after {
	border: 2px solid currentColor;
	border-radius: 50%;
	height: 9px;
	left: 19px;
	top: 12px;
	width: 9px;
}

.taxonomy-icon-shop {
	background: rgba(249, 115, 22, 0.16);
	color: #fb923c;
}

.taxonomy-icon-shop::before {
	border: 2px solid currentColor;
	border-radius: 5px;
	height: 19px;
	width: 18px;
}

.taxonomy-icon-shop::after {
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	height: 7px;
	top: 10px;
	width: 10px;
}

.taxonomy-icon-calendar::before {
	border: 2px solid currentColor;
	border-radius: 5px;
	height: 20px;
	width: 20px;
}

.taxonomy-icon-calendar::after {
	background: currentColor;
	box-shadow: 8px 0 0 currentColor;
	height: 3px;
	top: 13px;
	width: 3px;
}

.taxonomy-icon-users {
	background: rgba(244, 63, 94, 0.16);
	color: #fb7185;
}

.taxonomy-icon-users::before {
	border: 2px solid currentColor;
	border-radius: 50%;
	height: 9px;
	top: 10px;
	width: 9px;
}

.taxonomy-icon-users::after {
	border: 2px solid currentColor;
	border-radius: 12px 12px 4px 4px;
	height: 10px;
	top: 23px;
	width: 22px;
}

.taxonomy-icon-building {
	background: rgba(6, 182, 212, 0.16);
	color: #22d3ee;
}

.taxonomy-icon-building::before {
	border: 2px solid currentColor;
	border-radius: 4px;
	height: 24px;
	width: 18px;
}

.taxonomy-icon-building::after {
	background: currentColor;
	box-shadow: 7px 0 0 currentColor, 0 7px 0 currentColor, 7px 7px 0 currentColor;
	height: 3px;
	top: 12px;
	width: 3px;
}

.listing-media {
	background: linear-gradient(135deg, rgba(29, 78, 216, 0.28), rgba(255, 215, 0, 0.18));
}

.listing-media span {
	color: #ffd700;
}

.listing-meta span,
.quick-links a {
	background: rgba(148, 163, 184, 0.14);
	color: #cbd5e1;
}

.filters-panel input,
.filters-panel select,
.listing-form input,
.listing-form select,
.listing-form textarea {
	background: rgba(8, 15, 28, 0.72);
	border-color: rgba(148, 163, 184, 0.24);
	color: #e6edf3;
}

.entry-content {
	color: #dbe5f4;
}

.empty-state {
	background: rgba(148, 163, 184, 0.1);
	border: 1px solid rgba(148, 163, 184, 0.16);
}

.button-outline-yellow {
	background: transparent;
	border: 1px solid rgba(255, 215, 0, 0.72);
	color: #ffd700;
}

.button-outline-yellow:hover {
	background: rgba(255, 215, 0, 0.08);
}

.home-cta-block {
	align-items: center;
	background:
		radial-gradient(circle at 88% 50%, rgba(255, 215, 0, 0.16), transparent 18rem),
		linear-gradient(145deg, rgba(17, 26, 43, 0.98), rgba(11, 19, 32, 0.95));
	justify-items: center;
	text-align: center;
}

.home-cta-block h2 {
	font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.site-footer {
	background: transparent;
	padding: 28px 0 34px;
}

.footer-panel {
	padding: 28px;
}

.footer-top {
	display: grid;
	gap: 28px;
}

.footer-brand p {
	max-width: 310px;
}

.footer-logo-mark {
	align-items: center;
	display: inline-flex;
	margin-bottom: 16px;
	min-height: 0;
	padding: 14px 18px;
}

.footer-column {
	display: grid;
	gap: 10px;
}

.footer-column h2 {
	color: #cbd5e1;
	font-size: 0.86rem;
	letter-spacing: 0;
	margin: 0 0 4px;
	text-transform: uppercase;
}

.footer-column a,
.footer-actions a {
	color: var(--color-muted);
	font-weight: 700;
}

.footer-column a:hover,
.footer-actions a:hover {
	color: #ffd700;
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.site-footer .footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(148, 163, 184, 0.18);
	display: grid;
	gap: 18px;
	margin-top: 28px;
	padding-top: 20px;
}

.site-footer .footer-bottom p + p {
	font-size: 0.9rem;
	margin-top: 6px;
}

.footer-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.support-button {
	background: #ffd700;
	border-radius: 9px;
	color: #2b2200 !important;
	padding: 9px 13px;
}

.social-link img {
	height: 20px;
	width: 20px;
}

@media (min-width: 640px) {
	.taxonomy-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

	.home-cta-block {
		grid-template-columns: 1fr;
		padding: 46px 34px;
	}

	.footer-top {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.site-footer .footer-bottom {
		grid-template-columns: 1fr auto;
	}
}

/* Keep the hero headline on one line on desktop layouts. */
@media (min-width: 960px) {
	.hero-frame {
		grid-template-columns: minmax(590px, 1.1fr) minmax(320px, 0.9fr);
	}

	.hero-content {
		max-width: 790px;
	}

	.hero-content h1 {
		font-size: clamp(3rem, 4.55vw, 4rem);
		white-space: nowrap;
	}

	.hero-illustration {
		max-width: 560px;
	}
}

@media (min-width: 1240px) {
	.hero-frame {
		grid-template-columns: minmax(650px, 1fr) minmax(380px, 0.82fr);
	}
}

/* Compact auth UI */
.auth-page-shell {
	padding: 42px 0 72px;
}

.auth-page-shell .container {
	display: flex;
	justify-content: center;
}

.auth-card {
	background:
		radial-gradient(circle at 50% -12%, rgba(37, 99, 235, 0.28), transparent 18rem),
		linear-gradient(180deg, rgba(18, 32, 56, 0.98), rgba(13, 25, 45, 0.98));
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 48px rgba(45, 145, 255, 0.13);
	color: #f8fafc;
	padding: 32px;
	width: 100%;
}

.auth-card-compact {
	max-width: 420px;
}

.auth-card .social-login-box {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	gap: 24px;
	margin: 0;
	max-width: none;
	padding: 0;
}

.auth-card .social-login-box h2 {
	color: #ffffff;
	font-size: clamp(1.75rem, 6vw, 2rem);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0;
}

.auth-card .social-login-actions {
	gap: 12px;
}

.auth-card .social-login-button,
.auth-card .social-login-shortcode {
	background: rgba(31, 55, 91, 0.82);
	border: 1px solid rgba(76, 130, 201, 0.5);
	border-radius: 14px;
	box-shadow: none;
	color: #ffffff;
	font-size: 0.96rem;
	font-weight: 800;
	min-height: 56px;
	padding: 0 18px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.auth-card .social-login-button:hover,
.auth-card .social-login-shortcode:hover {
	background: rgba(36, 67, 112, 0.94);
	border-color: rgba(74, 144, 255, 0.78);
	box-shadow: 0 14px 34px rgba(37, 99, 235, 0.22);
	transform: translateY(-1px);
}

.auth-card .social-login-button span {
	background: transparent;
	border-radius: 0;
	font-family: Arial, sans-serif;
	font-size: 1.25rem;
	height: 24px;
	width: 24px;
}

.auth-card .social-login-google span {
	color: #4285f4;
	text-shadow: 0.06em 0 #34a853, 0.12em 0 #fbbc05, 0.18em 0 #ea4335;
}

.auth-card .social-login-facebook span {
	background: transparent;
	color: #2d91ff;
	font-size: 1.35rem;
}

.auth-divider {
	align-items: center;
	color: rgba(203, 213, 225, 0.58);
	display: grid;
	font-size: 0.92rem;
	gap: 14px;
	grid-template-columns: 1fr auto 1fr;
	margin: 24px 0 20px;
}

.auth-divider::before,
.auth-divider::after {
	background: rgba(148, 163, 184, 0.26);
	content: "";
	height: 1px;
}

.auth-tabs {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.auth-tab {
	border-radius: 8px;
	color: rgba(203, 213, 225, 0.78);
	font-weight: 800;
	padding: 9px 12px;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.auth-tab:hover {
	color: #ffffff;
	transform: translateY(-1px);
}

.auth-tab.is-active {
	background: rgba(37, 99, 235, 0.24);
	color: #ffffff;
}

.auth-notice {
	border-radius: 12px;
	font-size: 0.84rem;
	line-height: 1.35;
	margin: 0 0 16px;
	padding: 12px 13px;
	white-space: nowrap;
}

.auth-form-new {
	display: grid;
	gap: 14px;
}

.auth-field {
	display: grid;
	gap: 7px;
}

.auth-field label {
	color: #f8fafc;
	font-size: 0.95rem;
	font-weight: 800;
}

.auth-field input {
	background: rgba(8, 18, 34, 0.84);
	border: 1px solid rgba(76, 130, 201, 0.46);
	border-radius: 12px;
	color: #f8fafc;
	font-size: 1rem;
	min-height: 56px;
	outline: 0;
	padding: 0 13px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	width: 100%;
}

.auth-field input::placeholder {
	color: rgba(148, 163, 184, 0.58);
}

.auth-field input:focus {
	background: rgba(8, 18, 34, 0.98);
	border-color: rgba(45, 145, 255, 0.88);
	box-shadow: 0 0 0 3px rgba(45, 145, 255, 0.16);
}

.auth-password-wrap {
	position: relative;
}

.auth-password-wrap input {
	padding-right: 46px;
}

.auth-password-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: rgba(203, 213, 225, 0.68);
	cursor: pointer;
	display: inline-flex;
	height: 34px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	transition: color 0.2s ease, background-color 0.2s ease;
	width: 34px;
}

.auth-password-toggle:hover,
.auth-password-toggle.is-visible {
	background: rgba(148, 163, 184, 0.1);
	color: #f8fafc;
}

.auth-password-toggle svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 18px;
}

.auth-submit {
	border-radius: 14px;
	color: #111827;
	font-weight: 900;
	margin-top: 2px;
	min-height: 56px;
	width: 100%;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.auth-submit:hover {
	box-shadow: 0 16px 34px rgba(255, 215, 0, 0.24);
	transform: translateY(-1px);
}

.auth-bottom-text {
	color: rgba(203, 213, 225, 0.78);
	font-size: 0.96rem;
	margin: 20px 0 0;
}

.auth-bottom-text a {
	color: #4ea1ff;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.auth-bottom-text a:hover {
	color: #ffd700;
}

@media (max-width: 520px) {
	.auth-page-shell {
		padding: 28px 0 54px;
	}

	.auth-card {
		border-radius: 20px;
		padding: 24px 18px;
	}

	.auth-card .social-login-box h2 {
		font-size: 1.55rem;
	}

	.auth-card .social-login-button,
	.auth-card .social-login-shortcode {
		min-height: 52px;
	}

	.auth-tabs {
		gap: 6px;
	}

	.auth-tab {
		padding: 9px 10px;
	}

	.auth-notice {
		white-space: normal;
	}
}

/* Complete profile page */
.complete-profile-section {
	padding: 34px 0 76px;
}

.complete-profile-layout {
	display: flex;
	justify-content: center;
	max-width: 840px;
}

.complete-profile-card {
	background:
		radial-gradient(circle at 90% 8%, rgba(37, 99, 235, 0.2), transparent 18rem),
		linear-gradient(180deg, rgba(18, 32, 56, 0.98), rgba(13, 25, 45, 0.98));
	border: 1px solid rgba(45, 145, 255, 0.34);
	border-radius: 24px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 54px rgba(45, 145, 255, 0.12);
	color: #f8fafc;
	display: grid;
	gap: 20px;
	max-width: 760px;
	padding: 34px;
	width: 100%;
}

.complete-profile-header h1 {
	color: #ffffff;
	font-size: clamp(1.8rem, 5vw, 2.25rem);
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 0 10px;
}

.complete-profile-header p {
	color: rgba(191, 213, 240, 0.82);
	font-size: 1rem;
	line-height: 1.55;
	margin: 0;
}

.complete-profile-notice {
	border-radius: 14px;
	margin: 0;
	padding: 13px 16px;
}

.complete-profile-field {
	display: grid;
	gap: 10px;
}

.complete-profile-field label,
.complete-profile-field legend {
	color: #f8fafc;
	font-size: 0.96rem;
	font-weight: 850;
}

.complete-profile-field input[type="text"],
.complete-profile-field select,
.complete-profile-field textarea {
	background: rgba(8, 18, 34, 0.84);
	border: 1px solid rgba(76, 130, 201, 0.52);
	border-radius: 16px;
	color: #f8fafc;
	font-size: 1rem;
	outline: 0;
	padding: 0 18px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
	width: 100%;
}

.complete-profile-field input[type="text"],
.complete-profile-field select {
	min-height: 56px;
}

.complete-profile-field textarea {
	line-height: 1.5;
	min-height: 128px;
	padding-top: 16px;
	resize: vertical;
}

.complete-profile-field select {
	appearance: auto;
}

.complete-profile-field input:focus,
.complete-profile-field select:focus,
.complete-profile-field textarea:focus {
	background: rgba(8, 18, 34, 0.98);
	border-color: rgba(45, 145, 255, 0.9);
	box-shadow: 0 0 0 3px rgba(45, 145, 255, 0.16);
}

.complete-profile-field > span {
	color: rgba(191, 213, 240, 0.74);
	font-size: 0.88rem;
}

.complete-profile-card .account-type-fieldset {
	display: grid;
	gap: 10px;
}

.complete-profile-card .account-type-options {
	display: grid;
	gap: 12px;
}

.complete-profile-card .account-type-option span {
	align-items: center;
	background: rgba(8, 18, 34, 0.72);
	border: 1px solid rgba(76, 130, 201, 0.52);
	border-radius: 16px;
	color: #f8fafc;
	display: flex;
	font-size: 0.96rem;
	justify-content: center;
	min-height: 56px;
	padding: 12px 16px;
}

.complete-profile-card .account-type-option input:checked + span {
	background: rgba(255, 215, 0, 0.06);
	border-color: #ffd700;
	box-shadow: 0 0 0 1px #ffd700, 0 0 26px rgba(255, 215, 0, 0.12);
	color: #ffffff;
}

.profile-photo-current {
	align-items: center;
	display: flex;
	gap: 12px;
}

.profile-photo-current img,
.profile-photo-current > span {
	align-items: center;
	background: rgba(37, 99, 235, 0.18);
	border-radius: 16px;
	display: inline-flex;
	flex: 0 0 auto;
	height: 64px;
	justify-content: center;
	overflow: hidden;
	width: 64px;
}

.profile-photo-current img {
	object-fit: cover;
}

.profile-photo-current svg,
.upload-zone-icon svg {
	fill: none;
	height: 30px;
	stroke: rgba(203, 213, 225, 0.82);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 30px;
}

.profile-photo-current p {
	color: rgba(191, 213, 240, 0.78);
	font-size: 0.88rem;
	margin: 0;
}

.complete-upload-zone {
	align-items: center;
	background: rgba(8, 18, 34, 0.62);
	border: 2px dashed rgba(45, 145, 255, 0.42);
	border-radius: 18px;
	color: #f8fafc;
	display: grid;
	grid-template-columns: auto 1fr;
	min-height: 86px;
	padding: 18px;
	text-align: left;
}

.complete-upload-zone:hover {
	border-color: rgba(255, 215, 0, 0.7);
	box-shadow: 0 0 28px rgba(45, 145, 255, 0.12);
}

.upload-zone-icon {
	align-items: center;
	background: rgba(37, 99, 235, 0.18);
	border-radius: 14px;
	display: inline-flex;
	grid-row: span 2;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.complete-upload-zone span:not(.upload-zone-icon) {
	font-weight: 850;
}

.complete-upload-zone small {
	color: rgba(191, 213, 240, 0.74);
	font-size: 0.86rem;
}

.complete-checkboxes {
	display: grid;
	gap: 12px;
}

.complete-checkboxes label {
	align-items: center;
	background: rgba(8, 18, 34, 0.64);
	border: 1px solid rgba(76, 130, 201, 0.42);
	border-radius: 16px;
	color: #f8fafc;
	display: flex;
	font-weight: 760;
	gap: 12px;
	min-height: 56px;
	padding: 14px 16px;
}

.complete-checkboxes input {
	accent-color: #ffd700;
	flex: 0 0 auto;
	height: 16px;
	width: 16px;
}

.complete-profile-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 4px;
}

.complete-profile-actions .button {
	border-radius: 14px;
	min-height: 56px;
	min-width: 220px;
}

@media (min-width: 720px) {
	.complete-profile-card .account-type-options {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.complete-profile-section {
		padding: 24px 0 54px;
	}

	.complete-profile-card {
		border-radius: 20px;
		padding: 24px 18px;
	}

	.complete-upload-zone {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.upload-zone-icon {
		grid-row: auto;
		justify-self: center;
	}

	.complete-profile-actions,
	.complete-profile-actions .button {
		width: 100%;
	}
}

/* Mobile homepage polish */
@media (max-width: 639px) {
	.site-header {
		padding: 10px 0;
	}

	.header-shell {
		border-radius: 14px;
		gap: 10px;
		grid-template-columns: auto 1fr auto;
		min-height: 64px;
		padding: 8px;
		width: calc(100% - 28px);
	}

	.site-logo.uahub-brand {
		justify-self: start;
		min-height: 48px;
		padding: 5px 12px 5px 6px;
		width: auto;
	}

	.site-logo .uahub-brand__logo {
		height: 34px;
		width: 34px;
	}

	.nav-toggle {
		border-radius: 14px;
		grid-column: 3;
		height: 48px;
		width: 48px;
	}

	.header-shell > .language-switch {
		grid-column: 2;
		justify-self: end;
	}

	.header-shell > .language-switcher {
		grid-column: 2;
		justify-self: end;
	}

	.language-switch {
		padding: 0;
		width: 48px;
	}

	.language-switch__label {
		display: none;
	}

	.language-menu {
		min-width: 42px;
	}

	.language-menu a {
		grid-template-columns: 22px;
		justify-content: center;
		padding: 8px;
	}

	.language-menu .language-code {
		display: none;
	}

	.dark-hero {
		padding: 18px 0 44px;
	}

	.hero-frame {
		border-radius: 14px;
		min-height: 0;
		padding: 38px 22px 28px;
	}

	.hero-content h1 {
		font-size: clamp(2.18rem, 12vw, 3rem);
		line-height: 1.08;
		margin-bottom: 18px;
	}

	.hero-content p {
		font-size: 1rem;
		line-height: 1.5;
		margin-bottom: 24px;
	}

	.hero-platform-search {
		border-radius: 14px;
		margin-bottom: 12px;
	}

	.hero-illustration {
		display: none;
	}

	.hero-social {
		margin-top: 18px;
		position: static;
	}
}

.site-header .site-logo.uahub-brand .uahub-brand__text {
	color: #ffffff;
	text-shadow: none;
}

@media (max-width: 639px) {
	.hero-content h1 {
		font-size: clamp(1.8rem, 8.6vw, 2.28rem);
		line-height: 1.05;
		white-space: nowrap;
	}

	body.uahub-lang-en .hero-content h1,
	body.uahub-lang-es .hero-content h1 {
		font-size: clamp(1.58rem, 7vw, 2rem);
		line-height: 1.12;
		overflow-wrap: normal;
		white-space: normal;
	}

	.section-heading {
		align-items: flex-start;
		display: grid;
		gap: 8px;
	}

	.section-heading h2 {
		font-size: clamp(1.45rem, 7vw, 1.9rem);
	}

	.section-heading .text-link {
		font-size: 0.92rem;
		white-space: nowrap;
	}

	.home-cta-block h2,
	.home-cta-block p,
	.home-cta-block .button {
		white-space: nowrap;
	}

	.home-cta-block h2 {
		font-size: clamp(1.35rem, 6.4vw, 1.75rem);
	}

	.home-cta-block p {
		font-size: clamp(0.9rem, 3.8vw, 1rem);
	}

	.home-cta-block .button {
		font-size: clamp(0.9rem, 4vw, 1rem);
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* Footer mobile polish */
.footer-logo-mark.uahub-brand .uahub-brand__text {
	color: #ffffff;
	text-shadow: none;
}

@media (max-width: 639px) {
	.footer-panel {
		padding: 22px 16px;
	}

	.footer-top {
		gap: 18px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.footer-brand p {
		max-width: none;
	}

	.footer-column {
		align-content: start;
		background: rgba(8, 18, 34, 0.62);
		border: 1px solid rgba(76, 130, 201, 0.3);
		border-radius: 16px;
		gap: 11px;
		min-width: 0;
		min-height: 174px;
		padding: 16px 13px;
	}

	.footer-column h2 {
		color: #f8fafc;
		font-size: 0.8rem;
		line-height: 1.2;
		margin-bottom: 3px;
	}

	.footer-column a {
		color: #c9d6e8;
		font-size: clamp(0.86rem, 3.65vw, 0.98rem);
		line-height: 1.28;
		overflow-wrap: anywhere;
	}

	.site-footer .footer-bottom {
		align-items: start;
		gap: 16px;
		margin-top: 22px;
		padding-top: 18px;
	}

	.site-footer .footer-bottom p {
		line-height: 1.55;
	}

	.footer-actions {
		background: transparent;
		border: 0;
		border-radius: 0;
		display: block;
		padding: 0;
		width: 100%;
	}

	.footer-actions a {
		align-items: center;
		display: inline-flex;
		font-size: 0.9rem;
		line-height: 1.25;
		min-height: 32px;
	}

	.footer-actions .support-button {
		border-radius: 12px;
		justify-content: center;
		min-height: 48px;
		width: 100%;
	}
}

/* Static informational pages */
.static-page-hero {
	padding: 38px 0 18px;
}

.static-page-card {
	background:
		radial-gradient(circle at 84% 10%, rgba(255, 215, 0, 0.12), transparent 18rem),
		linear-gradient(145deg, rgba(17, 26, 43, 0.96), rgba(11, 19, 32, 0.94));
	border: 1px solid rgba(148, 163, 184, 0.22);
	border-radius: 16px;
	box-shadow: var(--shadow-soft);
	padding: 34px;
}

.static-page-card h1 {
	color: #f8fafc;
	font-size: clamp(2rem, 6vw, 3.35rem);
	line-height: 1.08;
	margin: 0 0 14px;
	max-width: 860px;
}

.static-page-card > p:not(.eyebrow) {
	color: #c9d6e8;
	font-size: clamp(1rem, 2.4vw, 1.2rem);
	line-height: 1.6;
	margin: 0;
	max-width: 760px;
}

.static-page-layout {
	display: grid;
	gap: 18px;
}

.static-feature-grid {
	display: grid;
	gap: 14px;
}

.static-feature-card {
	align-items: center;
	background: rgba(8, 18, 34, 0.66);
	border: 1px solid rgba(76, 130, 201, 0.3);
	border-radius: 14px;
	display: flex;
	gap: 14px;
	padding: 18px;
}

.static-feature-card span {
	align-items: center;
	background: #ffd700;
	border-radius: 10px;
	color: #1b1600;
	display: inline-flex;
	flex: 0 0 auto;
	font-weight: 900;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.static-feature-card p {
	color: #e6edf3;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
}

.static-page-content {
	padding: 26px;
}

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

	.static-feature-card {
		align-items: flex-start;
		display: grid;
	}
}

@media (max-width: 639px) {
	.static-page-hero {
		padding: 24px 0 10px;
	}

	.static-page-card {
		border-radius: 14px;
		padding: 24px 20px;
	}

	.static-page-card h1 {
		font-size: clamp(1.75rem, 8vw, 2.28rem);
	}
}

/* Account profile */
.profile-account-layout {
	max-width: 880px;
}

.profile-account-card {
	padding: 26px;
}

.profile-account-head {
	align-items: center;
	display: flex;
	gap: 16px;
	margin-bottom: 22px;
}

.profile-account-head img,
.profile-account-head > span {
	align-items: center;
	background: rgba(37, 99, 235, 0.18);
	border: 1px solid rgba(76, 130, 201, 0.36);
	border-radius: 18px;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.55rem;
	font-weight: 900;
	height: 72px;
	justify-content: center;
	width: 72px;
}

.profile-account-head img {
	object-fit: cover;
}

.profile-account-head h2 {
	color: #f8fafc;
	margin: 0 0 4px;
}

.profile-account-head p,
.profile-account-bio span,
.profile-account-grid span {
	color: var(--color-muted);
	margin: 0;
}

.profile-account-grid {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.profile-account-grid div,
.profile-account-bio {
	background: rgba(8, 18, 34, 0.62);
	border: 1px solid rgba(76, 130, 201, 0.26);
	border-radius: 14px;
	padding: 14px;
}

.profile-account-grid span,
.profile-account-bio span {
	display: block;
	font-size: 0.82rem;
	font-weight: 800;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.profile-account-grid strong,
.profile-account-bio p {
	color: #f8fafc;
	margin: 0;
}

.profile-account-flags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.profile-account-flags span {
	background: rgba(148, 163, 184, 0.12);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 999px;
	color: #dbe5f4;
	font-size: 0.88rem;
	font-weight: 800;
	padding: 8px 11px;
}

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