/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333333;
	background: #F8F5ED;
	min-height: 100vh;
}

.container {
	max-width: 1460px;
	margin: 0 auto;
	padding: 0 20px 40px 20px;
}

header {
	background: #F8F5ED;
	color: #333333;
	padding: 10px 0 0 0;
}

.header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #D4C4A8;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.logo a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.logo a:hover {
	opacity: 0.8;
}

.logo-primary {
	color: #6B5B45;
}

.logo-secondary {
	color: #8B7355;
	margin-left: 5px;
}

.main-nav {
	display: flex;
	gap: 30px;
}

.main-nav a {
	color: #333333;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 6px;
	transition: background 0.2s;
	font-weight: 500;
}

.main-nav a:hover {
	background: #E0D8C7;
	color: #6B5B45;
}

.header-main {
	text-align: center;
	padding: 30px 20px;
	background: #E0D8C7;
	color: #333333;
	margin: 20px 0 0 0;
	border: 1px solid #6B5B45;
	border-radius: 8px;
}

.header-main h1 {
	font-size: 2.5rem;
	margin-bottom: 8px;
	color: #333333;
}

.header-main .subtitle {
	font-size: 1.1rem;
	color: #6B5B45;
	margin-bottom: 20px;
}


/* Globales Suchfeld */
.global-search {
	display: flex;
	position: relative;
	max-width: 600px;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #6B5B45;
	overflow: visible;
}

.global-search input {
	flex: 1;
	padding: 15px 20px;
	border: none;
	font-size: 1rem;
	outline: none;
	background: transparent;
	border-radius: 8px 0 0 8px;
}

.global-search .search-btn {
	background: #6B5B45;
	color: white;
	border: none;
	padding: 15px 20px;
	cursor: pointer;
	font-size: 1.2rem;
	transition: background 0.2s;
	border-radius: 0 8px 8px 0;
}

.global-search .search-btn:hover {
	background: #8B7355;
}

/* Autocomplete Container */
.global-search-results {
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
	max-height: 400px;
	overflow: hidden;
	display: none;
	width: 100%;
	z-index: 1000;
	text-align: left;
	border: 1px solid #D4C4A8;
}


/* Willkommens-Features */
.welcome-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin: 40px 0;
	padding: 0 20px;
}

.feature-card {
	background: white;
	padding: 19px 15px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.feature-card h3 {
	color: #333333;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.feature-card p {
	color: #6B5B45;
	line-height: 1.5;
	font-size: 0.9rem;
	margin: 0;
}


.documents-section {
	margin: 40px 0;
}

.section-title {
	margin-bottom: 30px;
	text-align: center;
	position: relative;
}

.section-title h2 {
	font-family: 'Playfair Display', Georgia, serif;
	color: #6B5B45;
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	padding: 0 30px;
	display: inline-block;
	position: relative;
}

/* Dekorative Linie links und rechts */
.section-title h2::before,
.section-title h2::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 60px;
	height: 2px;
	background: linear-gradient(to right, transparent, #D4C4A8);
}

.section-title h2::before {
	right: 100%;
	margin-right: 20px;
	background: linear-gradient(to left, #D4C4A8, transparent);
}

.section-title h2::after {
	left: 100%;
	margin-left: 20px;
	background: linear-gradient(to right, #D4C4A8, transparent);
}

.document-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
	gap: 30px;
	justify-content: start;
}

/* ===== BÜCHER DESIGN (für #books) ===== */
#books .document-card {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	position: relative;
	width: 260px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Buch-Cover innerhalb der Card */
#books .document-card .book-cover {
	width: 220px;
	height: 293px;
	margin-bottom: 15px;
	position: relative;
	perspective: 1000px;
}

/* Datum auf dem Buchdeckel */
#books .document-card .book-date {
	position: absolute;
	bottom: 15px;
	left: 20px;
	right: 20px;
	color: #F8F5ED;
	font-size: 0.8rem;
	font-weight: 400;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	opacity: 0.9;
	z-index: 2;
}

#books .document-card h3 {
	/* Buchdeckel */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	margin: 0;
	padding: 35px 35px;
	
	/* Schriftart und Größe wie Artikel-Cover */
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.4;
	
	/* Buch-Stil */
	background: linear-gradient(135deg, #8B7355 0%, #6B5B45 50%, #5A4A35 100%);
	border-radius: 4px;
	box-shadow: 
		0 2px 4px rgba(0,0,0,0.1),
		0 4px 8px rgba(0,0,0,0.15),
		inset 0 0 0 1px rgba(255,255,255,0.1),
		inset -2px 0 4px rgba(0,0,0,0.2);
	
	/* Buchrücken-Effekt entfernt */
	
	/* Text-Styling */
	color: #F8F5ED;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	word-wrap: break-word;
	hyphens: auto;
}

