.lgw_form_detail {
	max-width: 920px;
	margin: 0 auto 3rem;
	color: #1a1a2e;
	font-size: 16px;
	line-height: 1.7;
}

.lgw_form_detail__header {
	padding: 0 0 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 2px solid #0c2340;
}

.lgw_form_detail__title {
	margin: 0;
	color: #0c2340;
	font-size: clamp(1.75rem, 4vw, 2.4rem);
	font-weight: 800;
	line-height: 1.3;
}

.lgw_form_detail__section {
	margin: 0 0 1.25rem;
}

.lgw_form_detail__section_title {
	margin: 0 0 0.75rem;
	color: #0c2340;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.4;
}

.lgw_form_detail__card,
.lgw_form_detail__faq_item,
.lgw_form_detail__related_card {
	padding: 1.25rem;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(12, 35, 64, 0.05);
}

.lgw_form_detail__text,
.lgw_form_detail__faq_answer,
.lgw_form_detail__empty {
	margin: 0;
	color: #333;
}

.lgw_form_detail__empty {
	color: #5c6578;
}

.lgw_form_detail__downloads {
	padding: 1.25rem;
	background: #f7f9fc;
	border: 1px solid #e8ecf1;
	border-radius: 10px;
}

.lgw_form_detail__download_cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	width: 100%;
	max-width: 100%;
}

.lgw_form_detail__download_card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.875rem;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0.875rem;
	background: #fff;
	border: 1px solid #e1e7ef;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(12, 35, 64, 0.05);
}

.lgw_form_detail__download_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	background: #eef4ff;
	border: 1px solid #dbe7ff;
	border-radius: 8px;
	color: #1d4ed8;
	line-height: 1;
}

.lgw_form_detail__download_icon::before {
	width: 24px;
	height: 30px;
	background: currentColor;
	border-radius: 4px;
	content: "";
	opacity: 0.95;
}

.lgw_form_detail__download_icon_fold {
	position: absolute;
	top: 12px;
	right: 13px;
	width: 9px;
	height: 9px;
	background: #fff;
	border-radius: 0 0 0 3px;
}

.lgw_form_detail__download_card--pdf .lgw_form_detail__download_icon {
	background: #fff1f2;
	border-color: #ffe0e4;
	color: #be123c;
}

.lgw_form_detail__download_card--docx .lgw_form_detail__download_icon {
	background: #eef4ff;
	border-color: #dbe7ff;
	color: #1d4ed8;
}

.lgw_form_detail__download_card--hwp .lgw_form_detail__download_icon {
	background: #effaf4;
	border-color: #d9f2e3;
	color: #047857;
}

.lgw_form_detail__download_content {
	flex: 1 1 auto;
	min-width: 0;
}

.lgw_form_detail__download_name {
	display: block;
	overflow: hidden;
	color: #111827;
	font-size: 0.98rem;
	font-weight: 750;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lgw_form_detail__download_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 0.65rem;
	margin-top: 0.25rem;
	color: #64748b;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
}

.lgw_form_detail__download_meta span {
	position: relative;
}

.lgw_form_detail__download_meta span + span::before {
	position: absolute;
	top: 50%;
	left: -0.4rem;
	width: 3px;
	height: 3px;
	background: #cbd5e1;
	border-radius: 50%;
	content: "";
	transform: translateY(-50%);
}

.lgw_form_detail__download_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	gap: 0.4rem;
	min-width: 44px;
	min-height: 42px;
	padding: 0.55rem 0.85rem;
	background: #0f172a;
	border: 1px solid #0f172a;
	border-radius: 8px;
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lgw_form_detail__download_button:hover,
.lgw_form_detail__download_button:focus {
	background: #2563eb;
	border-color: #2563eb;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.lgw_form_detail__download_button_icon {
	position: relative;
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.lgw_form_detail__download_button_icon::before {
	position: absolute;
	top: 1px;
	left: 7px;
	width: 2px;
	height: 9px;
	background: currentColor;
	border-radius: 999px;
	content: "";
}

.lgw_form_detail__download_button_icon::after {
	position: absolute;
	top: 7px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	content: "";
	transform: rotate(45deg);
}

.lgw_form_detail__faq_list {
	display: grid;
	gap: 0.875rem;
}

.lgw_form_detail__faq_question {
	display: block;
	margin-bottom: 0.45rem;
	color: #0c2340;
	font-weight: 700;
}

.single-post .lgw_form_detail .lgw_form_detail__faq_item {
	margin-bottom: 32px;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 14px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-post .lgw_form_detail .lgw_form_detail__faq_question {
	margin: 0 0 18px;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.5;
}

.single-post .lgw_form_detail .lgw_form_detail__faq_answer {
	margin: 0 0 6px;
	font-size: 17px;
	line-height: 1.9;
}

@media (hover: hover) and (min-width: 769px) {
	.single-post .lgw_form_detail .lgw_form_detail__faq_item:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	}
}

.lgw_form_detail__related_cards {
	display: grid;
	gap: 0.875rem;
}

.lgw_form_detail__related_card {
	display: block;
	color: #0c2340;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lgw_form_detail__related_card:hover,
.lgw_form_detail__related_card:focus {
	border-color: #cbd5e1;
	color: #0c2340;
	transform: translateY(-1px);
}

.lgw_form_detail__related_card_title {
	display: block;
	margin-bottom: 0.35rem;
	font-weight: 700;
	line-height: 1.4;
}

.lgw_form_detail__related_card_excerpt {
	display: block;
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.6;
}

@media (max-width: 640px) {
	.lgw_form_detail {
		font-size: 15px;
	}

	.lgw_form_detail__card,
	.lgw_form_detail__downloads,
	.lgw_form_detail__faq_item,
	.lgw_form_detail__related_card {
		padding: 1rem;
		border-radius: 8px;
	}

	.lgw_form_detail__download_cards {
		display: flex;
		flex-direction: column;
	}

	.lgw_form_detail__download_card {
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem;
	}

	.lgw_form_detail__download_icon {
		flex-basis: 44px;
		width: 44px;
		height: 44px;
	}

	.lgw_form_detail__download_icon::before {
		width: 20px;
		height: 26px;
	}

	.lgw_form_detail__download_icon_fold {
		top: 10px;
		right: 11px;
		width: 8px;
		height: 8px;
	}

	.lgw_form_detail__download_name {
		font-size: 0.92rem;
	}

	.lgw_form_detail__download_button {
		width: 44px;
		height: 44px;
		padding: 0;
	}

	.lgw_form_detail__download_button_text {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.single-post .lgw_form_detail .lgw_form_detail__faq_item {
		padding: 22px;
	}

	.single-post .lgw_form_detail .lgw_form_detail__faq_question {
		margin-bottom: 16px;
	}

	.single-post .lgw_form_detail .lgw_form_detail__faq_answer {
		line-height: 1.9;
	}
}
