.cce-product-card {
    display: grid;
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: center;
    margin: 1.75rem 0;
    padding: 1.35rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.cce-product-card--text-only {
    grid-template-columns: 1fr;
}

.cce-product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    aspect-ratio: 1 / 1;
    padding: 0.75rem;
    border-radius: 12px;
    background: #fff;
}

.cce-product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 190px;
    object-fit: contain;
}

.cce-product-card__content {
    min-width: 0;
}

.cce-product-card__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    opacity: 0.68;
}

.cce-product-card__title {
    margin: 0 0 1rem;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    line-height: 1.35;
}

.cce-product-card__cta-wrap {
    margin: 0 0 1rem;
}

.cce-product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border: 1px solid currentColor;
    border-radius: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.cce-product-card__cta:hover {
    text-decoration: underline;
}

.cce-product-card__cta:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.cce-product-card__disclosure {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    opacity: 0.72;
}

@media (max-width: 640px) {
    .cce-product-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .cce-product-card__media {
        width: min(100%, 260px);
        margin-inline: auto;
    }

    .cce-product-card__image {
        max-width: 240px;
        max-height: 240px;
    }

    .cce-product-card__cta {
        width: 100%;
    }
}
