.wppi-box {
	--wppi-accent: #c71630;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	margin-top: 16px;
	margin-bottom: 20px;
	padding: 14px;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	background: #ffffff;
	font-family: inherit;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.wppi-box.wppi-box--fading-out {
	opacity: 0;
	transform: translateY(6px);
}

.wppi-box__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	padding-right: 14px;
	border-right: 1px solid #ececec;
}

.wppi-box__media img {
	width: 100%;
	max-width: none;
	height: auto;
	display: block;
}

.wppi-box__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
}

.wppi-box__title {
	margin: 0 !important;
	font-size: 14px;
	line-height: 1.3;
	color: #111111;
	font-weight: 600;
	font-family: inherit;
}

.wppi-box__description {
	margin: 0 !important;
	padding: 0 0 5px 0 !important;
	font-size: 12px;
	line-height: 1.45;
	color: #656565;
	font-family: inherit;
}

.wppi-box__timer-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 3px;
	width: 100%;
}

.wppi-box__timer {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--wppi-accent);
	letter-spacing: 0.02em;
	min-width: 38px;
	text-align: right;
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1;
	font-family: inherit;
}

.wppi-box__progress {
	flex: 1;
	width: auto;
	max-width: none;
	height: 4px;
	border-radius: 999px;
	background: rgba(199, 22, 48, 0.14);
	overflow: hidden;
}

.wppi-box__progress-bar {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: var(--wppi-accent);
	transition: width 0.35s linear;
}

@media (max-width: 640px) {
	.wppi-box {
		grid-template-columns: 20% 80%;
		gap: 10px;
	}

	.wppi-box__media {
		width: auto;
		padding-right: 10px;
		border-right: 1px solid #ececec;
		padding-bottom: 0;
	}

	.wppi-box__media img {
		width: 100%;
		max-width: none;
	}
}
