.wb-card {
    display: block;
    border-radius: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);

    margin-bottom: 35px;

    background-color: #f37021;
}

a.wb-card:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.wb-card * {
    color: #fff !important;
}

.wb-card.wb-card--orange { background-color: #f37021; }
.wb-card.wb-card--orange * { color: #fff !important; }
.wb-card.wb-card--blue { background-color: #00a2de; }
.wb-card.wb-card--blue * { color: #fff !important; }
.wb-card.wb-card--light-blue { background-color: rgba(0,154,203,0.09); }
.wb-card.wb-card--light-blue * { color: #000 !important; }
.wb-card.wb-card--yellow { background-color: #fdca07; }
.wb-card.wb-card--yellow * { color: #000 !important; }
.wb-card.wb-card--green { background-color: #79b629; }
.wb-card.wb-card--green * { color: #fff !important; }
.wb-card.wb-card--red { background-color: #e10713; }
.wb-card.wb-card--red * { color: #fff !important; }

.wb-card-title {
    margin-top: 0;
    font-size: 1.25rem;
}
.wb-card-content {
    font-size: 1rem;
}

.wb-card-button .btn {
    display: inline-block;
    padding: 0.5em 1em;
    background-color: #fff;
    color: #000 !important;
    text-decoration: none;
    border-radius: 3px;
}
.wb-card-button .btn:hover {
    background-color: #ededed !important;
}
