.hero-block {
    width: 100%;
    margin-bottom: 100px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2000 / 1125;
    min-height: 560px;
}

#content > .hero-block {
    width: 100%;
}

.hero-block .hero-block-image,
.hero-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-block .hero-block-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    font-size: clamp(42px, 8vw, 100px);
    margin: 0;
    text-align: center;
}

.hero-block .hero-block-actions {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 20;
    display: flex;
    gap: 12px;
}


@media (max-width: 768px) {
    .hero-block {
        aspect-ratio: auto;
        height: 120vw;
        min-height: 0;
        margin-bottom: 40px;
    }

    .hero-block .hero-block-image,
    .hero-block img {
        height: 120vw;
        min-height: 0;
        object-fit: cover;
    }

    .hero-block .hero-block-text {
        padding: 20px;
    }

    .hero-block .hero-block-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }
}
