/**
 * single-karakterler.php
 */

.character-profile-page {
	background: #fff;
	border-top: 4px solid #ffba00;
	padding: 0;
	font-family: 'Lato', sans-serif;
}

.char-profile-grid {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.char-profile-sidebar {
	width: 320px;
	flex-shrink: 0;
}

.char-main-image-box {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	border: 4px solid #ffba00;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	aspect-ratio: 1 / 1;
	position: relative;
	background: #fff;
}

.char-main-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.char-no-image-placeholder {
	width: 100%;
	height: 100%;
	background: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
	color: #ccc;
	font-family: 'Cinzel', serif;
}

.char-profile-content {
	flex: 1;
	padding-top: 10px;
}

.char-title {
	font-family: 'Cinzel', serif;
	font-size: 48px;
	font-weight: 700;
	color: #0f1c2e;
	margin: 0 0 15px;
	line-height: 1.1;
}

.char-role-badge {
	display: inline-block;
	background: #ffba00;
	color: #fff;
	padding: 6px 20px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 35px;
	box-shadow: 0 4px 10px rgba(255, 186, 0, 0.3);
}

.char-analysis-box {
	background: #fcfcfc;
	border-left: 4px solid #ffba00;
	border-radius: 8px;
	margin-bottom: 40px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.analysis-header {
	padding: 0 25px;
	margin-top: 25px;
	font-weight: 900;
	color: #0f1c2e;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: 'Cinzel', serif;
}

.analysis-header i {
	color: #0f1c2e;
	font-size: 20px;
}

.analysis-body {
	padding: 15px 25px 25px;
	color: #555;
	line-height: 1.8;
	font-size: 16px;
	font-family: 'Merriweather', serif;
}

.analysis-body p:last-child {
	margin: 0;
}

.related-book-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 15px;
	text-decoration: none;
	transition: 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
	max-width: 500px;
}

.related-book-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	border-color: #ffba00;
}

.rb-icon {
	width: 50px;
	height: 75px;
	flex-shrink: 0;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #c0392b;
	color: #fff;
}

.rb-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rb-icon i {
	font-size: 24px;
}

.rb-info {
	flex: 1;
}

.rb-title {
	font-family: 'Cinzel', serif;
	font-size: 18px;
	font-weight: 800;
	color: #0f1c2e;
	display: block;
	margin-bottom: 5px;
}

.related-book-card:hover .rb-title {
	color: #d35400;
}

.rb-author {
	font-size: 13px;
	color: #777;
	font-family: 'Lato', sans-serif;
}

.rb-author strong {
	color: #333;
}

@media (max-width: 900px) {
	.char-profile-grid {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.char-profile-sidebar {
		width: 100%;
		max-width: 300px;
		margin-bottom: 30px;
	}

	.char-title {
		font-size: 36px;
	}

	.analysis-header {
		justify-content: center;
	}

	.related-book-card {
		margin: 0 auto;
		text-align: left;
	}
}
