/**
 * CSN Guest Box - Single Podcast
 * Light theme, appended after content inside the l8 column
 */

.csn-guest-box {
	margin-bottom: 1.5rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.csn-guest-box__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* Guest Card */
.csn-guest-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1 1 300px;
	min-width: 280px;
	padding: 1rem;
	background: #f8fafc;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	transition: box-shadow 0.2s ease;
}

.csn-guest-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Foto */
.csn-guest-card__photo-wrap {
	flex-shrink: 0;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #e2e8f0;
}

.csn-guest-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.csn-guest-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Info */
.csn-guest-card__info {
	flex: 1;
	min-width: 0;
}

.csn-guest-card__name {
	margin: 0 0 0.25rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.3;
}

.csn-guest-card__affiliation {
	margin: 0 0 0.5rem;
	font-size: 0.85rem;
	color: #64748b;
	line-height: 1.4;
}

.csn-guest-card__scholar-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	color: #4285f4;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
}

.csn-guest-card__scholar-link:hover {
	color: #1a73e8;
	text-decoration: underline;
}

.csn-guest-card__scholar-link svg {
	width: 14px;
	height: 14px;
}

/* Responsive */
@media (max-width: 600px) {
	.csn-guest-box {
		padding: 1rem;
		margin-top: 1.5rem;
	}

	.csn-guest-card {
		flex-direction: column;
		text-align: center;
		padding: 1.25rem;
	}

	.csn-guest-card__photo-wrap {
		width: 80px;
		height: 80px;
	}
}
