/* Poradnik Theme stylesheet */

.guide-info-box__summary {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.7;
	color: #334155;
}

.guide-info-box__answer {
	margin: 0 0 1rem;
	padding: 1rem 1.25rem;
	border-left: 4px solid #6b4eff;
	background: #f8f7ff;
	border-radius: 8px;
}

.guide-info-box__answer p {
	margin: 0.5rem 0 0;
}

.guide-info-box__takeaways {
	margin-top: 1rem;
}

.guide-info-box__takeaways h3 {
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.guide-info-box__takeaways ul {
	margin: 0;
	padding-left: 1.25rem;
}

.guide-info-box__meta {
	margin: 0;
	padding-left: 1.25rem;
	display: grid;
	gap: 0.5rem;
}

.guide-steps {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

.guide-step {
	padding: 1.25rem;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.guide-step__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.guide-step__header h3 {
	margin: 0;
	font-size: 1.125rem;
}

.guide-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #0f172a;
	color: #ffffff;
	font-weight: 700;
	flex-shrink: 0;
}

.guide-step__image {
	margin-bottom: 1rem;
}

.guide-step__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.guide-step__content > :first-child,
.guide-step__tip p,
.guide-step__warning p {
	margin-top: 0;
}

.guide-step__content > :last-child,
.guide-step__tip p,
.guide-step__warning p {
	margin-bottom: 0;
}

.guide-step__tip,
.guide-step__warning {
	margin-top: 1rem;
	padding: 0.875rem 1rem;
	border-radius: 10px;
}

.guide-step__tip {
	background: #ecfeff;
	border-left: 4px solid #0891b2;
}

.guide-step__warning {
	background: #fff7ed;
	border-left: 4px solid #ea580c;
}

@media (max-width: 767px) {
	.guide-step {
		padding: 1rem;
	}

	.guide-step__header {
		align-items: flex-start;
	}
}
