.pcw-card-outer {
	width: 100%;
	display: flex;
}

.pcw-card {
	box-sizing: border-box;
	background: #ffffff;
	border: 1px solid #ECECEC;
	border-radius: 12px;
	padding: 24px;
	width: 100%;
	max-width: 420px;
	font-family: inherit;
}

.pcw-card * {
	box-sizing: border-box;
}

.pcw-image-wrap {
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}

.pcw-image-wrap img {
	max-width: 100%;
	display: inline-block;
}

.pcw-content {
	width: 100%;
}

.pcw-subheading {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #1E9E5A;
	margin: 0 0 8px;
}

.pcw-heading {
	font-size: 24px;
	font-weight: 700;
	color: #1A1A1A;
	margin: 0 0 10px;
	line-height: 1.3;
}

.pcw-description {
	font-size: 14px;
	color: #6B7280;
	margin: 0 0 22px;
	line-height: 1.5;
}

.pcw-footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.pcw-price {
	font-size: 20px;
	font-weight: 700;
	color: #1A1A1A;
}

.pcw-button {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
	color: #1E9E5A;
	line-height: 1;
	transition: opacity 0.2s ease, color 0.2s ease;
}

.pcw-button:hover {
	opacity: 0.85;
}

.pcw-button-icon {
	display: inline-flex;
	align-items: center;
	margin-inline-start: 6px;
}

.pcw-button-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.pcw-button-icon i {
	font-size: 16px;
}

/* ----------- Mobile Responsive ----------- */
@media (max-width: 767px) {
	.pcw-card {
		max-width: 100%;
		padding: 18px;
	}

	.pcw-heading {
		font-size: 20px;
	}

	.pcw-price {
		font-size: 18px;
	}

	.pcw-footer-row {
		flex-direction: row;
		justify-content: space-between;
	}
}

@media (max-width: 480px) {
	.pcw-image-wrap img {
		height: auto !important;
	}

	.pcw-footer-row {
		flex-direction: column;
		align-items: flex-start !important;
	}

	.pcw-button {
		width: 100%;
		justify-content: center;
	}
}
