/*******************************
 Cards
 ******************************/

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    gap: 4rem;
}

.product-card--sidebar {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
}

.product-card--bold {
    background-color: rgb(var(--light-common-azure));
    color: rgb(var(--light-text-inverse));
}

.product-card--accent {
    background-color: rgb(var(--light-common-amethyst));
    color: rgb(var(--brand-azure));
}

.product-card--neutral {
    background-color: rgb(var(--light-container-primary));
    color: rgb(var(--light-text-primary));
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 2.5rem;
}

.product-card-top-logo {
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.product-card-top-logo--bold {
    background-color: rgb(var(--brand-azure-light) / 0.25);
}

.product-card-top-logo--accent {
    background-color: rgb(var(--brand-amethyst) / 0.25);
}

.product-card-top-logo--neutral {
    background-color: rgb(var(--brand-azure) / 0.05);
    color: rgb(var(--brand-azure));
}

.product-card-top-logo .svg {
    width: 1.5rem;
    height: 1.5rem;
}

.product-card-top-logo .svg-sm {
    width: 1rem;
    height: 1rem;
}

.product-card-top-logo .svg-2x {
    width: 2.5rem;
    height: 2.5rem;
}

.product-card-bottom {
    display: flex;
    flex-direction: column;
}

.product-card-bottom-ticker {
    display: flex;
    gap: var(--spacers__1);
}

.product-card-bottom-details {
    display: flex;
    flex-direction: column;
    margin-block-end: 0.5rem;
    cursor: pointer;
    color: currentColor !important;
}

.product-card-bottom-details a {
    cursor: pointer;
    color: currentColor !important;
}

.product-card-bottom-data {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 200;
}

.product-card-bottom-data--neutral {
    color: rgb(var(--light-text-secondary));
}

.product-card-bottom-data-performance-tag {
    width: 1rem;
    padding: 0.125rem;
    margin-inline-start: 0.625rem;
    border-radius: var(--border-radius);
}

    .product-card-bottom-data-performance-tag .svg {
        width: 0.8rem;
        height: 0.8rem;
    }

.product-card-bottom-data-performance-tag--bold {
    background-color: rgb(var(--brand-azure-light) / 0.25);
}

.product-card-bottom-data-performance-tag--accent {
    background-color: rgb(var(--brand-amethyst) / 0.25);
}

.neutral-positive {
    background-color: rgb(var(--light-common-citrine));
    color: rgb(var(--light-text-primary));
}

.neutral-negative {
    background-color: rgb(var(--light-common-amethyst));
    color: rgb(var(--light-text-primary));
}
