.dropposu-wrap {
	max-width: 1400px;
	margin: 20px 20px 20px 0;
}
.dropposu-container {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.dropposu-main {
	flex: 1;
	min-width: 0;
}
.dropposu-sidebar {
	width: 400px;
	flex-shrink: 0;
	position: sticky;
	top: 32px;
}
.dropposu-card {
	background: #fff;
	padding: 25px;
	margin-bottom: 20px;
	border: 1px solid #ccd0d4;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
	border-radius: 4px;
}
.dropposu-card h2 {
	margin-top: 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #2271b1;
	color: #1d2327;
	font-size: 20px;
}
.dropposu-card h3 {
	color: #1d2327;
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.dropposu-feature-list {
	display: grid;
	gap: 12px;
}
.dropposu-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.dropposu-feature-icon {
	color: #2271b1;
	font-size: 18px;
	line-height: 1.4;
	flex-shrink: 0;
}
.dropposu-code-block {
	background: #f5f5f5;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow-x: auto;
	font-family: Consolas, Monaco, monospace;
	font-size: 13px;
	line-height: 1.6;
	margin: 10px 0;
}
.dropposu-method {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}
.dropposu-method:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.dropposu-method h4 {
	color: #2271b1;
	margin: 0 0 10px 0;
	font-size: 15px;
}
.dropposu-method p {
	margin: 5px 0;
	color: #646970;
}
.dropposu-table {
	width: 100%;
	border-collapse: collapse;
}
.dropposu-table th {
	text-align: left;
	padding: 12px;
	font-weight: 600;
}
.dropposu-table td {
	padding: 12px;
}
.dropposu-table tr {
	border-bottom: 1px solid #f0f0f0;
}
.dropposu-table tr:last-child {
	border-bottom: none;
}
.dropposu-badge {
	display: inline-block;
	background: #2271b1;
	color: #fff;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 10px;
}
.dropposu-notice {
	padding: 15px;
	background: #e7f5fe;
	border-left: 4px solid #2271b1;
	margin: 20px 0;
	border-radius: 4px;
}
.dropposu-notice strong {
	color: #1d2327;
	display: block;
	margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
	.dropposu-container {
		flex-direction: column;
	}
	.dropposu-sidebar {
		width: 100%;
		position: static;
	}
}
