/* Card modernization for the public noindex test layer. */
.art-profile-card {
	position: relative;
	isolation: isolate;
	transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.art-profile-card:hover,
.art-profile-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 20px 46px rgba(20, 22, 32, 0.22);
}

.art-profile-card img {
	transform-origin: center;
}

.art-profile-card:hover img,
.art-profile-card:focus-within img {
	transform: scale(1.06);
}

.art-profile-card .girl-card-info {
	z-index: 2;
	transition: opacity 0.24s ease, transform 0.24s ease, padding-bottom 0.24s ease;
}

.art-profile-card:hover .girl-card-info,
.art-profile-card:focus-within .girl-card-info {
	opacity: 0.18;
	transform: translateY(10px);
}

.art-profile-card .new-girl {
	top: 10px;
	right: 10px;
	z-index: 5;
	border-radius: 999px;
	background: rgba(219, 0, 110, 0.92);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.art-card-status {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	padding: 4px 10px 4px 22px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	color: #212331;
	font-family: Montserrat-SemiBold, Arial, sans-serif;
	font-size: 9px;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.art-card-status::before {
	position: absolute;
	left: 9px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #20b15a;
	box-shadow: 0 0 0 4px rgba(32, 177, 90, 0.16);
	content: "";
}

.art-card-status.art-card-status-verified {
	min-height: 20px;
	padding: 3px 8px 3px 18px;
	border: 1px solid rgba(198, 164, 106, 0.46);
	background: rgba(18, 19, 27, 0.58);
	box-shadow: none;
	color: rgba(255, 255, 255, 0.76);
	font-size: 8px;
	letter-spacing: 0.07em;
}

.art-card-status.art-card-status-verified::before {
	left: 8px;
	width: 5px;
	height: 5px;
	background: #c6a46a;
	box-shadow: 0 0 0 3px rgba(198, 164, 106, 0.16);
}

.art-card-overlay {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 46px;
	padding: 9px 10px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.art-profile-card:hover .art-card-overlay,
.art-profile-card:focus-within .art-card-overlay {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.art-card-overlay-meta {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
	color: #212331;
	font-family: Montserrat-Regular, Arial, sans-serif;
	font-size: 10px;
	line-height: 1.25;
	letter-spacing: 0.03em;
}

.art-card-overlay-meta span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.art-card-actions {
	display: flex;
	flex-shrink: 0;
	gap: 6px;
}

.art-card-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 70px;
	min-height: 32px;
	padding: 7px 10px;
	border: 1px solid rgba(33, 35, 49, 0.14);
	border-radius: 6px;
	background: #fff;
	color: #212331;
	font-family: Montserrat-SemiBold, Arial, sans-serif;
	font-size: 9px;
	line-height: 1.1;
	letter-spacing: 0.08em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.art-card-action:hover,
.art-card-action:focus {
	border-color: #db006e;
	color: #db006e;
	text-decoration: none;
}

.art-card-action-main {
	border-color: #db006e;
	background: #db006e;
	color: #fff;
}

.art-card-action-main:hover,
.art-card-action-main:focus {
	background: #b9005c;
	color: #fff;
}

.art-card-reveal.art-reveal-ready {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.46s ease var(--art-reveal-delay, 0ms), transform 0.46s ease var(--art-reveal-delay, 0ms), box-shadow 0.28s ease, filter 0.28s ease;
}

.art-card-reveal.art-reveal-ready.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.art-card-reveal.art-reveal-ready.is-visible:hover,
.art-card-reveal.art-reveal-ready.is-visible:focus-within {
	transform: translateY(-4px);
}

@media (hover: none), (max-width: 768px) {
	.art-profile-card .girl-card-info {
		padding-bottom: 64px;
	}

	.art-profile-card:hover,
	.art-profile-card:focus-within {
		transform: none;
	}

	.art-card-reveal.art-reveal-ready.is-visible:hover,
	.art-card-reveal.art-reveal-ready.is-visible:focus-within {
		transform: none;
	}

	.art-profile-card:hover .girl-card-info,
	.art-profile-card:focus-within .girl-card-info {
		opacity: 1;
		transform: none;
	}

	.art-card-overlay {
		right: 8px;
		bottom: 8px;
		left: 8px;
		gap: 6px;
		min-height: 0;
		padding: 8px;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.art-card-overlay-meta {
		display: none;
	}

	.art-card-actions {
		width: 100%;
	}

	.art-card-action {
		flex: 1 1 0;
		min-width: 0;
		padding: 7px 5px;
		font-size: 8px;
		letter-spacing: 0.04em;
	}
}

@media (max-width: 380px) {
	.art-card-overlay {
		align-items: stretch;
		flex-direction: column;
	}

	.art-card-actions {
		width: 100%;
	}

	.art-card-action {
		flex: 1;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.art-profile-card,
	.art-profile-card img,
	.art-profile-card .girl-card-info,
	.art-card-overlay,
	.art-card-reveal.art-reveal-ready {
		transition: none;
	}
}
