.stock-info-block {
    margin: 36px 0 58px;
}

.stock-info-block__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

.stock-info-block__content {
    max-width: 980px;
}

.stock-info-block__title {
    margin: 0 0 28px;
    color: #1a1d24;
    font-size: 32px;
    line-height: 1.22;
    font-weight: 800;
}

.stock-info-block__text {
    max-width: 1220px;
    color: #4d535d;
    font-size: 17px;
    line-height: 1.75;
}

.stock-info-block__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 318px;
    min-height: 64px;
    padding: 18px 30px;
    border: 0;
    background: #272c35;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.stock-info-block__button:hover,
.stock-info-block__button:focus {
    background: #05bf55;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.stock-info-block__visual {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    background-color: #272c35;
    background-position: center;
    background-size: cover;
}

.stock-info-block__visual_empty {
    background-image: linear-gradient(135deg, #414750, #272c35);
}

.stock-info-block__shade {
    position: absolute;
    inset: 0;
    background: rgba(39, 44, 53, .42);
}

.stock-info-block__features {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 86px 180px;
    align-content: center;
    width: min(920px, calc(100% - 120px));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.stock-info-block__feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.stock-info-block__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
}

.stock-info-block__icon_has-image {
    border: 0;
    border-radius: 0;
}

.stock-info-block__icon img {
    display: block;
    max-width: 46px;
    max-height: 46px;
    object-fit: contain;
}

.stock-info-block__feature-text {
    min-width: 0;
}

@media (max-width: 1360px) {
    .stock-info-block__visual {
        min-height: 430px;
    }

    .stock-info-block__features {
        gap: 70px 120px;
        width: min(820px, calc(100% - 80px));
    }
}

@media (max-width: 991px) {
    .stock-info-block {
        margin: 30px 0 44px;
    }

    .stock-info-block__top {
        display: block;
        margin-bottom: 28px;
    }

    .stock-info-block__title {
        margin-bottom: 18px;
        font-size: 27px;
    }

    .stock-info-block__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .stock-info-block__button {
        width: 100%;
        min-height: 58px;
        margin-top: 24px;
        padding: 16px 24px;
    }

    .stock-info-block__visual {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .stock-info-block__features {
        grid-template-columns: 1fr;
        gap: 22px;
        align-content: center;
        width: calc(100% - 48px);
    }

    .stock-info-block__feature {
        justify-content: flex-start;
        font-size: 16px;
    }

    .stock-info-block__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .stock-info-block__icon img {
        max-width: 40px;
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .stock-info-block__features {
        width: calc(100% - 30px);
        gap: 18px;
    }

    .stock-info-block__feature {
        gap: 14px;
        font-size: 14px;
    }
}
