/* ==========================================
   TEAM BRIEF
========================================== */
.dr1059teambrief {
	background: #f8fafc;
	overflow: hidden;
}

.dr1059teambrief-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px;
}

/* HEADER */
.dr1059teambrief-header {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 60px;
}

.dr1059teambrief-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d4af37;
	border-radius: 30px;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 18px;
}

.dr1059teambrief-header h2 {
	font-size: 42px;
	font-weight: 800;
	color: #071422;
	line-height: 1.3;
	margin-bottom: 18px;
}

.dr1059teambrief-intro {
	font-size: 17px;
	line-height: 1.8;
	color: #6b7280;
}

/* FOUNDER */
.dr1059teambrief-founder {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 50px;
}

.dr1059teambrief-media img {
	width: 100%;
	display: block;
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.dr1059teambrief-role {
	color: #d4af37;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.dr1059teambrief-content h3 {
	font-size: 34px;
	color: #071422;
	margin: 10px 0 20px;
}

.dr1059teambrief-content p {
	color: #4b5563;
	line-height: 1.9;
	margin-bottom: 15px;
}

/* BUTTON */
.dr1059teambrief-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	background: #071422;
	color: #fff;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	transition: .3s ease;
}

.dr1059teambrief-btn:hover {
	background: #d4af37;
	color: #071422;
}

/* HIGHLIGHTS */
.dr1059teambrief-highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 50px;
}

.dr1059teambrief-item {
	background: #fff;
	padding: 24px;
	border-radius: 14px;
	border: 1px solid #e5e7eb;
	text-align: center;
}

.dr1059teambrief-item strong {
	display: block;
	font-size: 24px;
	color: #071422;
	margin-bottom: 8px;
}

.dr1059teambrief-item span {
	color: #6b7280;
	font-size: 14px;
}

/* FUTURE */
.dr1059teambrief-future {
	background: #fff;
	padding: 35px;
	border-radius: 18px;
	border: 1px solid #e5e7eb;
	text-align: center;
}

.dr1059teambrief-future h3 {
	color: #071422;
	margin-bottom: 15px;
}

.dr1059teambrief-future p {
	color: #6b7280;
	line-height: 1.8;
}

/* ANIMATION */
.dr1059teambrief-wrapper {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s ease, transform .9s ease;
}

.dr1059teambrief.dr1059teambrief-active
.dr1059teambrief-wrapper {
	opacity: 1;
	transform: translateY(0);
}

/* TABLET */
@media ( max-width :992px) {
	.dr1059teambrief-founder {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.dr1059teambrief-media {
		max-width: 450px;
		margin: 0 auto;
	}
	.dr1059teambrief-highlights {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* MOBILE */
@media ( max-width :768px) {
	.dr1059teambrief-wrapper {
		padding: 70px 20px;
	}
	.dr1059teambrief-header h2 {
		font-size: 30px;
	}
	.dr1059teambrief-content h3 {
		font-size: 26px;
	}
	.dr1059teambrief-highlights {
		grid-template-columns: 1fr;
	}
	.dr1059teambrief-btn {
		width: 100%;
	}
}