.obuchenie-section {
    background: transparent;
    padding: 60px 0 80px 0;
}

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

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

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

.obuchenie-card {
    width: 100%;
    height: 182px;
    padding: 8px 8px 8px 24px;
    position: relative;
    background: linear-gradient(90deg, rgba(152, 16, 250, 0.50) 0%, rgba(0, 164.83, 230, 0.50) 100%);
    box-shadow: 0px 0px 17px rgba(39, 0, 50, 0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obuchenie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(39, 0, 50, 0.25);
}

.obuchenie-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-decoration: none;
    color: inherit;
    outline: none;
}

.obuchenie-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #36005F;
    z-index: 1;
}

.obuchenie-card-image {
    position: absolute;
    width: 555px;
    height: 372px;
    left: -111px;
    top: -53px;
    mix-blend-mode: screen;
    object-fit: cover;
    z-index: 2;
}

.obuchenie-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgba(54, 0, 95, 0.80) 0%, rgba(54, 0, 95, 0) 100%);
    z-index: 3;
}

.obuchenie-card-content {
    position: relative;
    z-index: 4;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

.obuchenie-card-name {
    width: 100%;
    max-width: 244px;
    color: white;
    font-size: 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.16;
    margin: 0;
    word-break: break-word;
}

.obuchenie-card-desc {
    align-self: stretch;
    color: white;
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    margin: 0;
    word-break: break-word;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.obuchenie-card-hidden-data {
    display: none !important;
}

.obuchenie-card-image-wrapper,
.obuchenie-card-image-placeholder {
    display: none !important;
}

.obuchenie-pagination {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1100px) {
    .obuchenie-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1100px){
.obuchenie-card-image {
    position: absolute;
    width: 100%;
    height: 372px;
    left: 0px;
    top: -53px;
    mix-blend-mode: screen;
    object-fit: cover;
    z-index: 2;
}
}

@media (max-width: 767px) {
    .obuchenie-section {
        padding: 32px 0 48px 0;
    }
    
    .obuchenie-container {
        padding: 0 16px;
    }
    
    .obuchenie-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .obuchenie-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .obuchenie-card {
        height: 112px;
        padding: 8px 8px 8px 24px;
        gap: 8px;
    }
    
    .obuchenie-card-content {
        gap: 8px;
    }
    
    .obuchenie-card-image {
        width: 120%;
        height: auto;
        left: -32px;
        top: -35px;
    }
    
    .obuchenie-card-name {
        font-size: 18px;
		max-width: 100% !important;
        line-height: 1.16;
    }
    
    .obuchenie-card-desc {
        font-size: 18px;
    }
}