div.card {
    background-color: white;
    padding: 16px;

    &:not(.borderless) {
        border: solid var(--taurusNetworkDarkBlue) 1px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: var(--borderRadius);
    }

    &.center-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    &.square-250 {
        width: 250px;
        height: 250px;
    }

    &.square-300 {
        width: 300px;
        height: 300px;
    }

    &.no-padding {
        padding: 0;
    }

    &.content-with-button-right,
    &.content-with-icon-right,
    &.content-with-action-right,
    &.content-with-action {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        align-items: flex-start;
        
        > div.content {
            flex: 1;

            p:last-of-type {
                margin-bottom: 0;
            }
        }

        > button,.button {
            flex-shrink: 0;
        }

        > svg {
            width: 30px;
        }

        > .action {
            flex-shrink: 0;
        }

        @media screen and (max-width: 768px) {
            flex-wrap: wrap;
            > div.content {
                width: 100%;
            }

            > button,.button {
                width: 100%;
                text-align: center;
            }
        }
    }
}