.product-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	max-width: 306px;
	height: auto;
	margin: 0;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
}

.product-card__link {
	display: block;
	text-decoration: none;
}

.product-card__content {
	padding: 16px 24px;
}

.product-card__picture {
	text-align: center;
}

.product-card__image {
	width: 100%;
	max-width: 200px;
}

.product-card__type {
	margin-top: 8px;
	font-size: 12px;
	line-height: 14px;
	color: var(--smoke-gray);
}

.product-card__title {
	margin-top: 6px;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: var(--dark-blue);
}

.product-card__title sup {
	vertical-align: middle;
	font-size: 68%;
	line-height: 1;
	position: relative;
	top: -0.2em;
}

.product-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 4px;
}

.product-card__tag {
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	padding: 4px 8px;
	background: var(--water-blue);
	border-radius: 4px;
}

.product-card__tag[data-color=blue] {
	background: var(--water-blue);
}

.product-card__tag[data-color=lightblue] {
	background: var(--light-blue);
}

.product-card__description {
	margin-top: 8px;
	font-size: 15px;
	line-height: 21px;
	color: var(--dark-gray);
}

.product-card__footer {
	padding: 0 24px 24px;
}

.product-card__note {
	word-break: break-word;
	display: block;
	font-size: 11px;
	line-height: 13px;
	color: var(--cold-gray)
}

.product-card__actions {
	display: flex;
	gap: 8px;
	margin-top: 16px;
}

@media (max-width: 1023px) {
	.product-card__content {
		padding: 16px;
	}

	.product-card__title {
		font-size: 20px;
		line-height: 24px;
	}

	.product-card__description {
		font-size: 13px;
		line-height: 18px;
	}

	.product-card__footer {
		padding: 0 16px 16px;
	}

	.product-card__actions {
		flex-direction: column;
	}
}

@media (max-width: 576px) {
	.product-card {
		border-radius: 8px;
	}

	.product-card__image {
		max-width: 150px;
	}

	.product-card__description {
		font-size: 12px;
		line-height: 16px;
	}

}

@media (max-width: 389px) {
	.product-card {
		max-width: 100%;
	}
}