.hero {
    max-width: var(--layout-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero__right {
    border-radius: var(--border-10);
    box-shadow: 60px -16px rgba(0, 0, 0, 0.3);
}

.hero__h1 {
    margin: 0;
    font-weight: 700;
    font-size: 54px;
    line-height: 100%;
    color: var(--color-text);
}

.hero__h1_gradient {
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__cta {
    display: flex;
    gap: 32px;
}

.button-more {
    text-align: center;
}

.chip_wrapper {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    overflow: scroll;
    margin-right: -24px;
    margin-left: -24px;
    padding-left: 24px;
    scrollbar-width: none;
}

.courses_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 70px;
}

@media (max-width: 960px) {
    .hero {
        flex-direction: column;
    }

    .hero__right {
        margin: 40px 0;
    }

    .hero__h1 {
        text-align: center;
    }

    .hero__cta {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero__h1 {
        font-size: 30px;
        line-height: 120%;
    }

    .hero {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .hero__cta {
        gap: 16px;
    }

    .hero__right {
        width: 75%;
    }
}



