button,
input,
optgroup,
select,
textarea {
	font-family: 'Joe Font';
}

html,
body {
	min-height: 100%;
}

body.joe_auth-page {
	position: relative;
	padding-bottom: 0 !important;
	background:
		radial-gradient(circle at top left, rgba(92, 148, 255, 0.12), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 166, 0, 0.08), transparent 26%),
		linear-gradient(180deg, #f8fafc 0%, #eff4fb 100%) !important;
}

body.joe_auth-page::before,
body.joe_auth-page::after {
	content: "";
	position: fixed;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(8px);
	z-index: 0;
}

body.joe_auth-page::before {
	width: 280px;
	height: 280px;
	top: -90px;
	left: -120px;
	background: rgba(163, 191, 250, 0.28);
}

body.joe_auth-page::after {
	width: 220px;
	height: 220px;
	right: -80px;
	bottom: 20px;
	background: rgba(255, 203, 129, 0.22);
}

body.joe_auth-page .joe_header,
body.joe_auth-page .joe_footer,
body.joe_auth-page .joe_action,
body.joe_auth-page .footer-tabbar,
body.joe_auth-page #cc-myssl-seal,
body.joe_auth-page .joe_header__slideout,
body.joe_auth-page .joe_header__mask,
body.joe_auth-page #joe-custom-background {
	display: none !important;
}

body.joe_auth-page #Joe {
	position: relative;
	min-height: 100vh;
	z-index: 1;
}

.joe_auth {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 48px 20px;
}

.joe_auth__shell {
	width: 100%;
	max-width: 470px;
}

.joe_auth__panel {
	padding: 36px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid #dbe4f0;
	border-radius: 28px;
	box-shadow:
		0 30px 90px rgba(15, 23, 42, 0.10),
		0 6px 18px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(18px);
}

.joe_auth__header {
	margin-bottom: 28px;
}

.joe_auth__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	margin-bottom: 16px;
	border-radius: 999px;
	background: #f3f7ff;
	color: #4f78c7;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.joe_auth__header h1 {
	margin: 0 0 10px;
	font-size: clamp(1.95rem, 4.8vw, 2.55rem);
	line-height: 1.1;
	font-weight: 700;
	color: #0f172a;
}

.joe_auth__header p {
	margin: 0;
	color: #64748b;
	line-height: 1.7;
	font-size: 15px;
}

.joe_auth__form {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.joe_auth__field {
	display: grid;
	gap: 10px;
	min-width: 0;
}

.joe_auth__label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.joe_auth__label-row label {
	margin: 0;
	color: #111827;
	font-weight: 700;
	font-size: 14px;
}

.joe_auth__label-row a {
	color: #64748b;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.25s ease;
}

.joe_auth__label-row a:hover,
.joe_auth__meta a:hover {
	color: #2563eb;
}

.joe_auth__input {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: 56px;
	padding: 0 18px;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #d9e2f0;
	border-radius: 16px !important;
	background: #fff;
	color: #0f172a;
	font-size: 15px;
	line-height: 56px;
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.joe_auth__input:focus {
	border-color: #8bb3ff;
	box-shadow: 0 0 0 4px rgba(96, 146, 239, 0.14);
}

.joe_auth__password {
	position: relative;
	min-width: 0;
}

.joe_auth__password .joe_auth__input {
	padding-right: 54px;
}

.joe_auth__toggle {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	background: transparent;
	color: #94a3b8;
	font-size: 16px;
	cursor: pointer;
	transition: color 0.25s ease;
}

.joe_auth__toggle:hover {
	color: #2563eb;
}

.joe_auth__suggestion {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin-top: 8px;
	padding: 6px 10px;
	border: 1px solid #c8d7ee;
	border-radius: 999px;
	background: #f8fafc;
	color: #2563eb;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}

.joe_auth__suggestion:hover {
	border-color: #8bb3ff;
	background: #eef4ff;
}

.joe_auth__suggestion[hidden] {
	display: none !important;
}

.joe_auth__append {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	min-width: 0;
}

.joe_auth__send {
	box-sizing: border-box;
	height: 56px;
	padding: 0 18px;
	border: 1px solid #d9e2f0;
	border-radius: 16px;
	background: #f8fafc;
	color: #0f172a;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition:
		border-color 0.25s ease,
		background-color 0.25s ease,
		color 0.25s ease;
}

.joe_auth__send:hover:not([disabled]) {
	border-color: #bfd2f7;
	background: #eef4ff;
	color: #2563eb;
}

.joe_auth__send[disabled] {
	opacity: 0.65;
	cursor: not-allowed;
}

.joe_auth__turnstile {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	padding: 10px;
	border: 1px solid #d9e2f0;
	border-radius: 18px;
	background: #fff;
	min-height: 88px;
}

#joe-turnstile {
	width: 100%;
	max-width: 100%;
	min-height: 65px;
}

#joe-turnstile iframe {
	max-width: 100%;
}

.joe_auth__submit {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 56px;
	padding: 0 20px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(180deg, #cfe1ff 0%, #bdd4ff 100%);
	color: #0f172a;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 14px 30px rgba(102, 147, 232, 0.24);
	cursor: pointer;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		opacity 0.25s ease;
}

.joe_auth__submit:hover:not([disabled]) {
	transform: translateY(-1px);
	box-shadow: 0 18px 36px rgba(102, 147, 232, 0.28);
}

.joe_auth__submit[disabled] {
	opacity: 0.68;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.joe_auth__alert {
	padding: 14px 16px;
	border-radius: 18px;
	border: 1px solid #fed7aa;
	background: #fff7ed;
	color: #9a3412;
	line-height: 1.7;
	font-size: 14px;
}

.joe_auth__meta {
	margin: 24px 0 0;
	text-align: center;
	color: #64748b;
	font-size: 15px;
}

.joe_auth__meta a {
	color: #1d4ed8;
	font-weight: 700;
	text-decoration: none;
}

.joe_auth__legal {
	margin: 18px auto 0;
	max-width: 360px;
	text-align: center;
	color: #94a3b8;
	font-size: 13px;
	line-height: 1.8;
}

@media (max-width: 640px) {
	.joe_auth {
		padding: 28px 16px;
	}

	.joe_auth__panel {
		padding: 24px 18px;
		border-radius: 24px;
	}

	.joe_auth__append {
		grid-template-columns: 1fr;
	}

	.joe_auth__send,
	.joe_auth__submit,
	.joe_auth__input {
		height: 52px;
		line-height: 52px;
	}

	.joe_auth__turnstile {
		padding: 8px;
		border-radius: 16px;
	}

	.joe_auth__header h1 {
		font-size: 1.85rem;
	}
}

@media (max-width: 360px) {
	.joe_auth {
		padding-inline: 12px;
	}

	.joe_auth__panel {
		padding-inline: 14px;
	}

	.joe_auth__input {
		padding-inline: 14px;
	}

	.joe_auth__password .joe_auth__input {
		padding-right: 48px;
	}
}

body.joe_profile-page {
	--profile-bg: #f5f7fb;
	--profile-card: #ffffff;
	--profile-primary: #2f6bff;
	--profile-primary-dark: #245de4;
	--profile-primary-soft: #eef4ff;
	--profile-text: #1f2937;
	--profile-muted: #7b889d;
	--profile-line: #e7edf6;
	--profile-shadow: 0 10px 28px rgba(45, 63, 97, 0.06);
	background:
		radial-gradient(circle at top left, rgba(113, 164, 255, 0.14), transparent 22%),
		radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.08), transparent 26%),
		linear-gradient(180deg, #fbfdff 0%, #f5f7fb 100%) !important;
}

body.joe_profile-page #Joe {
	padding: 22px 0 40px;
}

@media (min-width: 769px) {
	body.joe_profile-page.joe-shell-layout #Joe {
		padding-top: calc(var(--joe-shell-topbar, 86px) + 24px);
	}

	body.joe_profile-page.joe-shell-layout .joe_profile {
		min-height: calc(100vh - var(--joe-shell-topbar, 86px) - 64px);
	}

	body.joe_profile-page.joe-shell-layout .joe_profile__layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}

	body.joe_profile-page.joe-shell-layout .joe_profile__sidebar {
		display: none;
	}
}

