.sg-pilne-section {
		margin-bottom: 20px;
		color: #fff;
	}

	.sg-pilne-sprawy {
		max-width: 1080px;
		width: calc(100% - 30px);
		margin: 0 auto;
		padding: 22px 0 24px;
	}

	.sg-pilne-sprawy h2 {
		margin: 0 0 16px;
		font-size: 26px;
		font-weight: bold;
		line-height: 1.15;
		text-transform: uppercase;
	}

	.sg-pilne-grid {
		display: grid;
		gap: 18px;
	}

	.sg-pilne-count-1 { grid-template-columns: minmax(0, 1fr); }
	.sg-pilne-count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sg-pilne-count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

	.sg-pilne-card {
		color: #fff;
		display: block;
		position: relative;
		min-height: 220px;
		overflow: hidden;
		border-radius: 4px;
		background: rgba(0,0,0,0.18);
		box-shadow: 0 8px 20px rgba(0,0,0,0.18);
		text-decoration: none;
	}

	.sg-pilne-card:hover {
		color: #fff;
		text-decoration: none;
	}

	.sg-pilne-img {
		display: block;
		height: 220px;
		background: rgba(0,0,0,0.2);
	}

	.sg-pilne-img img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform .25s ease;
	}

	.sg-pilne-card:hover .sg-pilne-img img {
		transform: scale(1.04);
	}

	.sg-pilne-title {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		padding: 42px 16px 16px;
		font-size: 21px;
		font-weight: bold;
		line-height: 1.15;
		background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0));
		text-shadow: 1px 1px 2px rgba(0,0,0,0.65);
	}

	.sg-pilne-footer {
		color: #fff;
		margin-top: 14px;
		text-align: right;
		font-size: 17px;
		font-weight: bold;
		text-transform: uppercase;
	}

	.sg-pilne-footer a {
		color: #fff;
		text-decoration: none;
	}

	.sg-pilne-footer a:hover {
		text-decoration: underline;
	}

	@media (max-width: 760px) {
		.sg-pilne-sprawy {
			width: calc(100% - 20px);
			padding: 16px 0 18px;
		}

		.sg-pilne-sprawy h2 {
			font-size: 22px;
		}

		.sg-pilne-count-1,
		.sg-pilne-count-2,
		.sg-pilne-count-3 {
			grid-template-columns: 1fr;
		}

		.sg-pilne-card,
		.sg-pilne-img {
			min-height: 210px;
			height: 210px;
		}

		.sg-pilne-title {
			font-size: 20px;
		}
	}