.home-hero-section {
    padding-top: 120px;
}

.text-cyan-new, .link-cyan-new {
    color: #12A3E7;
}

.link-cyan-new:hover {
    color: #2fafe6;
}
    
.home-hero-section__subtitle {
    line-height: 130%;
    font-size: clamp(2.4rem, 1.1554rem + 1.6227vw, 3.2rem);
    margin-bottom: 24px;
}

.home-hero-section__title {
    color: #fff;
    font-size: clamp(2.6rem, -3.312rem + 7.7079vw, 6.4rem);
    line-height: 1.3;
}

.home-hero-section__list {
    margin-top: 48px;
    gap: 24px;
    font-size: clamp(1.6rem, 0.9778rem + 0.8114vw, 2rem);
}

.home-hero-section__bg {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: 0px;
    right: 0px;
}

.home-hero-section__bg svg {
    width: 100%;
    height: 100%;
}

.home-hero-section__content-wrapper {
    max-width: 992px;
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 40px;
    flex-wrap: wrap;
}

.home-hero-section__edition {
    display: flex;
    gap: 28px;
    justify-content: flex-end;
    position: relative;
}

.home-hero-section__edition-title {
    font-size: clamp(1.6rem, 0.9778rem + 0.8114vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    text-align: right;
    color: #fff;
    max-width: 260px;
    align-self: flex-end;
	text-decoration: none;
}

.home-hero-section__edition-image {
    height: 250px;
    margin-top: -55px;
}

.home-hero-section__edition-image img {
    height: 100%;
    max-width: 100%;
    width: 100%;
}

@media screen and (max-width: 1500px) {
    .home-hero-section {
        padding-top: 0px;
    }
    
    .home-hero-section__edition {
        max-height: 320px;
    }
}

@media screen and (max-width: 991px) {
    .home-hero-section__edition {
        flex-direction: column;
        align-items: flex-end;
        max-height: initial;
        justify-content: flex-end;
    }

    .home-hero-section__edition-title {
        max-width: 240px;
    }

    .home-hero-section__edition-image {
        margin-top: 0;
    }

    .home-hero-section__content-wrapper {
        margin-top: 30px;
    }

    .home-hero-section__list {
        margin-top: 0;
    }
}

@media screen and (max-width: 575px) {
 .home-hero-section__edition {
    align-items: flex-start;
}
.home-hero-section__edition-title {
    text-align: left;
}
}