/* ===================================
   MODERNE AUTORENSEITE - CSS KOMPAKT
   =================================== */

/* Author Card - Kompakter */
.author-card {
	margin-bottom: 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	background: var(--gi-section-hd);
	border: var(--gi-shadow-border);
	box-shadow: var(--gi-shadow-box);
	border-radius: var(--gi-border-radius-5);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Author Header Section - Kompakter */
.author-header-section {
	width: 100%;
	background: var(--gi-section-hd);
	padding: 20px 25px;
	border-bottom: 2px solid #2980b9;
}

.author-header-content {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
}

/* Author Image - Kleiner */
.author-img {
	flex: 0 0 90px;
	height: 90px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #2980b9;
	box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
	transition: transform 0.3s ease;
}

.author-img:hover {
	transform: scale(1.05);
}

.author-img img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	display: block;
}

/* Author Details - Kompakter */
.author-details {
	flex: 1;
	min-width: 250px;
}

.author-name-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.author-name {
	font-size: 1.6em;
	margin: 0;
	font-weight: 700;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.author-role-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
	border-radius: 16px;
	font-size: 0.75em;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 2px 6px rgba(41, 128, 185, 0.4);
}

.author-position {
	font-size: 1em;
	color: #bdc3c7;
	margin: 6px 0;
	font-weight: 400;
}

/* Social Icons - Kompakter */
.author-social-icons {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.author-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: rgba(41, 128, 185, 0.2);
	border-radius: 50%;
	color: #3498db;
	font-size: 0.95em;
	transition: all 0.3s ease;
	text-decoration: none;
}

.author-social-icons a:hover {
	background: #2980b9;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 3px 10px rgba(41, 128, 185, 0.5);
}

