/* ==========================================================
   STATISTICS SECTION
   Executive Corporate Metrics
========================================================== */

.hcg-statistics-section {

    background: #F4F6F8;
}


/* ==========================================================
   GRID
========================================================== */

.hcg-statistics-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* ==========================================================
   CARD
========================================================== */

.hcg-statistics-card {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );

    border: 1px solid #E6EAF0;

    border-radius: var(--card-radius);

    padding: 22px;

    min-height: 165px;

    box-shadow:
        0 2px 10px rgba(15,23,42,.04);
}


/* ==========================================================
   TOP BLUE STRIP
========================================================== */

.hcg-statistics-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 22px;

    width: 38px;
    height: 3px;

    border-radius: 999px;

    background: #0F2D52;
}


/* ==========================================================
   DOT PATTERN
========================================================== */

.hcg-statistics-card::after {

    content: "";

    position: absolute;

    left: 22px;
    bottom: 16px;

    width: 90px;
    height: 50px;

    opacity: .14;

    pointer-events: none;

    background:
        radial-gradient(
            rgba(15,45,82,.18) 1px,
            transparent 1px
        );

    background-size: 10px 10px;
}


/* ==========================================================
   NUMBER
========================================================== */

.hcg-statistics-number {

    color: #0F172A;

    font-size: 28px;

    font-weight: 600;

    line-height: 1;

    margin-bottom: 8px;
}


/* ==========================================================
   TITLE
========================================================== */

.hcg-statistics-title {

    color: var(--primary-text);

    font-weight: 600;

    margin-bottom: 6px;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.hcg-statistics-description {

    color: var(--secondary-text);

    margin: 0;

    max-width: 24ch;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .hcg-statistics-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .hcg-statistics-grid {

        grid-template-columns: 1fr;
    }

    .hcg-statistics-card {

        min-height: auto;

        padding: 18px;
    }

    .hcg-statistics-number {

        font-size: 26px;
    }
}