.swlg-wrapper {
	max-width: 920px;
	margin: 30px auto;
	padding: 20px;
	font-family: inherit;
	color: #1f2937;
}

.swlg-hero,
.swlg-tool-box,
.swlg-cta,
.swlg-content,
.swlg-faq {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 24px;
	margin-bottom: 22px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.swlg-hero {
	background: linear-gradient(135deg, #ecfdf5, #ffffff);
}

.swlg-hero h2 {
	font-size: 30px;
	margin-bottom: 10px;
	color: #047857;
}

.swlg-hero p {
	font-size: 16px;
	line-height: 1.7;
}

.swlg-field {
	margin-bottom: 18px;
}

.swlg-field label,
.swlg-result label {
	display: block;
	font-weight: 700;
	margin-bottom: 7px;
}

.swlg-field input,
.swlg-field textarea,
.swlg-result input {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #d1d5db;
	border-radius: 12px;
	font-size: 15px;
	box-sizing: border-box;
}

.swlg-field input:focus,
.swlg-field textarea:focus {
	outline: none;
	border-color: #10b981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.swlg-btn,
.swlg-copy-btn,
.swlg-open-btn {
	display: inline-block;
	border: none;
	border-radius: 12px;
	padding: 13px 18px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: 0.2s ease;
}

.swlg-btn {
	background: #059669;
	color: #ffffff;
	width: 100%;
}

.swlg-btn:hover {
	background: #047857;
	color: #ffffff;
}

.swlg-result {
	margin-top: 22px;
	padding: 18px;
	background: #f9fafb;
	border-radius: 14px;
	border: 1px dashed #10b981;
}

.swlg-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 14px;
}

.swlg-open-btn {
	background: #16a34a;
	color: #ffffff;
}

.swlg-copy-btn {
	background: #111827;
	color: #ffffff;
}

.swlg-open-btn:hover,
.swlg-copy-btn:hover {
	opacity: 0.9;
	color: #ffffff;
}

.swlg-copy-status {
	margin-top: 10px;
	font-weight: 600;
	color: #047857;
}

.swlg-cta {
	background: #f0fdf4;
	border-color: #bbf7d0;
}

.swlg-cta h3,
.swlg-content h3,
.swlg-faq h3 {
	margin-top: 0;
	color: #111827;
}

.swlg-content p,
.swlg-content li,
.swlg-faq p {
	line-height: 1.7;
}

.swlg-related {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.swlg-related a {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 12px;
	text-decoration: none;
	font-weight: 700;
	color: #047857;
}

.swlg-faq-item {
	border-top: 1px solid #e5e7eb;
	padding-top: 14px;
	margin-top: 14px;
}

.swlg-faq-item h4 {
	margin-bottom: 6px;
}

@media (max-width: 600px) {
	.swlg-wrapper {
		padding: 12px;
	}

	.swlg-hero h2 {
		font-size: 24px;
	}

	.swlg-actions {
		flex-direction: column;
	}

	.swlg-open-btn,
	.swlg-copy-btn {
		width: 100%;
	}
}