/* Product Card Widget — 13928 */

.pc-13928-card {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
}

/* Background Overlay */
.pc-13928-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: background 0.3s, opacity 0.3s;
}

/* Inner wrapper — sits above overlay */
.pc-13928-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    padding: 24px;
}

/* Corner Label — absolute, position fully controlled via widget controls */
.pc-13928-corner-label {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    z-index: 3;
    line-height: 1.4;
}

/* Heading — top padding ensures it clears the corner label */
.pc-13928-heading {
    margin: 0 0 12px 0;
    padding-top: 48px;
    font-size: 1.25rem;
    line-height: 1.3;
}

/* Tags Row */
.pc-13928-tags {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
}

.pc-13928-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    white-space: nowrap;
    line-height: 1.4;
}

/* Image */
.pc-13928-image {
    margin-top: auto;
    width: 100%;
}

.pc-13928-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
