* {
	box-sizing: border-box;
}

.website-guide-page .guide-shell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 20px 0 10px;
}

.website-guide-page .guide-hero {
	padding: 20px 22px 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
	border: 1px solid #d7e2f3;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(18, 54, 109, 0.08);
}

.website-guide-page .guide-eyebrow {
	display: inline-block;
	padding: 4px 10px;
	margin-bottom: 12px;
	border-radius: 999px;
	background: #e8f1ff;
	border: 1px solid #a9c0e8;
	color: #1d4f96;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.website-guide-page .guide-title {
	margin: 0 0 8px;
	font-size: clamp(2rem, 3.2vw, 3rem);
	line-height: 1.05;
	color: #0b1f42;
}

.website-guide-page .guide-subtitle {
	margin: 0;
	max-width: 860px;
	font-size: 1.05rem;
	line-height: 1.6;
	color: #2d3d5b;
}

.website-guide-page .guide-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 18px;
	margin-top: 18px;
}

.website-guide-page .guide-card {
	background: #ffffff;
	border: 1px solid #d7e2f3;
	border-radius: 16px;
	padding: 18px;
	box-shadow: 0 10px 24px rgba(18, 54, 109, 0.06);
}

.website-guide-page .guide-card h2,
.website-guide-page .guide-card h3 {
	margin: 0 0 10px;
	color: #10294e;
}

.website-guide-page .guide-card p {
	margin: 0 0 10px;
	line-height: 1.6;
	color: #30425f;
}

.website-guide-page .guide-card p:last-child {
	margin-bottom: 0;
}

.website-guide-page .guide-note {
	padding: 10px 12px;
	border-left: 4px solid #2b6dcc;
	background: #f6f9ff;
	border-radius: 10px;
	color: #26415e;
}

.website-guide-page .guide-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.website-guide-page .guide-link-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid #a9c0e8;
	background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
	color: #12335e;
	text-decoration: none;
	font-weight: 700;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.website-guide-page .guide-link-btn:hover,
.website-guide-page .guide-link-btn:focus-visible {
	transform: translateY(-1px);
	border-color: #2b6dcc;
	box-shadow: 0 8px 18px rgba(18, 54, 109, 0.12);
}

.website-guide-page .guide-link-btn .arrow-circle-right {
	font-size: 1.05rem;
	flex: 0 0 auto;
}

.website-guide-page .guide-diagram {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.website-guide-page .diagram-step {
	position: relative;
	padding: 14px 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	border: 1px solid #d6e2f3;
}

.website-guide-page .diagram-step strong {
	display: block;
	margin-bottom: 4px;
	color: #10294e;
}

.website-guide-page .diagram-step p {
	margin: 0;
	line-height: 1.5;
}

.website-guide-page .diagram-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #2b6dcc;
	font-size: 1.8rem;
	line-height: 1;
	-webkit-user-select: none;
	user-select: none;
}

.website-guide-page .guide-diagram-header {
	margin-bottom: 12px;
}

.website-guide-page .guide-faq details {
	border: 1px solid #d7e2f3;
	border-radius: 12px;
	padding: 12px 14px;
	background: #fff;
	margin-bottom: 10px;
}

.website-guide-page .guide-faq summary {
	cursor: pointer;
	font-weight: 700;
	color: #10294e;
}

.website-guide-page .guide-faq p {
	margin: 10px 0 0;
}

.website-guide-page .guide-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 18px;
}

.website-guide-page .guide-mini-list {
	margin: 0;
	padding-left: 18px;
	line-height: 1.7;
	color: #30425f;
}

.website-guide-page .guide-mini-list li {
	margin-bottom: 6px;
}

.website-guide-page .guide-footer-note {
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #eef5ff;
	border: 1px solid #c7d8f3;
	color: #26415e;
}

.website-guide-page .guide-section-spaced {
	margin-top: 18px;
}

@media (max-width: 980px) {
	.website-guide-page .guide-grid,
	.website-guide-page .guide-columns,
	.website-guide-page .guide-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.website-guide-page .guide-shell {
		padding-top: 12px;
	}

	.website-guide-page .guide-hero {
		padding: 16px;
	}

	.website-guide-page .guide-card {
		padding: 14px;
	}
}
