.three-col.bg-black {
  --text-color: rgba(255, 255, 255, 0.80);
  --title-color: var(--white);
  --card-bg: rgba(255, 255, 255, 0.10);
}
.three-col.bg-off-white {
  --text-color: var(--grey-700);
  --title-color: var(--grey-900);
  --card-bg: var(--white);
}
.three-col h2,
.three-col h3 {
  color: var(--title-color);
}
.three-col p {
  color: var(--text-color);
}
.three-col-head {
  text-align: center;
  margin: 0 0 2rem;
}
@media (min-width: 992px) {
  .three-col-head {
    max-width: 49.25rem;
    margin: 0 auto 2.5rem;
  }
}
.three-col-head h2 {
  margin: 0 0 1rem;
}
@media (min-width: 992px) {
  .three-col-head h2 {
    max-width: 38.5625rem;
    margin: 0 auto 1.5rem;
  }
}
.three-col-wrap {
  display: grid;
  gap: 1rem;
}
@media (min-width: 992px) {
  .three-col-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.three-col-wrap .product-card {
  background: var(--card-bg);
  border-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .three-col-wrap .product-card-featured {
    grid-row: span 2;
  }
}
.three-col-wrap .product-card-featured .product-card-img {
  margin-top: 0;
  padding-top: 100%;
}
@media (min-width: 992px) {
  .three-col-wrap .product-card-featured .product-card-img {
    padding-top: 94.11%;
  }
}
.three-col-wrap .product-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.three-col-wrap .product-card-img {
  margin-top: auto;
  position: relative;
  padding-top: 47.41%;
}
@media (min-width: 992px) {
  .three-col-wrap .product-card-img {
    padding-top: 43.69%;
  }
}
.three-col-wrap .product-card-img img {
  border-radius: 0.25rem;
}
.three-col-wrap .product-card-content {
  padding: 0.5rem;
}
.three-col-wrap .product-card-content h3 {
  margin-bottom: 0.5rem;
}
.three-col-wrap .product-card-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
.three-col-wrap .product-card-badges li {
  border-radius: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--grey-200);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}
.three-col .button-group {
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .three-col .button-group {
    margin-top: 2.5rem;
  }
}
@media (max-width: 991px) {
  .three-col .button-group a.button {
    width: 100%;
  }
}