/**
 * Enhanced Expert Profile Styles
 * 
 * @package HyperExpert
 */

/* Profile Header */
.hyperexpert-profile-headline {
	font-size: 1.2em;
	color: #666;
	margin: 10px 0;
	font-style: italic;
}

.hyperexpert-profile-meta {
	margin: 15px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hyperexpert-profile-meta .meta-item {
	display: inline-flex;
	align-items: center;
	color: #666;
	font-size: 14px;
}

.hyperexpert-profile-meta .meta-icon {
	font-size: 16px;
	margin-right: 5px;
}

/* Social Links */
.hyperexpert-social-links {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hyperexpert-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #f5f5f5;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid #e0e0e0;
}

.hyperexpert-social-links a:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	border-color: #5b47fb;
}

.hyperexpert-social-links .social-icon {
	font-size: 20px;
	line-height: 1;
}

/* Expert List Grid - Enhanced */
.hyperexpert-profile-card .profile-social-mini {
	margin-top: 10px;
	display: flex;
	gap: 8px;
	justify-content: center;
}

.hyperexpert-profile-card .profile-social-mini a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: #f9f9f9;
	border-radius: 50%;
	text-decoration: none;
	font-size: 14px;
}

.hyperexpert-profile-card .profile-social-mini a:hover {
	background: #5b47fb;
}

.hyperexpert-profile-card .profile-headline {
	font-size: 12px;
	color: #888;
	margin-top: 5px;
	font-style: italic;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.hyperexpert-profile-card .profile-location {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hyperexpert-profile-meta {
		flex-direction: column;
		gap: 10px;
	}
	
	.hyperexpert-social-links {
		justify-content: center;
	}
}

/* Profile Image */
.hyperexpert-profile-image-large img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Expert Dashboard Profile Form */
.hyperexpert-profile-edit .profile-image-section {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

.hyperexpert-profile-edit .profile-image-upload {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.hyperexpert-profile-edit .current-image img {
	width: 150px;
	height: 150px;
	border-radius: 8px;
	object-fit: cover;
	border: 2px solid #e0e0e0;
}

.hyperexpert-profile-edit .upload-controls {
	flex: 1;
}

.hyperexpert-profile-edit .form-section {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	margin-bottom: 30px;
}

.hyperexpert-profile-edit .form-section h4 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #333;
	font-size: 18px;
}

.hyperexpert-profile-edit .social-icon {
	font-size: 18px;
	margin-right: 5px;
	vertical-align: middle;
}

/* Form Elements */
.hyperexpert-profile-edit input[type="text"],
.hyperexpert-profile-edit input[type="url"],
.hyperexpert-profile-edit input[type="number"],
.hyperexpert-profile-edit textarea,
.hyperexpert-profile-edit select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.hyperexpert-profile-edit input[type="text"]:focus,
.hyperexpert-profile-edit input[type="url"]:focus,
.hyperexpert-profile-edit input[type="number"]:focus,
.hyperexpert-profile-edit textarea:focus,
.hyperexpert-profile-edit select:focus {
	border-color: #5b47fb;
	outline: none;
	box-shadow: 0 0 0 2px rgba(91, 71, 251, 0.1);
}

.hyperexpert-profile-edit .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.hyperexpert-profile-edit .form-row .form-group {
	flex: 1;
}

.hyperexpert-profile-edit .form-group {
	margin-bottom: 20px;
}

.hyperexpert-profile-edit .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
}

.hyperexpert-profile-edit .form-group .description {
	margin-top: 5px;
	font-size: 13px;
	color: #666;
}

.hyperexpert-profile-edit .button-primary {
	background: #5b47fb;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.hyperexpert-profile-edit .button-primary:hover {
	background: #4a39d9;
}

/* Success/Error Messages */
#hyperexpert-profile-messages .notice {
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 20px;
}

#hyperexpert-profile-messages .notice-success {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

#hyperexpert-profile-messages .notice-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}