/* Bio Section - Kompakter */
.author-bio-section {
	width: 100%;
	padding: 20px 25px;
	background: var(--gi-background-box);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-bio-section p {
	margin: 0;
	font-size: 0.95em;
	line-height: 1.6;
	color: #ecf0f1;
}

/* Stats Section - Kompakter */
.author-stats {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
	gap: 15px;
	padding: 20px 25px;
	background: rgba(41, 128, 185, 0.05);
}

.author-stat-item {
	text-align: center;
	padding: 12px;
	background: rgba(52, 152, 219, 0.1);
	border-radius: var(--gi-border-radius-5);
	border: 1px solid rgba(52, 152, 219, 0.2);
	transition: all 0.3s ease;
}

.author-stat-number {
	display: block;
	font-size: 1.8em;
	font-weight: 700;
	color: #3498db;
	margin-bottom: 4px;
}

.author-stat-label {
	display: block;
	font-size: 0.8em;
	color: #95a5a6;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

/* Steam Section - Kompakter */
.steam-section {
	width: 100%;
	padding: 20px 25px;
	background: var(--gi-background-box);
}

.steam-section-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.steam-section-title i {
	font-size: 1.3em;
	color: #3498db;
}

.steam-section-title h3 {
	margin: 0;
	font-size: 1.3em;
	font-weight: 600;
	color: #ecf0f1;
}

/* Steam Cards Container - Kompakter */
.steam-cards-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	gap: 15px;
}

/* Steam User Card - Kompakter */
.steam-card-modern {
	background: linear-gradient(135deg, rgba(23, 26, 33, 0.9) 0%, rgba(27, 40, 56, 0.9) 100%);
	border: 1px solid rgba(102, 192, 244, 0.2);
	border-radius: var(--gi-border-radius-5);
	padding: 15px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.steam-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steam-avatar {
	flex-shrink: 0;
}

.steam-avatar img {
	width: 55px;
	height: 55px;
	border-radius: var(--gi-border-radius-5);
	border: 2px solid #66c0f4;
	transition: transform 0.3s ease;
}

.steam-avatar a:hover img {
	transform: scale(1.05);
}

.steam-user-info {
	flex: 1;
	min-width: 0;
}

.steam-user-info h4 {
	margin: 0 0 4px 0;
	font-size: 1.1em;
	font-weight: 600;
}

.steam-user-info h4 a {
	color: #66c0f4;
	text-decoration: none;
	transition: color 0.3s ease;
}

.steam-user-info h4 a:hover {
	color: #c7d5e0;
}

.steam-level {
	display: inline-block;
	background: linear-gradient(90deg, #06BFFF 0%, #2D73FF 100%);
	color: #fff;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 0.75em;
	font-weight: 600;
}

.steam-stats-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.steam-stats-list li {
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	font-size: 0.85em;
	color: #c7d5e0;
}

.steam-stats-list li:last-child {
	border-bottom: none;
}

.steam-stats-list li strong {
	color: #8f98a0;
	margin-right: 6px;
}

.steam-status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 10px;
	font-size: 0.85em;
	font-weight: 600;
}

.steam-status.online {
	background: #57cbde;
	color: #fff;
}

.steam-status.offline {
	background: #898989;
	color: #fff;
}

/* Steam Group Card - Kompakter */
.steam-group-card {
	background: linear-gradient(135deg, rgba(23, 26, 33, 0.9) 0%, rgba(27, 40, 56, 0.9) 100%);
	border: 1px solid rgba(102, 192, 244, 0.2);
	border-radius: var(--gi-border-radius-5);
	padding: 15px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}
.steam-group-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.steam-group-avatar img {
	width: 55px;
	height: 55px;
	border-radius: var(--gi-border-radius-5);
	border: 2px solid #66c0f4;
}
.steam-group-avatar a:hover img {
  transform: scale(1.05);
}

.steam-group-info h4 {
	margin: 0 0 4px 0;
	font-size: 1.1em;
	font-weight: 600;
}

.steam-group-info h4 a {
	color: #66c0f4;
	text-decoration: none;
}

.steam-group-headline {
	font-size: 0.8em;
	color: #8f98a0;
	font-style: italic;
}

.steam-group-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-bottom: 12px;
}

.steam-group-stat {
	text-align: center;
	padding: 8px;
	background: rgba(102, 192, 244, 0.1);
	border-radius: var(--gi-border-radius-5);
}

.steam-group-stat-value {
	display: block;
	font-size: 1.3em;
	font-weight: 700;
	color: #66c0f4;
}

.steam-group-stat-label {
	display: block;
	font-size: 0.7em;
	color: #8f98a0;
	text-transform: uppercase;
	margin-top: 2px;
}

.steam-chat-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 15px;
	background: linear-gradient(90deg, #06BFFF 0%, #2D73FF 100%);
	color: white !important;
	text-decoration: none;
	border-radius: var(--gi-border-radius-5);
	font-size: var(--base-font-size);
	font-weight: 600;
	transition: all 0.3s ease;
}

.steam-chat-link:hover {
	transform: translateY(-2px);
}

/* Articles Section - Kompakter */
.articles-section {
	margin-top: 25px;
}

.articles-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.articles-section-header h2 {
	margin: 0;
	font-size: 1.6em;
	font-weight: 600;
	color: #ecf0f1;
}

.articles-count {
	background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
	color: #fff;
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 0.9em;
	font-weight: 600;
}

.article-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 5px;
	margin-bottom: 10px;
	background: var(--gi-background-box);
	border: var(--gi-shadow-border);
	border-radius: var(--gi-border-radius-5);
	transition: all 0.3s ease;
}

.article-item:hover {
	transform: translateX(4px);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
	border-color: rgba(52, 152, 219, 0.5);
}

.article-icon {
	flex-shrink: 0;
}

.article-icon img {
	width: 45px;
	height: 45px;
	border-radius: var(--gi-border-radius-5);
	border: 2px solid rgba(52, 152, 219, 0.3);
}

.article-title {
	flex: 1;
	min-width: 0;
}

.article-title h3 {
	margin: 0;
	font-size: 1em;
	font-weight: 500;
}

.article-title h3 a {
	color: #ecf0f1;
	text-decoration: none;
	transition: color 0.3s ease;
}

.article-title h3 a:hover {
	color: #3498db;
}

/* Responsive - Mobil */
@media (max-width: 768px) {
	.author-header-content {
		flex-direction: column;
		text-align: center;
	}
	
	.author-img {
		flex: 0 0 80px;
		height: 80px;
	}
	
	.author-img img {
		width: 80px;
		height: 80px;
	}
	
	.author-name {
		font-size: 1.4em;
	}
	
	.author-name-wrapper {
		justify-content: center;
	}
	
	.author-social-icons {
		justify-content: center;
	}
	
	.steam-cards-container {
		grid-template-columns: 1fr !important;
	}
	
	.author-stats {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 10px;
		padding: 15px 20px;
	}
	
	.author-stat-item {
		padding: 10px;
	}
	
	.author-stat-number {
		font-size: 1.5em;
	}
	
	.author-stat-label {
		font-size: 0.75em;
	}
	
	/* Steam Section Mobile */
	.steam-section {
		padding: 15px 20px;
	}
	
	.steam-section-title {
		margin-bottom: 12px;
	}
	
	.steam-section-title h3 {
		font-size: 1.2em;
	}
	
	.steam-cards-container {
		gap: 12px;
	}
	
	.steam-card-modern,
	.steam-group-card {
		padding: 12px;
	}
	
	/* Articles Section Mobile */
	.articles-section-header h2 {
		font-size: 1.4em;
	}
	
	.article-item {
		gap: 12px;
		padding: 8px;
	}
	
	.article-icon img {
		width: 40px;
		height: 40px;
	}
	
	.article-title h3 {
		font-size: 0.95em;
	}
}

