/**
 * Trending Prompts Widget - Responsive Styles
 *
 * @package WebsiteBuilderAddon
 * @since   1.0.0
 */

/* ── Tablet 1024 ── */
@media (max-width: 1024px) {
	.tp {
		max-width: 100%;
	}

	.tp__card {
		padding: 22px;
	}

	.tp__heading {
		font-size: 19px;
	}
}

/* ── Mobile 768 ── */
@media (max-width: 768px) {
	.tp__card {
		padding: 20px;
	}

	.tp__header {
		margin-bottom: 20px;
	}

	.tp__heading {
		font-size: 18px;
	}

	.tp__list {
		gap: 16px;
	}

	.tp__item {
		gap: 12px;
	}

	.tp__title {
		font-size: 14px;
	}

	.tp__stats {
		font-size: 12px;
	}

	.tp__stats svg {
		width: 12px;
		height: 12px;
	}

	.tp__link {
		font-size: 14px;
	}

	.tp__footer {
		margin-top: 20px;
	}
}

/* ── Small Mobile 480 ── */
@media (max-width: 480px) {
	.tp__card {
		padding: 20px;
	}

	.tp__heading {
		font-size: 18px;
	}

	.tp__list {
		gap: 16px;
	}

	.tp__title {
		font-size: 14px;
	}

	.tp__stats {
		font-size: 12px;
	}

	.tp__badge {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.tp__link {
		font-size: 14px;
	}
}