.joe_profile {
	min-height: calc(100vh - 140px);
}

.joe_profile.is-switching .joe_profile__main {
	opacity: 0.58;
	transition: opacity 0.18s ease;
	pointer-events: none;
}

.joe_profile.is-switching .joe_profile__sidebar {
	pointer-events: none;
}

.joe_profile__layout {
	display: grid;
	width: 100%;
	grid-template-columns: 214px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

@media (min-width: 1025px) {
	body.joe_profile-page:not(.joe-shell-layout) .joe_profile__layout {
		gap: 55px;
	}
}

.joe_profile__sidebar {
	position: sticky;
	top: 90px;
}

.joe_profile__main {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 18px;
	width: 100%;
	min-width: 0;
}

.joe_profile__card {
	background: var(--profile-card);
	border: 1px solid var(--profile-line);
	border-radius: 18px;
	box-shadow: var(--profile-shadow);
	box-sizing: border-box;
}

.joe_profile__main > .joe_profile__card {
	width: 100%;
	max-width: none;
	align-self: stretch;
}

.joe_profile__icon {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	flex: none;
}

.joe_profile__nav {
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.joe_profile__nav-item {
	height: 50px;
	padding: 0 12px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #2a3446;
	font-size: 15px;
	font-weight: 500;
	transition: 0.18s ease;
	text-decoration: none;
}

.joe_profile__nav-item:hover {
	background: #f7faff;
	color: #2a3446;
}

.joe_profile__nav-item.is-active {
	background: var(--profile-primary-soft);
	color: var(--profile-primary);
	box-shadow: inset 0 0 0 1px rgba(47, 107, 255, 0.08);
}

.joe_profile__nav-item-label {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.joe_profile__nav-badge {
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ff4145;
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

.joe_profile__sidebar-bottom {
	margin-top: 16px;
	padding-top: 12px;
}

.joe_profile__home-link {
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--profile-line);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #5f6d84;
	font-size: 15px;
	text-decoration: none;
}

.joe_profile__home-link:hover {
	color: var(--profile-primary);
}

.joe_profile__hero {
	position: relative;
	overflow: hidden;
	padding: 22px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: linear-gradient(135deg, #f9fbff 0%, #eef5ff 60%, #e8f0ff 100%);
}

.joe_profile__hero::before {
	content: "";
	position: absolute;
	right: -88px;
	top: -42px;
	width: 520px;
	height: 260px;
	background:
		radial-gradient(circle at 48% 50%, rgba(255, 255, 255, 0.62), transparent 58%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(82, 131, 255, 0.14));
	border-radius: 42% 58% 60% 40% / 46% 36% 64% 54%;
	transform: rotate(-8deg);
}

.joe_profile__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(122deg, transparent 70%, rgba(255, 255, 255, 0.68) 70.6%, transparent 71%),
		linear-gradient(146deg, transparent 78%, rgba(255, 255, 255, 0.58) 78.4%, transparent 79%);
	pointer-events: none;
}

.joe_profile__hero-main,
.joe_profile__hero-actions {
	position: relative;
	z-index: 1;
}

.joe_profile__hero-main {
	display: flex;
	align-items: center;
	gap: 22px;
	min-width: 0;
}

.joe_profile__avatar {
	width: 152px;
	height: 152px;
	padding: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 14px 30px rgba(45, 63, 97, 0.12);
	flex: none;
}

.joe_profile__avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.joe_profile__hero-meta {
	min-width: 0;
}

.joe_profile__profile-name {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.joe_profile__profile-name h1 {
	margin: 0;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 700;
	color: var(--profile-text);
}

.joe_profile__level-badge {
	padding: 5px 10px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--profile-primary), var(--profile-primary-dark));
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

.joe_profile__id-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: #637189;
	font-size: 15px;
}

.joe_profile__copy-trigger {
	padding: 0;
	border: 0;
	background: transparent;
	color: #94a0b4;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.joe_profile__copy-trigger:hover {
	color: var(--profile-primary);
}

.joe_profile__bio {
	margin: 0 0 14px;
	max-width: 660px;
	color: #465267;
	font-size: 15px;
	line-height: 1.85;
}

.joe_profile__meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	color: #728099;
}

.joe_profile__tag {
	padding: 6px 12px;
	border-radius: 10px;
	background: #eff4fb;
	border: 1px solid #e2e8f4;
	font-size: 13px;
	color: #647286;
	line-height: 1;
}

.joe_profile__meta-divider {
	width: 1px;
	height: 14px;
	background: #dde5f2;
}

.joe_profile__meta-note {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #7b889d;
}

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

.joe_profile__btn,
.joe_profile__danger {
	height: 42px;
	padding: 0 18px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: 0.18s ease;
	font-size: 14px;
}

.joe_profile__btn {
	border: 1px solid #bcd0ff;
	background: #fff;
	color: var(--profile-primary);
}

.joe_profile__btn:hover {
	color: var(--profile-primary-dark);
}

.joe_profile__btn.is-primary {
	background: linear-gradient(135deg, var(--profile-primary), var(--profile-primary-dark));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 10px 18px rgba(47, 107, 255, 0.18);
}

.joe_profile__btn.is-primary:hover {
	color: #fff;
	transform: translateY(-1px);
}

.joe_profile__btn.is-ghost {
	border-color: #d4deef;
	color: #4b5a73;
}

.joe_profile__btn.is-small {
	height: 38px;
	padding: 0 14px;
	border-radius: 10px;
	font-size: 13px;
}

.joe_profile__danger {
	border: 1px solid #ffd5da;
	background: #fff3f5;
	color: #d94b67;
}

.joe_profile__danger:hover {
	background: #ffe9ee;
}

.joe_profile__stats-card {
	padding: 2px 8px;
}

.joe_profile__stats {
	display: grid;
	grid-template-columns: repeat(var(--profile-stat-count, 6), minmax(0, 1fr));
	width: 100%;
	max-width: calc(var(--profile-stat-count, 6) * 180px);
	margin: 0 auto;
}

.joe_profile__stat {
	position: relative;
	min-height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 0 14px;
}

.joe_profile__stat:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 24px;
	right: 0;
	bottom: 24px;
	width: 1px;
	background: #e8edf5;
}

