.cec-stat-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
    margin-top: 10px;
}

.cec-stat-card {
    display: flex;
    align-items: center;
    position: relative;

    min-height: 92px;
    padding: 16px 18px;

    background: #ffffff;
    border: 1px solid #e7edf2;
    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.cec-stat-card:hover {
    transform: translateY(-2px);
    border-color: #cbdbe7;
    box-shadow: 0 7px 18px rgba(20, 83, 134, 0.12);
}


/* ICON */

.cec-stat-icon {
    width: 54px;
    height: 54px;

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

    flex-shrink: 0;

    border-radius: 10px;

    font-size: 21px;
}

.cec-stat-icon-blue {
    background: #a1c5ed;
    color: #145386;
}


/* CONTENT */

.cec-stat-content {
    flex: 1;
    padding-left: 16px;
}

.cec-stat-label {
    margin-bottom: 3px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;

    color: #7b8994;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.cec-stat-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;

    color: #263746;
}


/* ARROW */

.cec-stat-arrow {
    padding-left: 12px;

    font-size: 12px;
    color: #b7c2ca;

    transition:
        transform 0.18s ease,
        color 0.18s ease;
}

.cec-stat-card:hover .cec-stat-arrow {
    transform: translateX(3px);
    color: #145386;
}


/* MOBILE */

@media (max-width: 600px) {

    .cec-stat-card {
        min-height: 82px;
        padding: 13px 15px;
    }

    .cec-stat-icon {
        width: 48px;
        height: 48px;
        font-size: 19px;
    }

    .cec-stat-number {
        font-size: 24px;
    }
}

.cec-grid-card {
    margin-bottom: 15px;
    cursor: default;
}

.cec-grid-card:hover {
    transform: translateY(-2px);
    border-color: #cbdbe7;
    box-shadow: 0 7px 18px rgba(20, 83, 134, 0.12);
}
