.hero-news {
    background: var(--darkblue);
    color: white;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-news h1 {
    font-size: 40px;
    width: 50%;
    padding-right: 100px;
    box-sizing: border-box;
}

.hero-news p {
    width: 50%;
}

.hero-news .hero-text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-news .hero-teaser {
    width: 45%;
    margin-left: auto;
    height: auto;
    aspect-ratio: 8.5/6;
    display: block;
    position: relative;
    z-index: 1;
    bottom: -1px;
    right: 0;
    background: url('../images/background-hero-news.png') no-repeat right bottom;
    background-size: contain;
}

.hero-news .hero-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    font-weight: 700;
    font-size: 26px;
    padding: 8px 13px;
    background: var(--darkblue);
}

.hero-news .hero-label.hero-label-1 {
    bottom: 64.5%;
    right: 61.5%;
    left: initial;
}

.hero-news .hero-label.hero-label-2 {
    bottom: 34.5%;
    left: 38.5%;
}

.hero-news .hero-label.hero-label-3 {
    bottom: 13%;
    left: 0;
}

.hero-news .hero-label.hero-label-4 {
    bottom: 9%;
    left: 61%;
}

@media (max-width: 1200px) {
    .hero-news {
        padding: 60px 0;
    }

    .hero-news .hero-teaser {
        bottom: -61px;
    }

    .hero-news .hero-label {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-news {
        padding: 30px 0 0 0;
    }

    .hero-news h1 {
        width: 100%;
        font-size: 30px;
        padding-right: 0;
    }
    .hero-news p {
        width: 100%;
        padding-right: 0;
    }

    .hero-news .hero-text-wrapper {
        position: relative;
        height: auto;
    }

    .hero-news .hero-teaser {
        width: calc(100% - 20px);
        bottom: -1px;
    }
    .hero-news .hero-label {
        font-size: 16px;
    }
}