.joe_profile__stat-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex: none;
}

.joe_profile__stat-icon .joe_profile__icon {
	width: 22px;
	height: 22px;
}

.tone-blue {
	color: #4a98ff;
	background: #ebf5ff;
}

.tone-red {
	color: #ff5f6a;
	background: #fff1f2;
}

.tone-orange {
	color: #ff8a16;
	background: #fff5ea;
}

.tone-gold {
	color: #ffb700;
	background: #fff8df;
}

.tone-green {
	color: #31c87a;
	background: #ebfbf3;
}

.tone-purple {
	color: #8b5cf6;
	background: #f3eeff;
}

.tone-gray {
	color: #7c8aa0;
	background: #f3f5f9;
}

.joe_profile__stat-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	align-items: flex-start;
	min-width: 0;
}

.joe_profile__stat-label {
	color: #657389;
	font-size: 14px;
}

.joe_profile__stat-value {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--profile-text);
}

.joe_profile__content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
	gap: 18px;
}

.joe_profile__content-grid--overview-main {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
}

.joe_profile__column {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.joe_profile__content-grid--overview-main>.joe_profile__column>.joe_profile__panel {
	flex: 1;
}

.joe_profile__panel,
.joe_profile__detail-panel {
	padding: 18px 20px;
}

.joe_profile__panel-header,
.joe_profile__detail-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.joe_profile__detail-header {
	align-items: flex-start;
}

.joe_profile__panel-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: var(--profile-text);
}

.joe_profile__panel-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #7b889d;
	font-size: 14px;
	white-space: nowrap;
	text-decoration: none;
}

.joe_profile__panel-link:hover {
	color: var(--profile-primary);
}

.joe_profile__panel-empty {
	padding: 24px 0 8px;
	color: var(--profile-muted);
	font-size: 14px;
	line-height: 1.8;
}

