/* Kart Yapısı */
.modern-card {
	background: white;
	border-radius: 10px;
	border: 1px solid #eee;
	box-shadow: var(--bs-box-shadow-sm) !important;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

/* Profil Kartı (Sol Sütun) */
.profile-mini-card {
	text-align: center;
	padding: 2rem 1.5rem;
}

.avatar-glow {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding: 4px;
	background: linear-gradient(45deg, #f43f7a, #a855f7);
	display: inline-block;
	margin-bottom: 1rem;
}

.avatar-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 4px solid white;
	object-fit: cover;
}

/* İstatistik Kutucukları */
.stat-box {
	background: var(--body-bg);
	border-radius: 1rem;
	padding: 0.75rem;
	text-align: center;
	flex: 1;
}
.stat-value {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--secondary-color);
	display: block;
}
.stat-label {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 500;
}

/* Seviye Çubuğu */
.level-progress {
	height: 6px;
	background: #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 10px;
}
.level-bar {
	height: 100%;
	background: linear-gradient(90deg, #f43f7a, #fb7185);
	width: 75%;
}

/* Navigasyon Linkleri (Sol Sütun) */
.nav-item-custom {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 12px;
	color: var(--text-muted);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
}
.nav-item-custom:hover, .nav-item-custom.active {
	background-color: var(--primary-light);
	color: var(--primary-color);
}
.nav-item-custom i { font-size: 1.25rem; }

/* Gönderi Oluşturma (Orta Sütun) */
.create-post-box {
	display: flex;
	gap: 1rem;
	padding: 1.5rem;
}
.create-input {
	border: none;
	border-radius: 10px;
	padding: 0.75rem 1.25rem;
	width: 100%;
	transition: all 0.2s;
	background: #f5f5f5;
}
.create-input:focus {
	background: white;
	box-shadow: 0 0 0 2px rgba(244, 63, 122, 0.2);
	outline: none;
}

/* Gizli Mod Switch */
.anonymous-switch .form-check-input:checked {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

/* Feed Kartları */
.feed-header {
	display: flex;
	align-items: center;
	justify-content: between;
	padding: 1.25rem 1.25rem 0.5rem;
}
.feed-content {
	padding: 0 1.25rem 1rem;
}
.feed-image {
	width: 100%;
	border-radius: 1rem;
	margin-top: 0.5rem;
}
.action-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 50px;
	border: none;
	background: transparent;
	color: var(--text-muted);
	font-weight: 500;
	font-size: 0.9rem;
	transition: all 0.2s;
}
.action-btn:hover { background: var(--body-bg); color: var(--secondary-color); }
.action-btn.liked { color: var(--primary-color); background: var(--primary-light); }

/* Sağ Sütun Widgetları */
.badge-tag {
	background: white;
	border: 1px solid var(--border-color);
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 0.8rem;
	color: var(--text-muted);
	text-decoration: none;
	display: inline-block;
	margin: 0 4px 8px 0;
	transition: all 0.2s;
}
.badge-tag:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.follow {display:flex}
.follow .btn {float:left;width:33%;}
.post-image {max-height: none;overflow:none}
.post-image img {max-height: none;height:auto}