/*
Theme Name: Astra Child
Theme URI: https://example.com/
Description: Astra Child Theme
Author: Your Name
Template: astra
Version: 1.0
*/

/* Add your custom CSS below */


/* Donate Page */
.page-id-3667 .widget-area.secondary .sidebar-main {
	display: none;
}

#frm_form_4_container .frm_submit {
	text-align: right;
}

/* Program Page - Countdown */
.custom-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;	
    text-align: center;
}

/* Card Style */
.stat-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fc);
    height: 180px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.stat-item h2 {
		background: var(--ast-global-color-0, linear-gradient(135deg, #e91e63, #ff5722));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
/*     margin: 0; */
}

.stat-item p {
    min-height: 42px;
    color: #555;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0;
		padding: 0 5px;
    line-height: 1.4;
}


@media (max-width: 600px) {
    .stat-item h2 {
        font-size: 28px;
    }
}