/* فونت سفارشی */
@font-face {
    font-family: 'pelak';
    src: url('PelakFA-Black.c59013ba.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}


/* استایل کلی کارت‌ها */
.course-cards-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* کارت دوره */
.course-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background: #fff;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}
.course-card:hover {
    transform: translateY(-5px);
}

/* تصویر دوره */
.course-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* بدنه کارت */
.course-card-body {
    padding: 15px;
}

.course-title {
    font-size: 18px !important;
    font-weight: bold;
    margin: 10px 0;
    font-family: 'pelak', sans-serif; /* فونت سفارشی */
    color: #222;
}

.course-info {
    font-size: 14px;
    color: #555;
    margin: 4px 0;
}

.course-price {
    font-size: 15px;
    font-weight: bold;
    margin: 12px 0;
    color: #000;
}
.button-21 {
    align-items: center;
    appearance: none;
    background-image: linear-gradient(90deg, #65459B 0%, #A829F2 100%);
    background-size: calc(100% + 20px) calc(100% + 20px);
    border-radius: 100px;
    border-width: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: 'pelak';
    font-size: 1rem;
    height: auto;
    justify-content: center;
    line-height: 1.5;
    padding: 6px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s,background-position .2s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-21:active,
.button-21:focus {
    outline: none;
}

.button-21:hover {
    background-position: -20px -20px;
    color:#FFF;
}

.button-21:focus:not(:active) {
    box-shadow: rgba(40, 170, 255, 0.25) 0 0 0 .125em;
}
/* --------- ستون‌بندی دسکتاپ --------- */
.desktop-cols-1 .course-card {
    flex: 0 0 100%;
    max-width: 100%;
}
.desktop-cols-2 .course-card {
    flex: 0 0 48%;
    max-width: 48%;
}
.desktop-cols-3 .course-card {
    flex: 0 0 30%;
    max-width: 30%;
}

/* --------- ستون‌بندی موبایل --------- */
@media (max-width: 768px) {
    .mobile-cols-1 .course-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mobile-cols-2 .course-card {
        flex: 0 0 48%;
        max-width: 48%;
    }
    .mobile-cols-3 .course-card {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .course-title {
        font-size: 14px;
    }
    .course-price {
        font-size: 13px;
    }
}

