/* ================= FAQ ROOT ================= */
.dr1057faqbrief {
	padding: 70px 20px;
	background: radial-gradient(circle at top, #071424, #02040a);
	color: #fff;
	font-family: "Segoe UI", sans-serif;
}

/* ================= CONTAINER ================= */
.dr1057faqbrief-container {
	max-width: 1100px;
	margin: auto;
}

/* ================= HEADER ================= */
.dr1057faqbrief-header {
	text-align: center;
	margin-bottom: 40px;
}

.dr1057faqbrief-header h2 {
	font-size: 2.3rem;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #00d4ff, #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1057faqbrief-header p {
	color: #b9c7d0;
	max-width: 750px;
	margin: auto;
	line-height: 1.6;
}

/* ================= MORE LINK ================= */
.dr1057faqbrief-morelink {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 18px;
	border-radius: 30px;
	background: rgba(0, 212, 255, 0.12);
	border: 1px solid rgba(0, 212, 255, 0.3);
	color: #00d4ff;
	text-decoration: none;
	transition: 0.3s ease;
	backdrop-filter: blur(10px);
}

.dr1057faqbrief-morelink:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 212, 255, 0.25);
}

/* ================= LIST ================= */
.dr1057faqbrief-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

/* ================= ITEM CARD ================= */
.dr1057faqbrief-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(0, 212, 255, 0.15);
	border-radius: 16px;
	padding: 10px;
	backdrop-filter: blur(12px);
	transition: 0.3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dr1057faqbrief-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(0, 212, 255, 0.15);
}

/* ================= ACCORDION ================= */
.dr1057faqbrief-item details {
	cursor: pointer;
}

.dr1057faqbrief-item summary {
	font-weight: 600;
	font-size: 1rem;
	padding: 12px;
	color: #ffffff;
	list-style: none;
	position: relative;
}

.dr1057faqbrief-item summary::-webkit-details-marker {
	display: none;
}

/* ICON */
.dr1057faqbrief-item summary::after {
	content: "+";
	position: absolute;
	right: 10px;
	color: #00d4ff;
	font-size: 1.2rem;
	transition: 0.3s;
}

.dr1057faqbrief-item details[open] summary::after {
	content: "−";
}

/* ANSWER */
.dr1057faqbrief-item p {
	padding: 0 12px 12px;
	color: #cfd8dc;
	line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media ( max-width : 768px) {
	.dr1057faqbrief-header h2 {
		font-size: 1.8rem;
	}
}