/* Main Container */
.authors-overview-container {
	padding: 0;
}

/* Section Headers */
.authors-section-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 20px 0 15px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(52, 152, 219, 0.2);
}

.authors-section-header:first-of-type {
	margin-top: 0;
}

.authors-section-header h2 {
	margin: 0;
	font-size: 1.3em;
	font-weight: 600;
	color: #ecf0f1;
	display: flex;
	align-items: center;
	gap: 10px;
}

.authors-section-header i {
	font-size: 0.95em;
	color: #5dade2;
}

/* Section Description */
.authors-section-description {
background: linear-gradient(135deg, rgba(23, 26, 33, 0.9) 0%, rgba(27, 40, 56, 0.9) 100%);
  padding: 30px 35px;
  box-shadow: var(--gi-shadow-box);
  margin-bottom: 50px;
  margin-top: -20px;
  border: 1px solid #3f4651;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(63, 70, 81);
  border-left: 4px solid #4a9eff;
  border-radius: var(--gi-border-radius-5);
  position: relative;
  overflow: hidden;
}

.authors-section-description h4 {
	margin: 0 0 8px 0;
	color: #5dade2;
	font-size: 1em;
	font-weight: 600;
}

.authors-section-description p {
	margin: 0 0 8px 0;
	color: #bdc3c7;
	font-size: 0.9em;
}

.authors-section-description p:last-child {
	margin-bottom: 0;
}

.authors-section-description a {
	color: #5dade2;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.authors-section-description a:hover {
	color: #85c7f2;
	text-decoration: underline;
}

/* Authors Grid Container */
.authors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 25px;
}

/* Zwei Spalten auf großen Bildschirmen */
@media (min-width: 900px) {
	.authors-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
}

@media (min-width: 1400px) {
	.authors-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

/* Author Card - Professional Corporate Layout */
.author-card-overview {
	background: var(--gi-background-box);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--gi-border-radius-5);
	padding: 16px 20px;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 18px;
	text-align: left;
	position: relative;
}

.author-card-overview:hover {
	background: rgba(52, 152, 219, 0.03);
	border-color: rgba(52, 152, 219, 0.25);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Author Avatar - Clean & Simple */
.author-overview-img {
	width: 64px;
	height: 64px;
	min-width: 64px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(52, 152, 219, 0.3);
	transition: border-color 0.2s ease;
}

.author-card-overview:hover .author-overview-img {
	border-color: rgba(52, 152, 219, 0.6);
}

.author-overview-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Author Details - Clean Typography */
.author-overview-details {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.author-overview-name {
	margin: 0;
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.3;
	color: #ecf0f1;
}

.author-overview-name a {
	color: #ecf0f1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.author-overview-name a:hover {
	color: #5dade2;
}

.author-overview-position {
	color: #95a5a6;
	font-size: 0.88em;
	margin: 0;
	font-weight: 400;
	line-height: 1.4;
}

/* Rank Badge - Subtle & Professional */
.author-rank-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	background: rgba(52, 152, 219, 0.12);
	border-radius: 4px;
	font-size: 0.72em;
	font-weight: 500;
	color: #5dade2;
	margin-top: 4px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.author-rank-badge.editor-in-chief {
	background: rgba(231, 76, 60, 0.12);
	color: #e88d84;
}

.author-rank-badge.contributor {
	background: rgba(26, 188, 156, 0.12);
	color: #6dd5c3;
}

.author-rank-badge i {
	font-size: 0.95em;
	opacity: 0.8;
}

/* View Profile Button - Minimal & Clean */
.author-view-profile {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 18px;
	background: transparent;
	border: 1px solid rgba(52, 152, 219, 0.3);
	border-radius: 4px;
	color: #5dade2;
	text-decoration: none;
	font-size: 0.88em;
	font-weight: 500;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.author-view-profile:hover {
	background: rgba(52, 152, 219, 0.08);
	border-color: #5dade2;
	color: #5dade2;
}

.author-view-profile i {
	font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 899px) {
	.authors-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.authors-section-header h2 {
		font-size: 1.3em;
	}
	
	.authors-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.author-card-overview {
		padding: 14px 16px;
		gap: 14px;
	}
	
	.author-overview-img {
		width: 56px;
		height: 56px;
		min-width: 56px;
	}
	
	.author-overview-name {
		font-size: 1.05em;
	}
	
	.author-overview-position {
		font-size: 0.85em;
	}
	
	.authors-section-description {
		padding: 10px 15px;
		font-size: 0.85em;
	}
	
	.authors-section-description h4 {
		font-size: 0.95em;
		margin-bottom: 6px;
	}
	
	.author-rank-badge {
		font-size: 0.68em;
		padding: 3px 8px;
	}
	
	.author-view-profile {
		font-size: 0.82em;
		padding: 8px 14px;
	}
}

@media (max-width: 480px) {
	.authors-section-header {
		gap: 8px;
		margin: 15px 0 10px 0;
		padding-bottom: 6px;
	}
	
	.authors-section-header h2 {
		font-size: 1.2em;
	}
	
	.authors-grid {
		gap: 8px;
	}
	
	.author-card-overview {
		padding: 12px 14px;
		gap: 12px;
	}
	
	.author-overview-img {
		width: 50px;
		height: 50px;
		min-width: 50px;
	}
	
	.author-overview-details {
		flex: 1;
		min-width: 0;
	}
	
	.author-overview-name {
		font-size: 1em;
	}
	
	.author-overview-position {
		font-size: 0.8em;
	}
	
	.author-rank-badge {
		font-size: 0.65em;
		padding: 3px 7px;
		gap: 3px;
	}
	
	.author-view-profile {
		padding: 7px 12px;
		font-size: 0.78em;
	}
	
	.authors-section-description {
		padding: 8px 12px;
		margin-bottom: 10px;
	}
	
	.authors-section-description h4 {
		font-size: 0.9em;
		margin-bottom: 5px;
	}
	
	.authors-section-description p {
		font-size: 0.8em;
		margin-bottom: 6px;
	}
}

/* Extra kleine Geräte */
@media (max-width: 360px) {
	.author-card-overview {
		padding: 10px 12px;
		gap: 10px;
	}
	
	.author-overview-img {
		width: 46px;
		height: 46px;
		min-width: 46px;
	}
	
	.author-overview-name {
		font-size: 0.95em;
	}
	
	.author-overview-position {
		font-size: 0.75em;
	}
	
	.author-view-profile {
		font-size: 0.75em;
		padding: 6px 10px;
	}
}

/* Empty State */
.authors-empty-state {
	text-align: center;
	padding: 50px 20px;
	color: #7f8c8d;
}

.authors-empty-state i {
	font-size: 3em;
	color: rgba(52, 152, 219, 0.3);
	margin-bottom: 15px;
}

.authors-empty-state p {
	font-size: 0.95em;
	margin: 0;
}