/*
 * CasaBlend Coupon Progress
 */

.cbcp-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: inherit;
}

/* ── Card ── */

.cbcp-card {
	background: #424D23;
	border: 1.5px solid #424D23;
	border-radius: 24px;
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* ── Header ── */

.cbcp-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cbcp-card__icon {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: rgba(255, 255, 255, .14);
	color: #ffffff;
}

.cbcp-card__icon svg {
	width: 18px;
	height: 18px;
}

.cbcp-card__text {
	flex: 1;
	min-width: 0;
}

.cbcp-card__title {
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.cbcp-card__subtitle {
	font-size: 11px;
	color: rgba(255, 255, 255, .75);
	line-height: 1.4;
}
