/* =======================================
   CARD
======================================= */

.card.DEP-custom-card {
    background: #ffffff;
    border: 0;
    border-radius: 11px;
    height: 100%;
    overflow: hidden;
    box-shadow: none;

    transition:
            transform .2s ease,
            box-shadow .2s ease;
}

.card.DEP-custom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* =======================================
   BODY
======================================= */

.DEP-custom-card__body {
    display: flex;
    flex-direction: column;
    height: 100%;

    padding: 32px;
}
.card.DEP-custom-card::after {
    margin-top:0px!important;
}
/* =======================================
   ICONA
======================================= */

.DEP-custom-card__icon {
    width: 44px;
    height: 44px;

    background-color: #0b67d0;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
}
.DEP-custom-card__icon_trasparent {
    background-color: transparent;

}
.mini-card__icon__img {
    width: 24px;
    height: 24px;
    display: block;
}

/* =======================================
   TITOLO
======================================= */
.card .card-body h5.card-title, .DEP-custom-card__title {
    color: #0b67d0 !important;

    font-family: "Titillium Web", sans-serif;
    font-size: 1.33rem !important;

    font-weight: 600;
    line-height: 1.78rem;
}

/* =======================================
   TESTO
======================================= */

.DEP-custom-card__text {
    color: #2f475e !important;

    font-size: 0.78rem;
    line-height: 0.89rem;
    font-weight: 600;

}

/* =======================================
   PULSANTE
======================================= */

.DEP-custom-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 118px;
    min-height: 44px;

    padding: 12px 18px;

    background-color: #0b67d0;
    color: #ffffff !important;

    border: 0;
    border-radius: 4px;

    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
            background-color .2s ease,
            transform .2s ease;
}

.DEP-custom-card__button:hover {
    background-color: #0856ae;
    color: #ffffff !important;
    text-decoration: none;
}

.DEP-custom-card__button:active {
    transform: translateY(1px);
}

/* Accessibilità */

.DEP-custom-card__button:focus-visible {
    outline: 3px solid #80bfff;
    outline-offset: 2px;
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width: 768px) {
    .DEP-custom-card__body {
        padding: 24px;
    }

    .DEP-custom-card__button {
        width: 100%;
    }
}
