.card {
    position: relative;
    overflow: hidden;
    
    padding: 20px 18px 18px;
    border-radius: 26px;

    box-shadow: var(--shadow);

    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(16, 32, 51, .08);

    transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
}
.card > .card-header {
    display: flex;
    gap: 12px;

    margin-bottom: .8rem;
}

.card > .card-header > .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(11, 92, 171, .10), rgba(26, 140, 168, .12));
    border: 1px solid rgba(11, 92, 171, .08);
    color: var(--primary);
    font-size: 22px;
    flex-shrink: 0;
}
.card > .card-header > .card-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.card > .card-header > .card-meta > .card-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(11, 92, 171, .06);
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .2rem;
}
.card > .card-header > .card-meta > h3.card-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--text);
    margin: 0;
}
.card > .card-header.card-header-column > .card-meta > h3.card-title {
    font-size: 17px;
}
.card > .card-header > .card-meta > .card-tagline + h3.card-title {
    font-weight: 700;
    font-size: 1.45rem;
}
.card.card-list > .card-header > .card-meta > h3.card-title {
    font-size: 22px;
    font-weight: 600;
}
.card > .card-body {
    color: var(--muted);
    font-size: 85%;
    line-height: 1.66;
}
.card.card-list > .card-body {
    font-size: 95%;
    line-height: 1.75;
}
.card.card-list > .card-body ul > li {
    margin-top: .4rem;
}
.card > .card-header.card-header-column {
    flex-direction: column;
}

.card > .card-bg-icon {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}
.card > .card-bg-icon > i {
    font-size: 98px;
    line-height: 1;
    color: rgba(11, 92, 171, .10);
    filter: none;
    margin: 0;
}

.card:hover:before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from 180deg at 50% 50%, rgba(47, 179, 255, .0), rgba(47, 179, 255, .34), rgba(11, 92, 171, .0), rgba(120, 215, 255, .28), rgba(47, 179, 255, .0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.card:hover:before {
    opacity: 1;
    animation: spinBorder 2.8s linear infinite;
}
@keyframes spinBorder{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

.card.header-align-center .card-header {
    align-items: center;
}
.card.icon-green .card-icon {
    background: linear-gradient(135deg, rgba(28, 151, 104, .10), rgba(28, 151, 104, .16));
    border-color: rgba(28, 151, 104, .12);
    color: #167a56;
}
.card.icon-red .card-icon {
    background: linear-gradient(135deg, rgba(196, 104, 61, .10), rgba(196, 104, 61, .16));
    border-color: rgba(196, 104, 61, .14);
    color: #b45b33;
}