/* Entfernt: Kein Hover-Effekt für Buchdeckel */

/* Goldene Prägung für Bücher */
#books .document-card h3::after {
	content: '';
	position: absolute;
	top: 15px;
	left: 20px;
	right: 20px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.6), transparent);
}

#books .document-card h3::before {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 20px;
	right: 20px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.6), transparent);
}

/* ===== ARTIKEL DESIGN (für #articles) ===== */
#articles .document-card {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	position: relative;
	width: 260px;
	min-height: 380px;
	display: flex;
	flex-direction: column;
}

/* Artikel-Header (Icon entfernt) */

#articles .document-card h3 {
	color: #333333;
	margin-bottom: 12px;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.4;
	border-left: 4px solid #6B5B45;
	padding-left: 12px;
	min-height: 60px;
	display: flex;
	align-items: center;
}

/* Untere Zeile bei Artikeln: Absätze links, Jahr rechts */
#articles .document-card .document-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	margin-top: auto;
	border-top: 1px solid #E0D8C7;
}

#articles .document-card .document-paragraphs {
	color: #8B7355;
	font-size: 0.85rem;
	font-weight: 500;
}

#articles .document-card .document-year {
	color: #8B7355;
	font-size: 0.85rem;
	font-weight: 500;
}

/* Standard Card Design (Fallback für Brochures etc.) */
.document-card {
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	position: relative;
	width: 260px;
	min-height: 380px;
	display: flex;
	flex-direction: column;
}

.document-card h3 {
	font-family: 'Playfair Display', Georgia, serif;
	color: #333333;
	margin-bottom: 12px;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.4;
}

.document-card a {
	color: inherit;
	text-decoration: none;
}

.document-meta {
	color: #6B5B45;
	font-size: 0.8rem;
	margin: 8px 0;
	background: #E0D8C7;
	padding: 4px 8px;
	border-radius: 4px;
	display: inline-block;
}

.document-description {
	color: #6B5B45;
	margin: 12px 0;
	line-height: 1.4;
	font-size: 0.85rem;
	flex-grow: 1;
}

.document-stats {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	color: #8B7355;
	padding-top: 12px;
	margin-top: auto;
}

.document-stats .stat-item {
	display: flex;
	align-items: center;
	gap: 4px;
}

.document-stats .stat-icon {
	font-size: 0.8rem;
}

.stat {
	display: flex;
	align-items: center;
	gap: 5px;
}

