div.card {
    background-color: white;
    padding: 16px;
    border: solid var(--taurusNetworkDarkBlue) 1px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: var(--borderRadius);

    &.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 {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
        
        > 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;
            }
        }
    }
}