/* ==========================================
   ABOUT BRIEF
========================================== */

.dr1059aboutbrief {
	background: #ffffff;
	overflow: hidden;
}

/* WRAPPER (DESKTOP DEFAULT) */
.dr1059aboutbrief-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 20px;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;

	opacity: 0;
	transform: translateY(40px);
	transition: opacity .9s ease, transform .9s ease;
}

/* ACTIVE ANIMATION FIX */
.dr1059aboutbrief.dr1059aboutbrief-active .dr1059aboutbrief-wrapper {
	opacity: 1;
	transform: translateY(0);
}

/* IMAGE */
.dr1059aboutbrief-media {
	margin: 0;
}

.dr1059aboutbrief-media img {
	width: 100%;
	display: block;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
	transition: .4s ease;
}

.dr1059aboutbrief-media img:hover {
	transform: translateY(-6px);
}

/* CONTENT */
.dr1059aboutbrief-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid #d4af37;
	border-radius: 30px;
	color: #071422;
	background: #fafafa;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

.dr1059aboutbrief-header h2 {
	font-size: 42px;
	line-height: 1.25;
	color: #071422;
	margin-bottom: 15px;
	font-weight: 800;
}

.dr1059aboutbrief-header h2::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	background: #d4af37;
	margin-top: 15px;
}

.dr1059aboutbrief-subtitle {
	font-size: 17px;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 25px;
}

.dr1059aboutbrief-text p {
	font-size: 15px;
	line-height: 1.9;
	color: #4b5563;
	margin-bottom: 15px;
}

.dr1059aboutbrief-text strong {
	color: #071422;
}

/* HIGHLIGHTS (DESKTOP - 3 COLS) */
.dr1059aboutbrief-highlights {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
}

.dr1059aboutbrief-item {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-left: 4px solid #d4af37;
	border-radius: 12px;
	padding: 18px;
}

.dr1059aboutbrief-item strong {
	display: block;
	font-size: 24px;
	color: #071422;
	margin-bottom: 6px;
}

.dr1059aboutbrief-item span {
	font-size: 13px;
	color: #6b7280;
}

/* BUTTON */
.dr1059aboutbrief-actions {
	margin-top: 35px;
}

.dr1059aboutbrief-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;
}

.dr1059aboutbrief-btn:hover {
	background: #d4af37;
	color: #071422;
	transform: translateY(-3px);
}

/* =========================
   TABLET (≤992px)
========================= */
@media (max-width: 992px) {

	.dr1059aboutbrief-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.dr1059aboutbrief-header h2::after {
		margin: 15px auto 0;
	}

	.dr1059aboutbrief-highlights {
		grid-template-columns: repeat(2, 1fr);
		max-width: 600px;
		margin: 30px auto 0;
	}
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {

	.dr1059aboutbrief-wrapper {
		padding: 60px 20px;
	}

	.dr1059aboutbrief-header h2 {
		font-size: 30px;
	}

	.dr1059aboutbrief-subtitle {
		font-size: 15px;
	}

	.dr1059aboutbrief-text p {
		font-size: 14px;
	}

	.dr1059aboutbrief-highlights {
		grid-template-columns: 1fr;
	}

	.dr1059aboutbrief-btn {
		width: 100%;
	}
}