/* Homepage product range: interior collection card and balanced six-card grid. */
@media (min-width: 1101px) {
  .home-products-section .product-card--partner {
    grid-column: span 4;
  }
}

.home-products-section .product-card--interior {
  color: var(--c-ink);
  background: #f3f3f1;
}

.home-products-section .product-card__media--interior {
  right: -3%;
  top: 8%;
  bottom: 0;
  width: 62%;
}

.home-products-section .product-card__media--interior img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 16px rgba(14,14,14,.18));
  transition: transform .6s var(--ease);
}

.home-products-section .product-card--interior:hover .product-card__media--interior img {
  transform: scale(1.035);
}

@media (max-width: 600px) {
  .home-products-section .product-card--partner {
    grid-column: auto;
    min-height: 238px;
  }

  .home-products-section .product-card--interior h3,
  .home-products-section .product-card--partner h3 {
    max-width: none;
    font-size: 17px;
  }

  .home-products-section .product-card__media--interior {
    right: -8%;
    top: 25%;
    bottom: 1%;
    width: 72%;
    opacity: 1;
  }
}
