/**
 * AnteEnti Telugu Q&A UI
 *
 * Rank Component CSS
 *
 * Purpose:
 * Styles reusable user rank labels.
 *
 * Current use:
 * - Temporary component testing
 *
 * Future use:
 * - GamiPress rank badges
 * - Profile rank display
 * - Author card rank display
 */

/* Main rank wrapper */
.anteenti-rank {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 9px 13px;
	background: #f8efe4;
	border: 1px solid rgba(111, 31, 47, 0.16);
	border-radius: 16px;
	color: #3b241f;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 7px 18px rgba(111, 31, 47, 0.08);
	vertical-align: middle;
}

/* Rank hover when rendered as link */
a.anteenti-rank:hover,
a.anteenti-rank:focus {
	color: #6f1f2f;
	text-decoration: none;
	border-color: rgba(111, 31, 47, 0.3);
	box-shadow: 0 9px 22px rgba(111, 31, 47, 0.12);
}

/* Emoji fallback icon */
.anteenti-rank__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 50%;
	background: #ead09a;
	font-size: 17px;
	line-height: 1;
}

/* Image wrapper */
.anteenti-rank__image-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #fffaf1;
}

/* Rank image */
.anteenti-rank__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Text content */
.anteenti-rank__content {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

/* Rank label */
.anteenti-rank__label {
	color: #3b241f;
	font-size: 14px;
	font-weight: 800;
	white-space: nowrap;
}

/* Rank level */
.anteenti-rank__level {
	color: #7a6253;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Level-based subtle variations */
.anteenti-rank--level-1 {
	background: #f8efe4;
}

.anteenti-rank--level-2,
.anteenti-rank--level-3 {
	background: #fff7e6;
}

.anteenti-rank--level-4,
.anteenti-rank--level-5 {
	background: #eef7ef;
}

.anteenti-rank--level-6,
.anteenti-rank--level-7 {
	background: #f3eef9;
}

.anteenti-rank--level-8,
.anteenti-rank--level-9,
.anteenti-rank--level-10 {
	background: #fff2d6;
	border-color: rgba(111, 31, 47, 0.22);
}

/* Mobile tuning */
@media (max-width: 600px) {
	.anteenti-rank {
		padding: 8px 11px;
		font-size: 13px;
		gap: 8px;
		border-radius: 14px;
	}

	.anteenti-rank__icon {
		width: 30px;
		height: 30px;
		flex-basis: 30px;
		font-size: 15px;
	}

	.anteenti-rank__image-wrap {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.anteenti-rank__label {
		font-size: 13px;
	}

	.anteenti-rank__level {
		font-size: 10px;
	}
}