/* ============================================
   Asked Refund Block — Frontend Styles
   ============================================ */

.taskipfb-ar {
	width: 100%;
	font-family: var( --taskipfb-offer-font, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif );
}

/* ── Outer Container ── */
.taskipfb-ar-container {
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
	box-sizing: border-box;
}

/* ── Green card wrapper — constrained to 10 of 12 columns ── */
.taskipfb-ar-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding-left: 56px;
	padding-right: 48px;
	box-sizing: border-box;
	overflow: hidden;
	max-width: calc( 100% * 10 / 12 );
	margin-left: auto;
	margin-right: auto;
}

/* ── Text column ── */
.taskipfb-ar-text {
	flex: 1;
	min-width: 0;
}

.taskipfb-ar-heading {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
	color: #ffffff;
}

.taskipfb-ar-description {
	font-size: 15px;
	line-height: 1.7;
	color: #ffffff;
	margin: 0 0 28px;
	max-width: 520px;
}

/* ── Buttons row ── */
.taskipfb-ar-buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.taskipfb-ar-btn-1 {
	display: inline-flex;
	align-items: center;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
	background-color: #ffffff;
	color: #111827;
}

.taskipfb-ar-btn-1:hover {
	opacity: 0.9;
	box-shadow: 0 4px 16px rgba( 0, 0, 0, 0.15 );
}

.taskipfb-ar-btn-2 {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	transition: opacity 0.2s ease;
}

.taskipfb-ar-btn-2:hover {
	opacity: 0.8;
}

/* ── Badge column ── */
.taskipfb-ar-badge {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.taskipfb-ar-badge-img {
	width: 200px;
	height: 200px;
	object-fit: contain;
	display: block;
}

.taskipfb-ar-badge-svg {
	width: 200px;
	height: 200px;
	display: block;
}

/* ── Responsive ── */
@media ( max-width: 1024px ) {
	.taskipfb-ar-container {
		padding: 0 24px;
	}

	.taskipfb-ar-wrapper {
		padding-left: 40px;
		padding-right: 40px;
		gap: 32px;
		max-width: 100%;
	}

	.taskipfb-ar-heading {
		font-size: 24px;
	}

	.taskipfb-ar-badge-img,
	.taskipfb-ar-badge-svg {
		width: 160px;
		height: 160px;
	}
}

@media ( max-width: 768px ) {
	.taskipfb-ar-container {
		padding: 0 16px;
	}

	.taskipfb-ar-wrapper {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 28px;
		padding-right: 28px;
		gap: 28px;
	}

	.taskipfb-ar-badge {
		width: 100%;
		justify-content: center;
	}

	.taskipfb-ar-heading {
		font-size: 22px;
	}

	.taskipfb-ar-description {
		font-size: 14px;
		max-width: 100%;
	}

	.taskipfb-ar-badge-img,
	.taskipfb-ar-badge-svg {
		width: 150px;
		height: 150px;
	}
}

@media ( max-width: 480px ) {
	.taskipfb-ar-wrapper {
		padding-left: 20px;
		padding-right: 20px;
	}

	.taskipfb-ar-buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.taskipfb-ar-btn-1 {
		width: 100%;
		justify-content: center;
	}
}
