
/* Category title with green vertical line below */
.program-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
	width:100%;
    margin: 40px 0;
    position: relative;
    display: inline-block; /* needed for centering the pseudo-element */
}

.program-category-title::after {
    content: "";
    display: block;
    width: 4px;                
    height: 50px;              
    background-color: #4DEF28; 
    margin: 10px auto 0;       
    border-radius: 2px;
}

/* Program grid container */
.program-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

/* Program item */
.program-item {
    text-align: center;
}

/* Program images */
.program-item-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Image hover effect */
.program-item-image:hover {
    transform: scale(1.05);
}

/* No programs message */
.no-programs {
    text-align: center;
}

/* Tablet: increase grid padding */
@media (min-width: 768px) {
    .program-category-grid {
        padding: 0 40px;
        gap: 30px;
    }
}

/* Desktop: more padding */
@media (min-width: 1200px) {
    .program-category-grid {
        padding: 0 100px;
        gap: 40px;
    }
}