@media (max-width: 480px) {
	.author-header-section {
		padding: 15px;
	}
	
	.author-bio-section {
		padding: 15px;
	}
	
	.author-bio-section p {
		font-size: 0.9em;
	}
	
	.author-name {
		font-size: 1.3em;
	}
	
	.author-position {
		font-size: 0.95em;
	}
	
	.author-role-badge {
		font-size: 0.7em;
		padding: 3px 10px;
	}
	
	.author-social-icons a {
		width: 32px;
		height: 32px;
		font-size: 0.9em;
	}
	
	.author-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
		padding: 12px 15px;
	}
	
	.author-stat-item {
		padding: 8px;
	}
	
	.author-stat-number {
		font-size: 1.3em;
	}
	
	.author-stat-label {
		font-size: 0.7em;
	}
	
	/* Steam Section Mobile */
	.steam-section {
		padding: 12px 15px;
	}
	
	.steam-section-title {
		margin-bottom: 10px;
		padding-bottom: 8px;
	}
	
	.steam-section-title h3 {
		font-size: 1.1em;
	}
	
	.steam-section-title i {
		font-size: 1.1em;
	}
	
	.steam-cards-container {
		gap: 10px;
	}
	
	.steam-card-modern,
	.steam-group-card {
		padding: 10px;
	}
	
	.steam-card-header,
	.steam-group-header {
		gap: 10px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
	
	.steam-avatar img,
	.steam-group-avatar img {
		width: 50px;
		height: 50px;
	}
	
	.steam-user-info h4,
	.steam-group-info h4 {
		font-size: 1em;
	}
	
	.steam-level {
		font-size: 0.7em;
		padding: 2px 6px;
	}
	
	.steam-stats-list li {
		font-size: 0.8em;
		padding: 5px 0;
	}
	
	.steam-group-stats {
		gap: 8px;
		margin-bottom: 10px;
	}
	
	.steam-group-stat {
		padding: 6px;
	}
	
	.steam-group-stat-value {
		font-size: 1.1em;
	}
	
	.steam-group-stat-label {
		font-size: 0.65em;
	}
	
	.steam-chat-link {
		padding: 7px 12px;
		font-size: 0.9em;
		gap: 6px;
	}
	
	.steam-group-headline {
		font-size: 0.75em;
	}
	
	/* Articles Section Mobile */
	.articles-section {
		margin-top: 20px;
	}
	
	.articles-section-header {
		margin-bottom: 15px;
		padding-bottom: 10px;
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.articles-section-header h2 {
		font-size: 1.3em;
	}
	
	.articles-count {
		font-size: 0.85em;
		padding: 3px 10px;
	}
	
	.article-item {
		gap: 10px;
		padding: 6px;
		margin-bottom: 8px;
	}
	
	.article-icon img {
		width: 38px;
		height: 38px;
	}
	
	.article-title h3 {
		font-size: 0.9em;
	}
}

/* Extra kleine Geräte */
@media (max-width: 360px) {
	.author-header-section {
		padding: 12px;
	}
	
	.author-img {
		flex: 0 0 70px;
		height: 70px;
	}
	
	.author-img img {
		width: 70px;
		height: 70px;
	}
	
	.author-name {
		font-size: 1.2em;
	}
	
	.author-bio-section,
	.steam-section {
		padding: 10px 12px;
	}
	
	.author-stats {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 6px;
		padding: 10px 12px;
	}
	
	.steam-cards-container {
		grid-template-columns: 1fr !important;
	}
	
	.steam-card-modern,
	.steam-group-card {
		padding: 8px;
	}
	
	.steam-avatar img,
	.steam-group-avatar img {
		width: 45px;
		height: 45px;
	}
	
	.article-icon img {
		width: 35px;
		height: 35px;
	}
}