.custom-course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.custom-course-item {
    width: 32%;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    transition: transform 0.3s;
}

.custom-course-item img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.custom-course-item h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.custom-course-item p {
    font-size: 0.9em;
    color: #666;
}

.custom-course-item:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .custom-course-item {
        width: 32%;
    }
}

@media (max-width: 480px) {
    .custom-course-item {
        width: 32%;
    }
}