.indices-hero {
    position: relative;
    background: #0080ff;
    min-height: 686px;
    overflow: hidden;
}

.indices-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(29, 29, 32, 0.25) 1.5px, transparent 1.5px),
        linear-gradient(rgba(29, 29, 32, 0.25) 1.5px, transparent 1.5px),
        linear-gradient(135deg, transparent calc(50% - 1px), rgba(29, 29, 32, 0.25) 50%, transparent calc(50% + 1px));
    background-size: 320px 320px, 320px 320px, 100% 100%;
    opacity: 0.7;
}

.indices-hero__container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 686px;
    padding: 122px 54px 68px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.indices-hero__content {
    width: min(100%, 560px);
}

.indices-hero__title {
    margin: 0 0 16px;
    color: #1d1d20;
    font-size: 62px;
    font-weight: 300;
    line-height: 62px;
    letter-spacing: -0.02em;
}

.indices-hero__description {
    margin: 0;
    max-width: 449px;
    color: #1d1d20;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .indices-hero {
        min-height: 520px;
    }

    .indices-hero__container {
        min-height: 520px;
        padding: 110px 20px 40px;
        justify-content: flex-start;
    }

    .indices-hero__title {
        font-size: 42px;
        line-height: 1.04;
    }
}