/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 25 2026 | 12:13:47 */
/* --- ОБЩИЕ СТИЛИ (DESKTOP) --- */
.course-info-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    font-family: inherit;
    padding: 10px 0;
    width: 100%;
}

.course-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Иконка */
.course-info-icon {
    width: 38px;
    height: 38px;
    background-color: var(--e-global-color-ca1ca98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.course-info-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* Текст */
.course-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.course-info-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.course-info-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #555;
}

/* --- АДАПТИВ (один брейкпоинт) --- */
@media (max-width: 1024px) {

    .course-info-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
        justify-items: center;
    }

    .course-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        width: 100%;
    }

    .course-info-text {
        align-items: center;
    }

    .course-info-icon i {
        font-size: 22px;
    }
}