.woodio-card {
    background: var(--woodio-white);
    border: 1px solid var(--woodio-border);
    border-radius: var(--woodio-radius);
    box-shadow: none;
    transition: all .25s ease;
}

.woodio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--woodio-shadow);
    border-color: rgba(243,146,34,.45);
}

.woodio-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.woodio-badge--orange {
    color: var(--woodio-orange);
    background: #fff3e7;
    border: 1px solid rgba(243,146,34,.25);
}

.woodio-badge--waecc {
    color: #1F4E79;
    background: #f5f8fb;
    border: 1px solid rgba(31,78,121,.18);
}

.woodio-badge--dark {
    color: var(--woodio-white);
    background: var(--woodio-black);
}
