/* Área visual isolada dos cards públicos de produto. */
.product-card {
    overflow: hidden;
}

.product-card > .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    padding: 0;
    background: #f7f1ec;
    font-size: 55px;
}

.product-card > .product-image > img {
    position: static;
    inset: auto;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.product-card > .product-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
    background: var(--paper);
}
