.ice-card {
	display: flex;
	align-items: stretch;
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	max-width: 480px;
}

.ice-card.ice-image-right {
	flex-direction: row;
}

.ice-card.ice-image-left {
	flex-direction: row-reverse;
}

.ice-image-wrap {
	flex: 0 0 42%;
	overflow: hidden;
	position: relative;
}

.ice-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 140px;
}

.ice-content {
	flex: 1 1 58%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.ice-heading {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.ice-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.ice-btn {
	display: inline-block;
	margin-top: 6px;
	padding: 8px 18px;
	border-radius: 30px;
	background: #6d5ef8;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	width: fit-content;
	transition: opacity 0.2s ease;
}

.ice-btn:hover {
	opacity: 0.85;
	color: #ffffff;
}

@media (max-width: 480px) {
	.ice-card {
		flex-direction: column !important;
	}

	.ice-image-wrap img {
		min-height: 180px;
	}
}
