/* ==========================================
   FAQ BRIEF
========================================== */
.dr1059faqbrief {
	position: relative;
	padding: 100px 20px;
	background: radial-gradient(circle at top left, rgba(212, 175, 55, .10),
		transparent 35%),
		radial-gradient(circle at bottom right, rgba(212, 175, 55, .08),
		transparent 40%), #071422;
	overflow: hidden;
}

/* Container */
.dr1059faqbrief-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

/* ==========================================
   HERO
========================================== */
.dr1059faqbrief-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 60px;
}

.dr1059faqbrief-media img {
	width: 100%;
	display: block;
	border-radius: 22px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
	transition: .4s ease;
}

.dr1059faqbrief-media img:hover {
	transform: translateY(-6px);
}

/* Content */
.dr1059faqbrief-badge {
	display: inline-block;
	padding: 8px 16px;
	border: 1px solid rgba(212, 175, 55, .4);
	border-radius: 30px;
	color: #d4af37;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 18px;
}

.dr1059faqbrief-content h2 {
	font-size: 42px;
	line-height: 1.25;
	color: #ffffff;
	margin-bottom: 18px;
	font-weight: 800;
}

.dr1059faqbrief-content p {
	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, .78);
}

/* ==========================================
   FAQ LIST
========================================== */
.dr1059faqbrief-list {
	max-width: 900px;
	margin: 0 auto;
}

.dr1059faqbrief-item {
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 14px;
	margin-bottom: 18px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: .3s ease;
}

.dr1059faqbrief-item:hover {
	border-color: rgba(212, 175, 55, .4);
}

.dr1059faqbrief-question {
	width: 100%;
	background: transparent;
	border: 0;
	color: #fff;
	text-align: left;
	padding: 22px 60px 22px 22px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	position: relative;
}

/* Plus Icon */
.dr1059faqbrief-question::after {
	content: "+";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	font-weight: 700;
	color: #d4af37;
	transition: .3s ease;
}

.dr1059faqbrief-item.active
.dr1059faqbrief-question::after {
	content: "−";
}

.dr1059faqbrief-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}

.dr1059faqbrief-answer p {
	padding: 0 22px 22px;
	color: rgba(255, 255, 255, .75);
	line-height: 1.8;
	margin: 0;
}

/* ==========================================
   BUTTON
========================================== */
.dr1059faqbrief-actions {
	text-align: center;
	margin-top: 40px;
}

.dr1059faqbrief-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	background: #d4af37;
	color: #071422;
	text-decoration: none;
	font-weight: 700;
	border-radius: 12px;
	transition: .3s ease;
}

.dr1059faqbrief-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(212, 175, 55, .30);
}

/* ==========================================
   ANIMATION
========================================== */
.dr1059faqbrief-wrapper {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s ease, transform .8s ease;
}

.dr1059faqbrief.dr1059faqbrief-active
.dr1059faqbrief-wrapper {
	opacity: 1;
	transform: translateY(0);
}

/* ==========================================
   TABLET
========================================== */
@media ( max-width :992px) {
	.dr1059faqbrief-hero {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.dr1059faqbrief-content h2 {
		font-size: 36px;
	}
}

/* ==========================================
   MOBILE
========================================== */
@media ( max-width :768px) {
	.dr1059faqbrief {
		padding: 70px 15px;
	}
	.dr1059faqbrief-content h2 {
		font-size: 30px;
	}
	.dr1059faqbrief-content p {
		font-size: 15px;
	}
	.dr1059faqbrief-question {
		font-size: 15px;
		padding: 18px 50px 18px 18px;
	}
	.dr1059faqbrief-answer p {
		padding: 0 18px 18px;
		font-size: 14px;
	}
	.dr1059faqbrief-btn {
		width: 100%;
	}
}