.pricing {
	.container {
		position: relative;
	}
	.bg-gradient {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 1440px;
		height: 215px;
		background: var(--Deep-Void-Purple, #542985);
		filter: blur(250px);
		z-index: -1;
	}
	.card-wrapper {
		.card {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
			color: var(--white);
			padding: 60px;

			@media (max-width: 767px) {
				padding: 30px;
			}

			.card-body {
				padding: 0 !important;

				.price-label {
					.price {
						font-size: 48px;
						font-weight: 700;
						line-height: 1.3em;
					}
				}

				.features-wrapper {
					.feature-item {
						display: flex;
						flex-direction: row;
						flex-wrap: nowrap;
						gap: 10px;
						margin-top: 15px;

						svg {
							margin-top: 5px;
						}
					}
				}
			}

			&:last-child {
				background: linear-gradient(
					130deg,
					var(--Deep-Velvet-Purple, rgba(89, 22, 139, 0.3)) 0%,
					var(--Crimson-Violet, rgba(134, 16, 67, 0.3)) 100%
				) !important;
			}
		}
	}
}
