/* =====================================
   RSUD STATISTICS SECTION
===================================== */
.rsud-statistics {
    background:
    radial-gradient(
        circle at top,
        rgba(230,0,18,0.06),
        transparent 45%
    ),
    linear-gradient(
        #ffffff,
        #fafafa
    );
    padding:60px 0;
    border-top:1px solid #f1f5f9;
    border-bottom:1px solid #f1f1f1;
}

.statistics-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;

    position:relative;
}

/* TITLE */
.statistics-title {
    text-align: center;
    margin-bottom: 30px;

}

.statistics-title span {
    color: #e60012;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.statistics-title h2 {
    margin-top: 8px;
    font-size: 34px;
    font-weight: 700;
    color: #102a43;
}

/* GRID */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

/* ITEM */
.stat-item {
    text-align: center;
    padding:20px 15px;
    position: relative;
}

/* GARIS PEMBATAS */
.stat-item:not(:last-child)::after {
    content:"";
    position:absolute;
    right:0;
    top:20%;
    height:60%;
    width:1px;
    background:#e2e8f0;
}

/* LABEL */
.stat-item p {
    color:#64748b;
    font-weight:500;
    line-height:1.6;
    letter-spacing:.5px;
    font-size:15px;
    text-transform:none;
}

/* =====================================
   NUMBER ROLL MINIMAL STYLE
===================================== */
.number-roll {
    display:flex;
    justify-content:center;
    align-items:center;
    height:65px;
    overflow:hidden;
}

.digit {
    display:block;
    font-size:56px;
    font-weight:800;
    color:#e60012;
    line-height:65px;
    height:65px;
    overflow:hidden;
}

.digit-number {
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* digit wrapper */
.digit-inner {
    display:flex;
    flex-direction:column;
    transition:
    transform .8s cubic-bezier(.4,0,.2,1);
}

.placeholder-number {
    font-size:56px;
    font-weight:800;
    color:#e60012;
    line-height:65px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .statistics-grid {
        grid-template-columns:repeat(2,1fr);
    }

    .stat-item:nth-child(2)::after {
        display:none;
    }
}

@media(max-width:600px){
    .statistics-grid {
        grid-template-columns:1fr;
    }

    .stat-item::after {
        display:none;
    }

    .statistics-title h2 {
        font-size:28px;
    }
}