.joe_profile__overview-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.joe_profile__overview-item {
	position: relative;
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 14px;
	align-items: stretch;
	padding: 14px;
	border: 1px solid #e9eef7;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 10px 24px rgba(148, 163, 184, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.joe_profile__overview-item::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 16px;
	bottom: 16px;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--profile-primary) 0%, #8bb5ff 100%);
	transform: scaleY(0);
	transform-origin: center top;
	transition: transform 0.25s ease;
}

.joe_profile__overview-item:hover {
	transform: translateY(-2px);
	border-color: rgba(47, 107, 255, 0.18);
	box-shadow: 0 16px 30px rgba(148, 163, 184, 0.14);
}

.joe_profile__overview-item:hover::before {
	transform: scaleY(1);
}

.joe_profile__overview-item.is-unavailable {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-style: dashed;
}

.joe_profile__overview-cover {
	position: relative;
	display: block;
	height: 100%;
	min-height: 78px;
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}

.joe_profile__overview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.joe_profile__overview-item:hover .joe_profile__overview-image {
	transform: scale(1.03);
}

.joe_profile__overview-item.is-unavailable .joe_profile__overview-image {
	opacity: 0.72;
}

.joe_profile__overview-status {
	position: absolute;
	left: 10px;
	top: 10px;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.joe_profile__overview-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.joe_profile__overview-meta {
	display: flex;
	align-items: center;
	gap: 8px 10px;
	flex-wrap: wrap;
	font-size: 12px;
	color: #6f7c90;
}

.joe_profile__overview-meta span:not(.joe_profile__pill) {
	padding: 5px 9px;
	border-radius: 999px;
	background: #f8fafc;
	border: 1px solid #edf2f7;
}

.joe_profile__overview-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
}

.joe_profile__overview-title a {
	color: var(--profile-text);
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.joe_profile__overview-summary {
	margin: 0;
	color: var(--profile-muted);
	font-size: 14px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.joe_profile__overview-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.joe_profile__pill {
	padding: 3px 8px;
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.2;
}

.joe_profile__pill.tone-blue {
	color: var(--profile-primary);
	background: #edf4ff;
}

.joe_profile__pill.tone-gold {
	color: #d38a00;
	background: #fff4dd;
}

.joe_profile__pill.tone-green {
	color: #1ba55e;
	background: #e9fbf1;
}

.joe_profile__pill.tone-purple {
	color: #8757f4;
	background: #f3edff;
}

.joe_profile__mini-link {
	color: var(--profile-primary);
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
}

.joe_profile__mini-link.is-button {
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.joe_profile__bottom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.joe_profile__info-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 6px;
}

.joe_profile__info-item {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	color: #5f6d84;
	font-size: 14px;
}

.joe_profile__info-item .joe_profile__icon {
	width: 18px;
	height: 18px;
	color: #96a2b4;
}

.joe_profile__status-text {
	color: #23b567;
	font-size: 13px;
	font-weight: 600;
}

.joe_profile__settings-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 18px;
	color: var(--profile-primary);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.joe_profile__growth-strip {
	margin-top: 18px;
}

.joe_profile__growth-strip .joe_profile__growth-head {
	align-items: center;
}

.joe_profile__growth-strip .joe_profile__progress {
	margin-bottom: 18px;
}

.joe_profile__growth-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
}

.joe_profile__growth-copy p,
.joe_profile__growth-copy small {
	margin: 0;
}

.joe_profile__growth-copy p {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #5f6d84;
	font-size: 14px;
	margin-bottom: 8px;
}

.joe_profile__growth-copy small,
.joe_profile__growth-value small {
	color: #7c899e;
	font-size: 12px;
}

.joe_profile__growth-badge {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #fff7df;
	color: #f2ab0a;
	display: grid;
	place-items: center;
	flex: none;
}

.joe_profile__growth-badge .joe_profile__icon {
	width: 16px;
	height: 16px;
}

.joe_profile__growth-value {
	text-align: right;
}

.joe_profile__growth-value strong {
	color: var(--profile-primary);
	font-size: 17px;
	font-weight: 700;
}

.joe_profile__growth-value span {
	color: #95a1b4;
	font-size: 16px;
}

.joe_profile__progress {
	height: 8px;
	border-radius: 999px;
	background: #e9eff9;
	overflow: hidden;
	margin: 18px 0 20px;
}

.joe_profile__progress span,
.joe_profile__detail-progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, var(--profile-primary), #5a9dff);
	border-radius: inherit;
}

.joe_profile__goal-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: var(--profile-text);
}

.joe_profile__goal-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.joe_profile__goal-item {
	text-align: center;
}

.joe_profile__goal-icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	margin: 0 auto 8px;
}

.joe_profile__goal-item .joe_profile__icon {
	width: 22px;
	height: 22px;
}

.joe_profile__goal-item span,
.joe_profile__goal-item small {
	display: block;
}

.joe_profile__goal-item span {
	color: #6c7990;
	font-size: 13px;
	line-height: 1.4;
}

.joe_profile__goal-item small {
	margin-top: 4px;
	color: #95a1b4;
	font-size: 12px;
}

.joe_profile__detail-title h2 {
	margin: 12px 0 8px;
	font-size: 30px;
	line-height: 1.15;
	color: var(--profile-text);
}

.joe_profile__detail-title p {
	margin: 0;
	color: var(--profile-muted);
	line-height: 1.75;
}

.joe_profile__toolbar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	margin-bottom: 20px;
}

