.cover-hero {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 300px;
    background-image: var(--cover-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cover-hero__title {
    position: absolute;
    bottom: 40px;
    left: 120px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #000;
    z-index: 2;
}

@media (max-width: 850px) {
    .cover-hero__title {
        bottom: 40px;
        left: 40px;
    }
}

@media (max-width: 600px) {
    .cover-hero {
        height: 240px;
    }

    .cover-hero__title {
        bottom: 28px;
        left: 24px;
    }
}