.btn-read {
	display: inline-block;
	background: #C4A97A;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	text-decoration: none;
	margin-top: 15px;
	transition: all 0.15s ease;
	font-weight: 500;
	font-size: 0.9rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-read:hover {
	background: #B59665;
	box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* "In Arbeit" Button (für unfertige Dokumente) */
.btn-in-progress {
	display: inline-block;
	background: #95a5a6;
	color: white;
	padding: 10px 20px;
	border-radius: 6px;
	margin-top: 15px;
	font-weight: 500;
	font-size: 0.95rem;
	opacity: 0.8;
	cursor: default;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Pagination Buttons */
.pagination {
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.pagination-btn {
	background: white;
	color: #6B5B45;
	border: 1px solid #D4C4A8;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pagination-btn:hover {
	background: #F8F5ED;
	border-color: #8B4513;
	color: #8B4513;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.pagination-btn.active {
	background: #8B4513;
	color: white;
	border-color: #8B4513;
	box-shadow: 0 3px 8px rgba(139,69,19,0.3);
}

.pagination-btn.active:hover {
	background: #6B5B45;
}

.stats-overview {
	background: white;
	border-radius: 8px;
	padding: 20px 25px;
	margin: 30px auto;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	text-align: center;
	max-width: 700px;
}

.stats-overview h2 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	color: #333333;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 15px;
	margin-top: 15px;
}

.stat-item {
	padding: 15px 10px;
	background: #E0D8C7;
	border-radius: 8px;
}

.stat-number {
	font-size: 1.8rem;
	font-weight: bold;
	color: #6B5B45;
}

.stat-label {
	color: #8B7355;
	font-size: 0.85rem;
	margin-top: 3px;
}

/* Listen-Layout für Artikel */
.document-list {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.document-list-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
	border-bottom: 1px solid #ecf0f1;
	transition: background 0.2s;
}

.document-list-item:last-child {
	border-bottom: none;
}

.document-list-item:hover {
	background: #f8f9fa;
}

.list-item-content {
	flex: 1;
}

.list-item-content h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.list-item-content h3 a {
	color: #2c3e50;
	text-decoration: none;
}

.list-item-content h3 a:hover {
	color: #3498db;
}

.list-item-description {
	color: #555;
	font-size: 0.9rem;
	margin-bottom: 8px;
	line-height: 1.4;
}

.list-item-meta {
	display: flex;
	gap: 15px;
	font-size: 0.85rem;
	color: #7f8c8d;
}

.list-item-link {
	background: #667eea;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	transition: background 0.2s;
	flex-shrink: 0;
}

.list-item-link:hover {
	background: #5568d3;
}

.section-title .count {
	color: #7f8c8d;
	font-size: 1rem;
	margin-left: 10px;
}

/* Responsive Grid */
@media (max-width: 1400px) {
	.document-grid {
		grid-template-columns: repeat(auto-fill, minmax(260px, 260px));
	}
}

/* Mobile Styles - Force Override */
@media (max-width: 768px) {
	.header-top {
		flex-direction: row;
		gap: 15px;
		position: relative;
	}
	
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border: 1px solid #D4C4A8;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1);
		padding: 20px;
		flex-direction: column;
		gap: 10px;
		z-index: 1000;
	}
	
	.main-nav.active {
		display: flex;
	}
	
	.main-nav a {
		padding: 12px 16px;
		border-radius: 6px;
		text-align: center;
		background: #F8F5ED;
		border: 1px solid #E0D8C7;
	}
	
	.main-nav a:hover {
		background: #E0D8C7;
		border-color: #D4C4A8;
	}
	
	/* Hamburger Button */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		width: 30px;
		height: 30px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		z-index: 1001;
	}
	
	.hamburger span {
		width: 100%;
		height: 3px;
		background: #8B4513;
		border-radius: 2px;
		transition: all 0.3s ease;
		transform-origin: center;
	}
	
	.hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	
	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
	
	.header-main h1 { 
		font-size: 2rem; 
	}
	
	.welcome-features {
		display: none;
	}
	
	.stats-overview {
		display: none;
	}
	
	/* Container Padding für Mobile - FORCE OVERRIDE */
	main .container {
		padding: 0 10px !important;
		max-width: calc(100vw - 20px) !important;
		box-sizing: border-box !important;
	}
	
	/* Document Grid - FORCE OVERRIDE */
	.document-grid { 
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
	}
	
	/* Document Cards - FORCE OVERRIDE */
	.document-card,
	#books .document-card,
	#articles .document-card {
		height: 220px !important;
		padding: 12px !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
		min-width: 0 !important;
	}
	
	/* Bücher-Cover größer */
	.book-cover {
		width: 160px !important;
		height: 210px !important;
		margin: 0 auto 15px auto !important;
	}
	
	/* Buch-Cover Text gut lesbar */
	.book-cover h3,
	#books .document-card h3 {
		font-size: 1rem !important;
		padding: 15px 12px !important;
		line-height: 1.3 !important;
		word-wrap: break-word !important;
	}
	
	.book-cover .book-date {
		font-size: 1.1rem !important;
	}
	
	.document-card h3 {
		font-size: 0.95rem !important;
		padding: 12px 8px !important;
		line-height: 1.2 !important;
		margin-bottom: 8px !important;
		box-sizing: border-box !important;
	}
	.document-list-item {
		flex-direction: column;
		align-items: flex-start;
	}
	.list-item-link {
		align-self: flex-end;
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	/* Container - FORCE OVERRIDE */
	main .container {
		padding: 0 8px !important;
		max-width: calc(100vw - 16px) !important;
		box-sizing: border-box !important;
	}
	
	/* Document Grid - FORCE OVERRIDE */
	.document-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 8px !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
	}
	
	/* Document Cards - FORCE OVERRIDE */
	.document-card,
	#books .document-card,
	#articles .document-card {
		height: 200px !important;
		padding: 10px !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
		width: 100% !important;
		min-width: 0 !important;
	}
	
	/* Bücher-Cover für kleine Bildschirme */
	.book-cover {
		margin: 0 auto 12px auto !important;
	}
	
	/* Buch-Cover Text für kleine Bildschirme */
	.book-cover h3,
	#books .document-card h3 {
		font-size: 0.95rem !important;
		padding: 12px 10px !important;
		line-height: 1.2 !important;
		word-wrap: break-word !important;
	}
	
	.book-cover .book-date {
		font-size: 1rem !important;
	}
	
	.document-card h3 {
		font-size: 1.00rem !important;
		line-height: 1.2 !important;
		padding: 10px 6px !important;
		margin-bottom: 6px !important;
		box-sizing: border-box !important;
	}
	
	.document-card .description {
		font-size: 0.7rem !important;
		line-height: 1.2 !important;
		margin-bottom: 6px !important;
	}
	
	.document-card .date {
		font-size: 0.65rem !important;
	}
}