.joe_profile__toolbar-main {
	display: flex;
	align-items: center;
	gap: 12px;
}

.joe_profile__toolbar-kicker {
	display: inline-flex;
	align-items: center;
	height: 30px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(47, 107, 255, 0.08);
	color: var(--profile-primary);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.joe_profile__toolbar-text {
	color: var(--profile-muted);
	font-size: 14px;
}

.joe_profile__detail-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.joe_profile__detail-card {
	position: relative;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 18px;
	align-items: stretch;
	padding: 16px;
	min-height: 180px;
	border: 1px solid #e9eef7;
	border-radius: 20px;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	box-shadow: 0 14px 30px rgba(148, 163, 184, 0.10);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	overflow: hidden;
}

.joe_profile__detail-card:hover {
	transform: translateY(-2px);
	border-color: rgba(47, 107, 255, 0.20);
	box-shadow: 0 20px 40px rgba(148, 163, 184, 0.16);
}

.joe_profile__detail-card.is-unavailable {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border-style: dashed;
}

.joe_profile__detail-cover {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	align-self: flex-start;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}

.joe_profile__detail-cover img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.joe_profile__detail-card:hover .joe_profile__detail-cover img {
	transform: scale(1.03);
}

.joe_profile__detail-card.is-unavailable .joe_profile__detail-cover img {
	opacity: 0.72;
}

.joe_profile__detail-status {
	position: absolute;
	left: 12px;
	top: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.72);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}

.joe_profile__detail-body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 6px;
	padding: 2px 0;
	min-width: 0;
	flex: 1;
}

.joe_profile__detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	font-size: 13px;
	color: #64748b;
}

.joe_profile__detail-meta span {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid #edf2f7;
	background: #f8fafc;
}

.joe_profile__detail-body h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.joe_profile__detail-body h3 a {
	color: var(--profile-text);
	text-decoration: none;
	display: block;
}

.joe_profile__detail-body p {
	margin: 0;
	color: var(--profile-muted);
	line-height: 1.75;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.joe_profile__detail-progress {
	height: 6px;
	border-radius: 999px;
	background: #eaf0fa;
	overflow: hidden;
	max-width: 320px;
}

.joe_profile__detail-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.joe_profile__empty {
	padding: 56px 24px;
	border: 1px dashed var(--profile-line);
	border-radius: 18px;
	background: #fbfdff;
	text-align: center;
}

.joe_profile__empty h2 {
	margin: 0 0 12px;
	color: var(--profile-text);
	font-size: 28px;
}

.joe_profile__empty p {
	margin: 0 auto;
	max-width: 520px;
	color: var(--profile-muted);
	line-height: 1.8;
}

.joe_profile__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 24px;
	color: var(--profile-muted);
}

.joe_profile__pagination a {
	padding: 10px 16px;
	border-radius: 14px;
	background: #f8fafc;
	color: #334155;
	text-decoration: none;
	font-weight: 700;
}

.joe_profile__pagination a:hover {
	background: var(--profile-primary-soft);
	color: var(--profile-primary);
}

.joe_profile__content-grid--secondary {
	margin-top: 18px;
}

.joe_profile__summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.joe_profile__summary-item {
	padding: 14px 16px;
	border-radius: 14px;
	background: #f8fbff;
	border: 1px solid #e8eef8;
}

.joe_profile__summary-label {
	display: block;
	color: #7b889d;
	font-size: 13px;
	margin-bottom: 6px;
}

.joe_profile__summary-item strong {
	font-size: 22px;
	line-height: 1.1;
	color: var(--profile-text);
}

.tone-text-blue {
	color: #2f6bff !important;
}

.tone-text-green {
	color: #17a86b !important;
}

.tone-text-gold {
	color: #d38a00 !important;
}

.tone-text-gray {
	color: #7c8aa0 !important;
}

.joe_profile__post-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.joe_profile__post-item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #edf2f8;
}

.joe_profile__post-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.joe_profile__post-thumb {
	display: block;
}

.joe_profile__post-thumb img {
	width: 92px;
	height: 66px;
	border-radius: 10px;
	object-fit: cover;
	display: block;
	box-shadow: 0 8px 18px rgba(45, 63, 97, 0.08);
}

.joe_profile__post-copy {
	min-width: 0;
}

.joe_profile__post-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.joe_profile__post-title {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.45;
}

.joe_profile__post-title a {
	color: var(--profile-text);
	text-decoration: none;
}

.joe_profile__post-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	color: #8c99ac;
	font-size: 13px;
}

.joe_profile__notice-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.joe_profile__notice-list.is-full {
	gap: 12px;
}

.joe_profile__notice-switch {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.joe_profile__notice-tab {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 999px;
	border: 1px solid #e6edf8;
	background: #f8fbff;
	color: #64748b;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.2s ease;
}

.joe_profile__notice-tab em {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	border-radius: 999px;
	background: rgba(47, 107, 255, 0.08);
	color: var(--profile-primary);
	font-style: normal;
	font-weight: 800;
}

.joe_profile__notice-tab:hover,
.joe_profile__notice-tab.is-active {
	border-color: rgba(47, 107, 255, 0.18);
	background: rgba(47, 107, 255, 0.08);
	color: var(--profile-primary);
}

.joe_profile__notice-tab.is-action {
	cursor: pointer;
}

.joe_profile__notice-tab.is-danger {
	border-color: #ffd5da;
	background: #fff6f7;
	color: #d94b67;
}

.joe_profile__notice-tab.is-danger:hover {
	border-color: #ffc4cc;
	background: #ffecef;
	color: #c53552;
}

.joe_profile__notice-item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 14px;
	align-items: flex-start;
	padding: 14px;
	border-radius: 14px;
	background: #f8fbff;
	border: 1px solid #e8eef8;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.joe_profile__notice-item.is-unread {
	background: #ffffff;
	border-color: #dbe7fb;
	box-shadow: 0 10px 24px rgba(148, 163, 184, 0.08);
}

