/* Card Grid Layout */
.dfl-card-main {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.w-22rem {
    width: 22rem;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Card Button Styles */
.button-enroll {
    align-items: center;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 10rem;
    color:#ffffff;
    padding: 0.5rem 0.2rem;
    border-radius: 22px;
    background-color: #0076bf;
    border: 1px solid #0076bf;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.button-enroll:hover {
    background-color: #0076bf;
    transform: scale(1.05);
    color: #ffffff;
}

/* Responsive Styles */
@media screen and (max-width: 660px) {
    .dfl-card-main {
        padding: 0 15px;
    }
    
    .card.w-22rem {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-text {
        font-size: 14px;
    }
    
    .button-enroll {
        font-weight: 500 !important;
        font-size: 14px !important;
    }

    .card.w-22rem .card-body {
        padding: 0.5rem 1rem;
    }
}