/* ================= ROOT ================= */
.dr1058about {
	padding: 120px 20px;
	color: #e5e7eb;
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 20%, rgba(59,130,246,0.2), transparent 40%),
		radial-gradient(circle at 90% 10%, rgba(250,204,21,0.18), transparent 40%),
		linear-gradient(180deg, #020617, #030a1a 60%, #020617);
}

/* GLOW */
.dr1058about::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	top: -150px;
	left: -120px;
	background: rgba(59,130,246,0.2);
	filter: blur(120px);
}

/* ================= CONTAINER ================= */
.dr1058about-container {
	max-width: 1200px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* ================= HEADER ================= */
.dr1058about-header {
	text-align: center;
	margin-bottom: 60px;
}

.about-tag {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(59,130,246,0.15);
	border: 1px solid rgba(59,130,246,0.3);
	font-size: 12px;
}

.dr1058about-header h2 {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	margin: 14px 0;
	background: linear-gradient(90deg, #60a5fa, #facc15);
	-webkit-background-clip: text;
	color: transparent;
}

.about-degrees {
	font-size: 14px;
	color: #94a3b8;
}

/* CONTACT INLINE */
.about-contact-inline {
	margin-top: 14px;
	display: flex;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.about-contact-inline a {
	font-size: 13px;
	color: #cbd5e1;
	text-decoration: none;
	border-bottom: 1px dashed rgba(255,255,255,0.25);
	padding-bottom: 2px;
	transition: 0.25s ease;
}

.about-contact-inline a:hover {
	color: #facc15;
	border-color: #facc15;
}

/* ================= GRID ================= */
.dr1058about-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 50px;
}

/* ================= LEFT ================= */
.about-profile {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* PHOTO */
.about-photo {
	display: flex;
	justify-content: center;
}

.photo-frame {
	position: relative;
	border-radius: 24px;
	padding: 14px;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow:
		0 20px 60px rgba(0,0,0,0.7),
		inset 0 1px 0 rgba(255,255,255,0.08);
	transition: 0.4s ease;
}

.photo-frame img {
	width: 220px;
	border-radius: 18px;
	background: #fff;
}

.photo-frame:hover {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 30px 80px rgba(0,0,0,0.85);
}

/* CARDS */
.profile-card,
.contact-card {
	padding: 28px;
	border-radius: 20px;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 50px rgba(0,0,0,0.6);
	transition: 0.3s;
}

.profile-card:hover,
.contact-card:hover {
	transform: translateY(-6px);
}

.about-link {
	display: inline-block;
	margin-top: 12px;
	color: #60a5fa;
	text-decoration: none;
	font-size: 13px;
}

/* ================= RIGHT ================= */
.about-content {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.about-block {
	padding: 30px;
	border-radius: 20px;
	background: linear-gradient(145deg,
		rgba(255,255,255,0.06),
		rgba(255,255,255,0.02));
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 20px 50px rgba(0,0,0,0.6);
	transition: 0.4s ease;
}

.about-block:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px rgba(0,0,0,0.8);
}

.about-block h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #facc15;
}

.about-block p {
	font-size: 14px;
	color: #cbd5e1;
	line-height: 1.7;
	margin-bottom: 10px;
}

/* ⭐ HIGHLIGHT (FELLOWSHIPS) */
.about-highlight {
	background: linear-gradient(
		135deg,
		rgba(250,204,21,0.12),
		rgba(59,130,246,0.08)
	);
	border: 1px solid rgba(250,204,21,0.35);
	box-shadow:
		0 25px 80px rgba(0,0,0,0.7),
		0 0 40px rgba(250,204,21,0.15);
}

.about-highlight h3 {
	color: #facc15;
	font-size: 22px;
}

/* LIST */
.about-achievements {
	list-style: none;
	padding: 0;
	margin-top: 14px;
	display: grid;
	gap: 10px;
}

.about-achievements li {
	font-size: 14px;
	color: #e2e8f0;
	line-height: 1.6;
	padding-left: 18px;
	position: relative;
}

.about-achievements li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #facc15;
	font-size: 18px;
}

/* DISCLAIMER */
.about-disclaimer {
	margin-top: 20px;
	padding: 18px;
	border-radius: 12px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	font-size: 13px;
	color: #94a3b8;
	text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
	.dr1058about-grid {
		grid-template-columns: 1fr;
	}
}

/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

	.dr1058about {
		padding: 80px 16px;
	}

	.dr1058about-header h2 {
		font-size: 26px;
	}

	.about-degrees {
		font-size: 13px;
	}

	.about-contact-inline {
		gap: 10px;
	}

	.about-contact-inline a {
		font-size: 12.5px;
	}

	.photo-frame img {
		width: 100%;
		max-width: 260px;
	}

	.profile-card,
	.contact-card,
	.about-block {
		padding: 20px;
		border-radius: 14px;
	}

	.about-highlight {
		padding: 22px;
	}

	.about-highlight h3 {
		font-size: 18px;
	}

	.about-achievements li {
		font-size: 13.5px;
	}

	.about-block p {
		font-size: 13.5px;
	}
}