.joe_profile__notice-item.is-read {
	background: #f4f7fb;
	border-color: #e3eaf3;
}

.joe_profile__notice-item.is-history {
	background: #edf2f7;
	border-color: #dbe3ee;
	box-shadow: none;
}

.joe_profile__notice-item.is-full {
	grid-template-columns: 44px minmax(0, 1fr) auto;
	align-items: center;
}

.joe_profile__notice-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
}

.joe_profile__notice-icon .joe_profile__icon {
	width: 20px;
	height: 20px;
}

.joe_profile__notice-copy {
	min-width: 0;
}

.joe_profile__notice-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
}

.joe_profile__notice-meta {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
}

.joe_profile__notice-head h3 {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	color: var(--profile-text);
}

.joe_profile__notice-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.joe_profile__notice-status.is-unread {
	background: rgba(47, 107, 255, 0.10);
	color: var(--profile-primary);
}

.joe_profile__notice-status.is-read {
	background: rgba(100, 116, 139, 0.12);
	color: #64748b;
}

.joe_profile__notice-status.is-history {
	background: rgba(71, 85, 105, 0.12);
	color: #475569;
}

.joe_profile__notice-head span {
	color: #8c99ac;
	font-size: 12px;
	white-space: nowrap;
}

.joe_profile__notice-copy p {
	margin: 0 0 10px;
	color: var(--profile-muted);
	font-size: 14px;
	line-height: 1.75;
}

.joe_profile__notice-item.is-history .joe_profile__notice-head h3,
.joe_profile__notice-item.is-history .joe_profile__notice-copy p {
	color: #66768c;
}

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

.joe_profile__panel--wide {
	grid-column: 1 / -1;
}

.joe_profile__panel.is-inner {
	padding: 18px;
	height: 100%;
}

.joe_profile__profile-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.joe_profile__form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.joe_profile__form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.joe_profile__form-field--full {
	grid-column: 1 / -1;
}

.joe_profile__form-field label {
	font-size: 13px;
	font-weight: 600;
	color: #5d6c84;
}

.joe_profile__form-field small {
	color: #94a0b4;
	font-size: 12px;
	line-height: 1.6;
}

.joe_profile__form-input {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1px solid #dce5f4;
	background: #f8fbff;
	color: var(--profile-text);
	font-size: 14px;
	transition: 0.18s ease;
}

.joe_profile__form-input:focus {
	border-color: #7aa8ff;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(90, 140, 255, 0.12);
}

.joe_profile__form-input[readonly] {
	background: #f3f6fb;
	color: #8d9aae;
	cursor: not-allowed;
}

.joe_profile__form-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	flex-wrap: wrap;
}

.joe_profile__form-footer p {
	margin: 0;
	max-width: 680px;
	color: var(--profile-muted);
	font-size: 13px;
	line-height: 1.7;
}

.joe_profile__turnstile {
	padding: 10px;
	border: 1px solid #d9e2f0;
	border-radius: 18px;
	background: #fff;
	min-height: 88px;
}

#joe-profile-turnstile {
	min-height: 65px;
}

.joe_profile__info-main {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.joe_profile__info-main small {
	color: #94a0b4;
	font-size: 12px;
}

.joe_profile__info-main strong {
	color: var(--profile-text);
	font-size: 14px;
	font-weight: 700;
	word-break: break-word;
}

.joe_profile__inline-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.joe_profile__quick-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.joe_profile__quick-card {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: flex-start;
	padding: 14px;
	border-radius: 14px;
	border: 1px solid #e8eef8;
	background: #f8fbff;
	text-decoration: none;
}

.joe_profile__quick-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
}

.joe_profile__quick-card-icon .joe_profile__icon {
	width: 20px;
	height: 20px;
}

.joe_profile__quick-card-body h3 {
	margin: 0 0 6px;
	font-size: 15px;
	line-height: 1.4;
	color: var(--profile-text);
}

.joe_profile__quick-card-body p {
	margin: 0 0 10px;
	color: var(--profile-muted);
	font-size: 13px;
	line-height: 1.7;
}

.joe_profile__quick-card-body span {
	color: var(--profile-primary);
	font-size: 13px;
	font-weight: 600;
}

.joe_profile__facts-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.joe_profile__fact-item {
	padding: 14px 16px;
	border-radius: 14px;
	background: #f8fbff;
	border: 1px solid #e8eef8;
}

.joe_profile__fact-item span,
.joe_profile__fact-item strong {
	display: block;
}

.joe_profile__fact-item span {
	color: #7b889d;
	font-size: 13px;
	margin-bottom: 6px;
}

.joe_profile__fact-item strong {
	color: var(--profile-text);
	font-size: 15px;
	line-height: 1.45;
}

