.wc-block-product .block-product-card {
  height: 100%;
}

.block-product-card {
  display: flex;
  flex-direction: column;
  font-size: var(--fontsize-small);
}

.block-product-card-image {
  width: 100%;
  height: auto;
  background-color: var(--fg);
}

.block-product-card-image img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}

.block-product-card-title {
  font-size: clamp(24px, calc((26 / var(--page-width-unitless)) * 100vw), 26px);
}

.block-product-card-info {
  margin-top: 1em;
}

.block-product-card-info .info-item {
  display: flex;
  gap: 0.5em;
}

.block-product-card-info .info-item svg {
  width: 1.5em;
  height: 1.5em;
  display: block;
  fill: var(--fg);
}

.block-product-card-info .info-item+.info-item {
  margin-top: 0.25em;
}

.block-product-card-info>span {
  display: block;
}

.block-product-card .product-tags {
  margin-bottom: auto;
}

.block-product-card .product-link {
  text-align: center;
  display: block;
  margin-top: auto;
}

.block-product-card .product-link.is-sold-out {
  background: #ae1414 !important;
  border-color: #ae1414 !important;
  color: #ffffff !important;
}

.block-product-card .product-link.is-sold-out:hover,
.block-product-card .product-link.is-sold-out:focus {
  border-color: var(--c1) !important;
}

.block-product-card .product-prices .product-variable {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
}