/* ===== СТРАНИЦА ОБУЧЕНИЯ ===== */
.obuchenie-section {
    background: #EFEFEE;
    padding: 60px 0;
}

.obuchenie-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.obuchenie-title {
    color: #3E1A3E;
    font-size: 36px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.obuchenie-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* ===== КАРТОЧКА КУРСА ===== */
.obuchenie-card {
    background: #E4E3E0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
}

.obuchenie-card-image-wrapper {
    width: 305px;
    min-width: 305px;
    height: 247px;
    background: #FFFFFF;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    overflow: hidden;
    position: relative;
}

.obuchenie-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.obuchenie-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: #D9D9D9;
}

.obuchenie-card-info {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.obuchenie-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.obuchenie-card-name {
    color: #313131;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    margin: 0;
    text-align: center;
}

.obuchenie-card-price {
    color: #3E1A3E;
    font-size: 28px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-align: center;
}

/* ===== КНОПКИ ===== */
.obuchenie-card-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.obuchenie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 10px 24px;
    border-radius: 900px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.obuchenie-btn-detail {
    background: #EFEFEE;
    color: #715573;
}

.obuchenie-btn-detail:hover {
    background: #E8E3E9;
    color: #715573;
    text-decoration: none;
}

.obuchenie-btn-buy {
    background: linear-gradient(63deg, #3E1A3E 0%, #C200C2 100%);
    color: #fff;
}

.obuchenie-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 0, 194, 0.3);
    color: #fff;
    text-decoration: none;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 991px) {
    .obuchenie-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .obuchenie-section {
        padding: 40px 0;
    }
    
    .obuchenie-container {
        padding: 0 12px;
    }
    
    .obuchenie-title {
        font-size: 22px;
        margin-bottom: 24px;
    }
    
    .obuchenie-card {
        flex-direction: column;
    }
    
    .obuchenie-card-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 247px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
    }
    
    .obuchenie-card-info {
        padding: 24px;
    }
    
    .obuchenie-card-name {
        font-size: 15px;
    }
    
    .obuchenie-card-price {
        font-size: 24px;
    }
    
    .obuchenie-btn {
        font-size: 13px;
    }
}