.info-block-item {
    padding: 12px 0;
    border-top: 3px solid var(--rocket-color-primary-200);
    border-bottom: 3px solid var(--rocket-color-red-100);
    display: flex;
    align-items: center;
    min-height: 115px;
    gap: 10px;

    &__text {
        font-size: 20px;
        font-weight: 700;
        flex-grow: 1;
        color: var(--rocket-color-secondary-100);
        width: 1%;

        @include breakpoint(md) {
            font-size: 30px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
    }

    &__icon {
        display: flex;
        justify-content: center;
        width: 70px;
        padding: 0 10px;

        @include breakpoint(xl) {
            width: 80px;
        }

        svg {
            @include max-size(100%);
        }
    }
}
