.profile-wrapper {
	display: flex;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	width: 100%;
}

.profile-wrapper {
	display: flex;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
	width: 100%;
}

.profile-header {
	margin-bottom: 16px;
}

.profile-title {
	font-size: 22px;
	font-weight: 600;
}

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

/* ===============================
   Player Photo Box
=============================== */
/*
.photo-box {
  background: var(--card);
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  box-shadow: var(--shadow);
}
*/
.photo-box {
	width: 100%;
	max-width: 403px;
	max-height: 403px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--card);
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 15px;
}

/* Actual image */
.player-photo {
	width: 100%;
	max-width: 403px;
	max-height: 403px;
	object-fit: cover;
	/* svarīgi: lai bilde neizkropļojas */
	border-radius: var(--radius-lg);
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.player-links {
	margin-top: 40px;
}

.player-links h3 {
	margin-bottom: 20px;
	font-size: 1.1rem;
	font-weight: 600;
}

.player-links-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 16px;
}

.player-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	transition: .2s;
	background: var(--card-bg);
	border: 1px solid var(--border);
}

.player-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.player-link img {
	width: 36px;
	height: 36px;
}

.player-link div {
	font-weight: 600;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.player-link-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.player-link-text strong {
	font-size: 1rem;
	font-weight: 600;
}

.player-link-text small {
	color: #7b8794;
	font-size: .9rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
