/**
 * D2G Author Box Widget Styles
 */

.d2g-author-box-card {
	background-color: #0B3D36;
	color: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.d2g-author-box-card {
		flex-direction: row;
		align-items: flex-start;
	}
}

/* Subtle texture overlay for sand/desert feel */
.d2g-author-box-card.has-texture::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c89b5b' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1;
}

/* Decorative glow orb in corner */
.d2g-author-box-orb {
	position: absolute;
	top: 0;
	right: 0;
	width: 128px;
	height: 128px;
	background-color: rgba(200, 155, 91, 0.2);
	border-radius: 50%;
	filter: blur(48px);
	transform: translate(50%, -50%);
	pointer-events: none;
	z-index: 1;
}

/* Avatar */
.d2g-author-avatar-wrap {
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.d2g-author-avatar {
	width: 112px;
	height: 112px;
	border-radius: 50%;
	border: 2px solid #C89B5B;
	object-fit: cover;
	display: block;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Content */
.d2g-author-content {
	flex: 1;
	text-align: center;
	position: relative;
	z-index: 2;
}

@media (min-width: 768px) {
	.d2g-author-content {
		text-align: left;
	}
}

.d2g-author-badge {
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: #C89B5B;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 4px;
}

.d2g-author-name {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 12px 0;
	line-height: 1.3;
}

.d2g-author-name a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.d2g-author-name a:hover {
	color: #C89B5B;
}

.d2g-author-bio {
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(248, 247, 244, 0.8);
	margin: 0 0 24px 0;
}

/* Social icons row */
.d2g-author-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

@media (min-width: 768px) {
	.d2g-author-socials {
		justify-content: flex-start;
	}
}

.d2g-author-social-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.25s ease;
	font-size: 16px;
}

.d2g-author-social-btn:hover,
.d2g-author-social-btn:focus {
	background-color: #C89B5B;
	color: #ffffff;
	transform: translateY(-2px);
}

.d2g-author-social-btn svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}
