/* ================= HERO ROOT ================= */
.dr1058hero {
	padding-top: 80px;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.12),
		transparent 40%),
		radial-gradient(circle at 90% 10%, rgba(250, 204, 21, 0.10),
		transparent 40%), linear-gradient(180deg, #020617, #030712);
	color: #fff;
}

/* ================= INNER ================= */
.dr1058hero-inner {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: auto;
	align-items: center;
	gap: 40px;
}

/* ================= IMAGE ================= */
.dr1058hero-image {
	flex: 1;
	position: relative;
}

.dr1058hero-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	object-fit: cover;
	object-position: center top;
	display: block;
}

/* ================= CONTENT ================= */
.dr1058hero-content {
	flex: 1;
	padding: 40px;
}

/* ================= BADGE ================= */
.hero-badge {
	display: inline-block;
	width: auto;
	max-width: fit-content;
	font-size: 11px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #cbd5e1;
	margin-bottom: 14px;
}

/* ================= TITLE ================= */
.dr1058hero h1 {
	font-size: clamp(32px, 5vw, 50px);
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 8px;
}

/* ================= ROLE ================= */
.hero-role {
	font-size: 15px;
	color: #93c5fd;
	margin-bottom: 16px;
}

/* ================= SUBTEXT ================= */
.hero-sub {
	max-width: 560px;
	font-size: 15.5px;
	line-height: 1.7;
	color: #d1d5db;
	margin-bottom: 28px;
}

/* ================= BUTTONS ================= */
.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.hero-btn {
	padding: 12px 22px;
	border-radius: 28px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.25s ease;
}

/* PRIMARY */
.hero-btn.primary {
	background: #3b82f6;
	color: #fff;
}

.hero-btn.primary:hover {
	background: #2563eb;
}

/* SECONDARY */
.hero-btn.secondary {
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #e5e7eb;
}

.hero-btn.secondary:hover {
	background: rgba(255, 255, 255, 0.08);
}

/* ================= HERO CONTACT (NEW) ================= */
.hero-contact {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* EMAIL */
.hero-email {
	font-size: 14px;
	color: #cbd5e1;
}

.hero-email a {
	color: #facc15;
	text-decoration: none;
	font-weight: 500;
	transition: 0.25s ease;
}

.hero-email a:hover {
	color: #fde047;
}

/* PHONES */
.hero-phones {
	font-size: 13.5px;
	color: #d1d5db;
	line-height: 1.6;
}

.hero-phones span {
	display: block;
	opacity: 0.9;
}

/* subtle highlight on hover (optional premium touch) */
.hero-phones span:hover {
	color: #93c5fd;
}

/* ================= LINKEDIN ================= */
.hero-linkedin {
	margin-bottom: 18px;
	font-size: 14px;
	color: #cbd5e1;
}

.hero-linkedin a {
	color: #60a5fa; /* subtle LinkedIn blue tone */
	text-decoration: none;
	font-weight: 500;
	transition: 0.25s ease;
}

/* hover */
.hero-linkedin a:hover {
	color: #93c5fd;
	text-decoration: underline;
}

/* ================= MOBILE ================= */
@media ( max-width : 768px) {
	.dr1058hero {
		display: block;
		padding-top: 70px;
		min-height: auto;
	}
	.dr1058hero-inner {
		display: block;
		position: relative;
	}

	/* IMAGE */
	.dr1058hero-image img {
		width: 100%;
		height: auto;
		border-radius: 0;
		object-fit: cover;
		object-position: center top;
	}

	/* OVERLAY */
	.dr1058hero-content {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 14px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		max-height: 42%; /* slightly increased */
		background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 40%,
			rgba(0, 0, 0, 0.6) 75%, transparent 100%);
		overflow-y: auto;
	}

	/* BADGE */
	.hero-badge {
		font-size: 11px;
		padding: 4px 10px;
	}

	/* TEXT (INCREASED) */
	.dr1058hero h1 {
		font-size: 24px;
		line-height: 1.2;
	}
	.hero-role {
		font-size: 14px;
		margin-bottom: 8px;
	}
	.hero-sub {
		font-size: 14px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	/* BUTTONS */
	.hero-actions {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
	.hero-btn {
		width: 100%;
		font-size: 14px;
		padding: 10px;
	}
}