/* Blok „Powody" */

.rb-reasons {
	background: var(--rb-color-bg-alt);
	padding-block: var(--rb-space-12) var(--rb-space-20);
}

.rb-reasons__heading {
	font-size: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
	line-height: 1.3;
	margin-bottom: var(--rb-space-12);
}

.rb-reasons__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
	align-items: stretch;
	gap: clamp(1rem, 2vw, 1.75rem);
}

.rb-reasons__card {
	background: #fff;
	border-radius: var(--rb-radius-xl);
	padding: clamp(1.5rem, 2.4vw, 2rem);
}

.rb-reasons__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: var(--rb-space-6);
	border-radius: var(--rb-radius-full);
	background: var(--rb-color-accent);
	color: #fff;
}
.rb-reasons__icon img { width: 26px; height: auto; }

/* Wariant dla wgranej grafiki, która sama zawiera pomarańczowe koło. */
.rb-reasons__icon--image {
	width: 52px;
	height: 52px;
	background: none;
	border-radius: 0;
}
.rb-reasons__icon--image img { width: 52px; height: 52px; }

.rb-reasons__title {
	font-size: var(--rb-fs-h4);
	line-height: 1.3;
	font-weight: 700;
	margin-bottom: var(--rb-space-4);
}

.rb-reasons__text {
	font-size: var(--rb-fs-body-s);
	line-height: 1.65;
	color: var(--rb-gray-600);
}
.rb-reasons__text p:last-child { margin-bottom: 0; }

.rb-reasons__media {
	border-radius: var(--rb-radius-xl);
	overflow: hidden;
}
.rb-reasons__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 900px) {
	.rb-reasons { padding-block: var(--rb-space-10) var(--rb-space-12); }
	.rb-reasons__heading { margin-bottom: var(--rb-space-8); }
	/* Zdjęcie to ozdobnik — na wąskich ekranach tylko wydłużałoby stronę. */
	.rb-reasons__media { display: none; }
}
