.container-courses-title {
    font-size: 32px;
    color: #100F15;
    font-weight: 600;
    line-height: 41.6px;
    margin-bottom: 40px;
}

.img-computer-container {
    width: 83px;
    height: 83px;
    margin-left: 20px;
}

.img-computer {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    justify-self: end;
}

.container-courses {
    background-color: #F6F7FE;
    padding: 50px 40px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.course-faces {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    height: fit-content;
    gap: 10px;
}

.course-face {
    background-color: #FFFFFF;
    border-radius: 20px;
    height: 283px;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.course-info {
    width: 100%;
    display: grid;
    grid-template-columns: 8fr 1fr;
}

.course-info-text {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
}

.course-link {
    all: unset;
    background: linear-gradient(to left, #722AED, #A465DA);
    font-size: 20px;
    color: #FFFFFF;
    width: 326px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    bottom: 30px;

    p {
        margin: 0;
    }
}

.course-face:hover {
    transform: scale(1.03);
}

.course-face,
.course-face:hover,
.course-face:active {
    position: relative;
    text-decoration: none;
    color: #212529;
}

.course-face-skeleton {
    background-color: #f4f4f4;
    border-radius: 20px;
    height: 350px;
    width: 480px;
    position: relative;
}

.course-face-skeleton::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    background-color: #eeeeee;
    clip-path: inset(0 100% 0 0);
    z-index: 10;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}



.course-tab-header {
    font-weight: 600;
    font-size: 23px;
    line-height: 30px;
}

@media (max-width: 1399px) {
    .container-courses {
        gap: 30px;
    }

    .course-info {
        width: 390px;
    }

    .course-tab-header {
        font-size: 21px;
    }

    .course-face {
        padding: 20px;
    }

    .course-face-skeleton {
        width: 430px;
    }
}

@media (max-width: 1279px) {


    .container-courses-title {
        font-size: 24px;
        line-height: 31.2px;
        margin-bottom: 30px;
    }

    .course-faces {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 20px;
    }

    .course-tab-header {
        font-size: 23px;
    }

    .course-info {
        width: 100%;
    }

    .course-face-skeleton {
        height: 350px;
    }

    .course-face,
    .course-face-skeleton {
        width: 780px;
    }
}

@media (max-width: 1199px) {

    .course-face,
    .course-face-skeleton {
        width: 600px;
    }
}

@media (max-width: 991px) {



    .container-courses {
        justify-content: center;
    }

    .container-courses {
        flex-direction: column;
    }

    .loader {
        left: 50%;
    }

    .course-faces {
        width: 100%;
    }

    .button-container {
        margin-left: 0;
        display: flex;
        justify-content: center;
    }


    .course-face,
    .course-face-skeleton {
        width: 100%;
    }

}

@media (max-width: 500px) {

    .container-courses {
        padding: 16px;
    }

    .course-link {
        width: calc(100% - 40px);
    }

    .course-info-text {
        margin-bottom: 10px;
    }

    .course-tab-header {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width:375px) {
    #newsCourse {
        height: auto;
        height: 363px;
    }

    #newsCourse .course-info {
        grid-template-columns: 100%;
        gap: 20px;
    }

    .course-tab-header,
    .course-info-text {
        text-align: center;
    }

    #newsCourse .img-computer-container {
        margin: 0 auto;
    }
}