/* ===== SUCHERGEBNISSE DESIGN ===== */

.search-header {
	background: white;
	padding: 30px;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
}

.search-header h1 {
	color: #6B5B45;
	font-size: 1.8rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.search-header p {
	color: #8B7355;
	font-size: 1rem;
}

.search-results {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.search-document-results {
	background: white;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
	transition: all 0.2s ease;
}

.search-document-results:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	border-color: #6B5B45;
}

.search-document-title {
	margin: 0 0 8px 0;
	padding: 0;
}

.search-document-title a {
	color: #6B5B45;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	transition: color 0.2s;
}

.search-document-title a:hover {
	color: #8B7355;
}

.search-document-meta {
	color: #8B7355;
	font-size: 0.9rem;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #E0D8C7;
}

.search-chapter-result {
	margin-bottom: 20px;
	padding: 15px;
	background: #F8F5ED;
	border-radius: 6px;
	border-left: 3px solid #6B5B45;
}

.search-chapter-result:last-child {
	margin-bottom: 0;
}

.search-chapter-title {
	margin: 0 0 12px 0;
	font-size: 1.1rem;
}

.search-chapter-title a {
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.search-chapter-title a:hover {
	color: #6B5B45;
}

.search-chapter-matches {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.search-snippet {
	padding: 10px 15px;
	background: white;
	border-radius: 4px;
	line-height: 1.6;
	font-size: 0.95rem;
	color: #333333;
}

.snippet-before,
.snippet-after {
	color: #666666;
}

.snippet-match {
	background: #FFE082;
	color: #333333;
	font-weight: 600;
	padding: 2px 4px;
	border-radius: 3px;
}

.no-results {
	background: white;
	padding: 60px 30px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #D4C4A8;
}

.no-results h2 {
	color: #6B5B45;
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: 600;
}

.no-results p {
	color: #8B7355;
	font-size: 1.1rem;
}

.no-results a {
	color: #6B5B45;
	text-decoration: none;
	font-weight: 600;
	border-bottom: 2px solid #6B5B45;
	transition: all 0.2s;
}

.no-results a:hover {
	color: #8B7355;
	border-bottom-color: #8B7355;
}

/* Responsive Anpassungen für Suchergebnisse */
@media (max-width: 768px) {
	.search-header {
		padding: 20px;
	}
	
	.search-header h1 {
		font-size: 1.4rem;
	}
	
	.search-document-results {
		padding: 20px;
	}
	
	.search-document-title a {
		font-size: 1.2rem;
	}
	
	.search-chapter-result {
		padding: 12px;
	}
	
	.search-snippet {
		padding: 8px 12px;
		font-size: 0.9rem;
	}
}

/* ===== BUCHCOVER FÜR DETAILS-SEITE ===== */
.book-cover-details {
	width: 280px;
	height: 373px;
	position: relative;
	perspective: 1000px;
	margin-bottom: 20px;
}

/* Datum auf dem Buchdeckel (Details-Seite) */
.book-date-details {
	position: absolute;
	bottom: 20px;
	left: 25px;
	right: 25px;
	color: #F8F5ED;
	font-size: 0.9rem;
	font-weight: 400;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	opacity: 0.9;
	z-index: 2;
}

.book-cover-details h3 {
	/* Buchdeckel */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	margin: 0;
	padding: 35px 35px;
	
	/* Schriftart wie Artikel-Cover */
	font-family: 'Playfair Display', Georgia, serif;
	
	/* Buch-Stil */
	background: linear-gradient(135deg, #8B7355 0%, #6B5B45 50%, #5A4A35 100%);
	border-radius: 4px;
	box-shadow: 
		0 2px 4px rgba(0,0,0,0.1),
		0 4px 8px rgba(0,0,0,0.15),
		0 8px 16px rgba(0,0,0,0.1),
		inset 0 0 0 1px rgba(255,255,255,0.1),
		inset -2px 0 4px rgba(0,0,0,0.2);
	
	/* Buchrücken-Effekt */
	border-left: 12px solid #5A4A35;
	border-right: 4px solid #4A3A25;
	
	/* Text-Styling */
	color: #F8F5ED;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	word-wrap: break-word;
	hyphens: auto;
}

/* Goldene Prägung für Buchcover (Details-Seite) */
.book-cover-details h3::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 25px;
	right: 25px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.6), transparent);
}

.book-cover-details h3::before {
	content: '';
	position: absolute;
	bottom: 20px;
	left: 25px;
	right: 25px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.6), transparent);
}

