/* Styles for How to Publish Page */
.publish-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.publish-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.publish-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
}

.publish-card h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #0b4c68;
}

.step-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 25px;
	position: relative;
}

.step-card {
	display: flex;
	gap: 20px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	align-items: flex-start;
	transition: all 0.2s ease;
}

.step-card:hover {
	background: #ffffff;
	border-color: #0b4c68;
	box-shadow: 0 4px 12px rgba(11, 76, 104, 0.08);
}

.step-number {
	background: #e7832f;
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(231, 131, 47, 0.2);
}

.step-content {
	flex-grow: 1;
}

.step-title {
	font-size: 16px;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 6px;
}

.step-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #475569;
}

.publish-actions {
	margin-top: 30px;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-publish-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14.5px;
	font-weight: 700;
	transition: all 0.2s ease;
	text-decoration: none;
}

.btn-primary-action {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary-action:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary-action {
	background: #ffffff;
	border: 1px solid #d9e5f2;
	color: #475569 !important;
}

.btn-secondary-action:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #1e293b !important;
	transform: translateY(-2px);
}