@media (max-width: 1280px) {
	.joe_profile__stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.joe_profile__stat {
		min-height: 88px;
		justify-content: flex-start;
	}

	.joe_profile__stat:nth-child(3n)::after,
	.joe_profile__stat:last-child::after {
		display: none;
	}

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

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

@media (max-width: 1024px) {
	.joe_profile__layout {
		grid-template-columns: 1fr;
	}

	.joe_profile__sidebar {
		position: static;
	}

	.joe_profile__nav {
		min-height: auto;
	}

	.joe_profile__hero {
		flex-direction: column;
		align-items: flex-start;
	}

	.joe_profile__hero-actions {
		width: 100%;
	}

	.joe_profile__content-grid,
	.joe_profile__bottom-grid {
		grid-template-columns: 1fr;
	}

	.joe_profile__settings-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	body.joe_profile-page {
		background: #f4f6fa !important;
	}

	body.joe_profile-page #Joe {
		padding-top: 10px;
		padding-bottom: calc(148px + constant(safe-area-inset-bottom));
		padding-bottom: calc(148px + env(safe-area-inset-bottom));
	}

	body.joe_profile-page .joe_container {
		width: 100%;
		padding-right: 12px;
		padding-left: 12px;
	}

	.joe_profile {
		min-height: 0;
	}

	.joe_profile__layout,
	.joe_profile__main {
		gap: 12px;
	}

	.joe_profile__card {
		border-color: rgba(226, 232, 240, 0.88);
		border-radius: 16px;
		box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
	}

	.joe_profile__sidebar {
		position: fixed;
		right: 10px;
		bottom: calc(82px + constant(safe-area-inset-bottom));
		bottom: calc(82px + env(safe-area-inset-bottom));
		left: 10px;
		z-index: 1095;
		margin: 0;
		padding: 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		pointer-events: none;
	}

	.joe_profile__sidebar::-webkit-scrollbar {
		display: none;
	}

	.joe_profile__nav {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 6px;
		width: 100%;
		min-width: 0;
		padding: 8px;
		border-radius: 18px;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0 16px 40px rgba(15, 23, 42, 0.13);
		backdrop-filter: saturate(1.2) blur(16px);
		-webkit-backdrop-filter: saturate(1.2) blur(16px);
		pointer-events: auto;
	}

	.joe_profile__nav-item {
		position: relative;
		flex-direction: column;
		justify-content: center;
		gap: 5px;
		min-width: 0;
		height: 58px;
		padding: 6px 4px;
		border-radius: 14px;
		color: #5e6b7f;
		font-size: 11px;
		font-weight: 700;
		text-align: center;
	}

	.joe_profile__nav-item.is-active {
		background: rgba(47, 107, 255, 0.1);
		box-shadow: none;
	}

	.joe_profile__nav-item-label {
		flex-direction: column;
		gap: 4px;
		width: 100%;
	}

	.joe_profile__nav-item-label span {
		width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.joe_profile__nav-item-label .joe_profile__icon {
		width: 18px;
		height: 18px;
	}

	.joe_profile__nav-badge {
		position: absolute;
		top: 6px;
		right: 8px;
		min-width: 18px;
		height: 18px;
		font-size: 10px;
		box-shadow: 0 4px 10px rgba(255, 65, 69, 0.22);
	}

	.joe_profile__sidebar-bottom {
		display: none;
	}

	.joe_profile__hero {
		padding: 18px;
		border-radius: 18px;
		background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
	}

	.joe_profile__hero-main {
		flex-direction: row;
		align-items: center;
		gap: 14px;
	}

	.joe_profile__avatar {
		width: 72px;
		height: 72px;
		padding: 4px;
	}

	.joe_profile__profile-name h1 {
		font-size: 22px;
	}

	.joe_profile__stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 6px;
	}

	.joe_profile__stat::after,
	.joe_profile__stat:nth-child(3n)::after {
		display: none;
	}

	.joe_profile__stats-card {
		padding: 10px;
	}

	.joe_profile__stat {
		min-height: 68px;
		flex-direction: column;
		gap: 5px;
		padding: 8px 4px;
		border-radius: 14px;
		background: #f8fbff;
	}

	.joe_profile__stat-icon {
		width: 32px;
		height: 32px;
		border-radius: 12px;
	}

	.joe_profile__stat-icon .joe_profile__icon {
		width: 16px;
		height: 16px;
	}

	.joe_profile__stat-text {
		align-items: center;
		text-align: center;
	}

	.joe_profile__stat-label {
		font-size: 10px;
	}

	.joe_profile__stat-value {
		font-size: 14px;
	}

	.joe_profile__panel,
	.joe_profile__detail-panel {
		padding: 14px;
		border-radius: 16px;
	}

	.joe_profile__panel-header,
	.joe_profile__detail-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 14px;
		padding-bottom: 12px;
		border-bottom: 1px solid #eef2f7;
	}

	.joe_profile__toolbar-kicker {
		font-size: 12px;
	}

	.joe_profile__detail-title p {
		font-size: 13px;
		line-height: 1.7;
	}

	.joe_profile__detail-title h2 {
		font-size: 22px;
		line-height: 1.2;
	}

	.joe_profile__toolbar {
		margin-bottom: 16px;
	}

	.joe_profile__toolbar-main {
		width: 100%;
		align-items: center;
		justify-content: space-between;
	}

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

	.joe_profile__form-grid,
	.joe_profile__summary-grid,
	.joe_profile__quick-grid,
	.joe_profile__facts-grid {
		grid-template-columns: 1fr;
	}

	.joe_profile__form-field--full {
		grid-column: auto;
	}

	.joe_profile__form-footer {
		align-items: flex-start;
	}

	.joe_profile__activity-item {
		grid-template-columns: 76px minmax(0, 1fr);
	}

	.joe_profile__time {
		grid-column: 2;
		justify-self: start;
	}

	.joe_profile__detail-card {
		grid-template-columns: 1fr;
		padding: 14px;
		min-height: 0;
	}

	.joe_profile__detail-cover {
		aspect-ratio: 16 / 9;
	}

	.joe_profile__detail-progress {
		max-width: none;
	}

	.joe_profile__post-item,
	.joe_profile__notice-item.is-full {
		grid-template-columns: 1fr;
	}

	.joe_profile__notice-switch {
		justify-content: flex-start;
		width: 100%;
		padding: 4px;
		border-radius: 999px;
		background: #f3f6fb;
	}

	.joe_profile__notice-tab {
		flex: 1 1 auto;
		justify-content: center;
		min-height: 38px;
		padding: 7px 12px;
		border: 0;
		background: transparent;
		font-size: 13px;
	}

	.joe_profile__notice-tab.is-active,
	.joe_profile__notice-tab:hover {
		background: #fff;
		box-shadow: 0 5px 16px rgba(31, 41, 55, 0.07);
	}

	.joe_profile__notice-list,
	.joe_profile__notice-list.is-full {
		gap: 10px;
	}

	.joe_profile__notice-item,
	.joe_profile__notice-item.is-full {
		position: relative;
		display: grid;
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 11px;
		align-items: flex-start;
		padding: 13px;
		border-radius: 15px;
		background: #fff;
		border-color: #edf2f7;
		box-shadow: 0 7px 18px rgba(31, 41, 55, 0.04);
	}

	.joe_profile__notice-item.is-full .joe_profile__btn {
		grid-column: 1 / -1;
		width: 100%;
		margin-top: 2px;
	}

	.joe_profile__notice-icon {
		width: 38px;
		height: 38px;
		border-radius: 13px;
	}

	.joe_profile__notice-icon .joe_profile__icon {
		width: 18px;
		height: 18px;
	}

	.joe_profile__notice-copy p {
		margin-bottom: 0;
		font-size: 13px;
		line-height: 1.65;
	}

	.joe_profile__post-thumb img {
		width: 100%;
		height: auto;
		aspect-ratio: 1.45 / 1;
	}

	.joe_profile__notice-meta,
	.joe_profile__notice-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
}

