.cover-block {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-grey-medium);
    height: 100%;
}
.cover-block__bg,
.cover-block__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cover-block__bg-img {
    object-position: center center;
    object-fit: cover;
}
.cover-block__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    height: 100%;
    padding: 20px;
}
.cover-block__name {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.17;
    color: var(--color-light);
}
@media screen and (min-width: 768px) {
    .cover-block__content {
        min-height: 600px;
    }
    .cover-block__name {
        font-size: 40px;
    }
}