@media (max-width: 520px) {
	.joe_profile__nav {
		padding: 8px;
	}

	.joe_profile__hero-actions,
	.joe_profile__detail-actions {
		width: 100%;
	}

	.joe_profile__btn,
	.joe_profile__danger {
		width: 100%;
	}

	.joe_profile__profile-name h1 {
		font-size: 21px;
	}

	.joe_profile__bio {
		font-size: 14px;
	}

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

	.joe_profile__favorites-grid,
	.joe_profile__quick-grid,
	.joe_profile__facts-grid {
		grid-template-columns: 1fr;
	}

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

	.joe_profile__growth-head {
		gap: 10px;
		margin-bottom: 12px;
	}

	.joe_profile__growth-copy p {
		margin-bottom: 6px;
		font-size: 13px;
	}

	.joe_profile__growth-copy small,
	.joe_profile__growth-value small {
		font-size: 11px;
	}

	.joe_profile__growth-value strong {
		font-size: 16px;
	}

	.joe_profile__growth-value span {
		font-size: 14px;
	}

	.joe_profile__growth-strip .joe_profile__progress {
		margin-bottom: 14px;
	}

	.joe_profile__goal-title {
		margin-bottom: 10px;
	}

	.joe_profile__goal-item {
		display: grid;
		grid-template-columns: 36px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 10px;
		align-items: center;
		min-height: 64px;
		padding: 10px;
		text-align: left;
		background: #f8fbff;
		border: 1px solid #eef2f7;
		border-radius: 14px;
	}

	.joe_profile__goal-item:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.joe_profile__goal-icon {
		grid-row: 1 / 3;
		width: 36px;
		height: 36px;
		margin: 0;
	}

	.joe_profile__goal-icon .joe_profile__icon {
		width: 17px;
		height: 17px;
	}

	.joe_profile__goal-item span,
	.joe_profile__goal-item small {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.joe_profile__bottom-grid {
		gap: 14px;
	}

	.joe_profile__inline-actions .joe_profile__btn {
		width: 100%;
	}

	.joe_profile__empty h2 {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	body.joe_profile-page #Joe {
		padding-bottom: calc(148px + constant(safe-area-inset-bottom)) !important;
		padding-bottom: calc(148px + env(safe-area-inset-bottom)) !important;
	}

	body.joe_profile-page .joe_action {
		display: none !important;
	}

	body.joe_profile-page .joe_profile__layout {
		display: block !important;
	}

	body.joe_profile-page .joe_profile__sidebar {
		position: fixed !important;
		top: auto !important;
		right: 10px !important;
		bottom: calc(82px + constant(safe-area-inset-bottom)) !important;
		bottom: calc(82px + env(safe-area-inset-bottom)) !important;
		left: 10px !important;
		z-index: 1095 !important;
		display: block !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow-x: auto !important;
		overflow-y: visible !important;
		pointer-events: none !important;
		transform: translateZ(0);
	}

	body.joe_profile-page .joe_profile__nav {
		display: grid !important;
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
		width: 100% !important;
		min-width: 0 !important;
		pointer-events: auto !important;
	}
}
